/* Notification Banner Styles */
.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    z-index: 10001;
    padding: 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 1;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.notification-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.notification-banner-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.notification-banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -0.01em;
    margin: 0 auto;
}

.notification-banner-text i {
    font-size: 16px;
    color: #ffffff;
    flex-shrink: 0;
}

.notification-banner-text strong {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
    letter-spacing: 0.5px;
}

.notification-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    right: 64px;
}

.notification-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.notification-banner-close i {
    font-size: 14px;
}

/* Adjust navbar when banner is visible */
body:not(.banner-hidden) .navbar {
    top: 40px;
}

body.banner-hidden .navbar {
    top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .notification-banner-content {
        padding: 0 40px;
    }

    .notification-banner-close {
        right: 40px;
    }

    .notification-banner-text {
        font-size: 13px;
    }

    body:not(.banner-hidden) .navbar {
        top: 40px;
    }
}

@media (max-width: 768px) {
    .notification-banner {
        padding: 8px 0;
    }

    .notification-banner-content {
        padding: 0 20px;
    }

    .notification-banner-close {
        right: 20px;
        width: 24px;
        height: 24px;
    }

    .notification-banner-close i {
        font-size: 12px;
    }

    .notification-banner-text {
        font-size: 12px;
        gap: 8px;
        text-align: center;
        padding-right: 30px;
    }

    .notification-banner-text i {
        font-size: 14px;
    }

    .notification-banner-text strong {
        padding: 2px 6px;
        font-size: 11px;
    }

    body:not(.banner-hidden) .navbar {
        top: 36px;
    }
}

@media (max-width: 480px) {
    .notification-banner {
        padding: 6px 0;
    }

    .notification-banner-content {
        padding: 0 16px;
    }

    .notification-banner-close {
        right: 16px;
        width: 22px;
        height: 22px;
    }

    .notification-banner-close i {
        font-size: 10px;
    }

    .notification-banner-text {
        font-size: 11px;
        gap: 6px;
        text-align: center;
        padding-right: 28px;
    }

    .notification-banner-text i {
        font-size: 12px;
    }

    .notification-banner-text strong {
        padding: 1px 4px;
        font-size: 10px;
    }

    body:not(.banner-hidden) .navbar {
        top: 32px;
    }
}