 /* ========== ENHANCED BOLD TOP BANNER ========== */
 /* Add this to ensure the banner doesn't break your website */
body.with-banner {
    position: relative;
}

/* Ensure website content starts below the banner */
.main-content {
    margin-top: 80px; /* Adjust based on banner height */
}
        .new-year-top-banner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: linear-gradient(90deg, 
                #1a5276 0%, 
                #2e86c1 30%,
                #e74c3c 70%,
                #C41230 100%);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            border-bottom: 3px solid #FFD700;
            animation: slideDownBold 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: visible;
        }
@media (max-width: 480px) {
    .new-year-top-banner {
        height: auto;
        min-height: 70px;
        padding: 5px 0;
    }
    
    .new-year-top-content {
        flex-direction: column;
        padding: 5px 10px;
        gap: 8px;
    }
    
    .new-year-top-message {
        order: 1;
        width: 100%;
        justify-content: center;
        padding: 5px 10px;
    }
    
    .happy-new-year-text {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3px;
        margin: 0;
    }
    
    .happy-main, .new-main, .year-main {
        font-size: 0.8rem !important;
    }
    
    .year-number {
        font-size: 0.9rem;
        margin-left: 2px;
    }
    
    .top-firework {
        display: none; /* Hide fireworks on very small screens */
    }
    
    .celebrate-badge {
        display: none; /* Hide badge on very small screens */
    }
    
    .top-countdown-container {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .top-countdown {
        padding: 5px 8px;
        gap: 3px;
    }
    
    .countdown-item {
        min-width: 30px;
    }
    
    .countdown-value {
        font-size: 1rem;
    }
    
    .countdown-unit {
        font-size: 0.6rem;
    }
    
    .top-cta-container {
        order: 3;
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .top-donate-btn {
        width: auto;
        height: auto;
        padding: 8px 15px;
        border-radius: 10px;
    }
    
    .btn-main-text {
        display: block;
        font-size: 0.8rem;
    }
    
    .top-close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* For extremely small screens (iPhone SE, Galaxy Fold) */
@media (max-width: 360px) {
    .happy-main, .new-main, .year-main {
        font-size: 0.7rem !important;
    }
    
    .countdown-value {
        font-size: 0.9rem;
    }
    
    .countdown-item {
        min-width: 25px;
    }
}
        @keyframes slideDownBold {
            0% {
                transform: translateY(-100%) scale(1.1);
                opacity: 0;
            }
            100% {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .new-year-top-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1400px;
            padding: 0 25px;
            position: relative;
            z-index: 3;
            gap: 30px;
        }

        /* ========== MESSAGE SECTION ========== */
        .new-year-top-message {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 10px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(5px);
        }

        .top-firework {
            font-size: 1.8rem;
            animation: boldFirework 1.2s infinite alternate;
            filter: drop-shadow(0 0 5px #FFD700);
        }

        @keyframes boldFirework {
            0% { 
                transform: scale(1) rotate(0deg); 
                filter: drop-shadow(0 0 5px #FFD700);
            }
            50% { 
                transform: scale(1.4) rotate(10deg); 
                filter: drop-shadow(0 0 15px #FFD700);
            }
            100% { 
                transform: scale(1.2) rotate(-5deg); 
                filter: drop-shadow(0 0 10px #FFD700);
            }
        }

        /* Happy New Year Text Styling */
        .happy-new-year-text {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 10px;
        }

        .happy-main, .new-main, .year-main {
            font-size: 1.4rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: textFloat 3s infinite ease-in-out;
        }

        .happy-main { animation-delay: 0s; color: #FFD700; }
        .new-main { animation-delay: 0.2s; color: #FF6B6B; }
        .year-main { animation-delay: 0.4s; color: #4ECDC4; }

        .year-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: #FFD700;
            margin-left: 5px;
            animation: numberGlow 2s infinite alternate;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
        }

        @keyframes textFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        @keyframes numberGlow {
            0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
            100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.9); }
        }

        .celebrate-badge {
            background: linear-gradient(45deg, #FFD700, #FF4500);
            color: #1a5276;
            font-size: 0.9rem;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
            margin-left: 10px;
            animation: badgePulse 2s infinite;
            border: 2px solid rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* ========== COUNTDOWN SECTION ========== */
        .top-countdown-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            flex-grow: 1;
            max-width: 400px;
        }

        .countdown-label {
            font-size: 0.9rem;
            color: #FFD700;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 3px;
        }

        .top-countdown {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 0, 0, 0.25);
            padding: 8px 15px;
            border-radius: 12px;
            border: 2px solid rgba(255, 215, 0, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 45px;
        }

        .countdown-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: #FFD700;
            line-height: 1;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
            animation: countdownBeat 1s infinite alternate;
        }

        @keyframes countdownBeat {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .countdown-unit {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 3px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .countdown-separator {
            color: #FFD700;
            font-weight: 900;
            font-size: 1.5rem;
            margin: 0 2px;
            animation: separatorBlink 1s infinite;
        }

        @keyframes separatorBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ========== DONATE BUTTON ========== */
        .top-cta-container {
            flex-shrink: 0;
        }

        .top-donate-btn {
            display: flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FF6B6B);
            color: #1a5276;
            border: none;
            padding: 12px 25px;
            border-radius: 15px;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            transition: all 0.3s ease;
            animation: buttonGlow 2s infinite alternate;
            border: 3px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
        }

        @keyframes buttonGlow {
            0% {
                box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4),
                            0 0 15px rgba(255, 215, 0, 0.3);
            }
            100% {
                box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6),
                            0 0 25px rgba(255, 215, 0, 0.5),
                            0 0 35px rgba(255, 215, 0, 0.4);
            }
        }

        .top-donate-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7),
                        0 0 30px rgba(255, 215, 0, 0.6);
        }

        .rocket-icon {
            position: relative;
            font-size: 1.8rem;
            animation: rocketFloat 3s infinite ease-in-out;
        }

        @keyframes rocketFloat {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-5px) rotate(5deg); }
        }

        .rocket-fire-small {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            animation: fireFlicker 0.3s infinite alternate;
            filter: drop-shadow(0 0 3px #FF4500);
        }

        @keyframes fireFlicker {
            0% { opacity: 0.7; transform: translateX(-50%) scale(0.9); }
            100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
        }

        .btn-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .btn-main-text {
            font-size: 1.1rem;
            font-weight: 900;
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

        .btn-sub-text {
            font-size: 0.75rem;
            opacity: 0.9;
            font-weight: 600;
            color: rgba(26, 82, 118, 0.9);
        }

        .sparkle {
            font-size: 1.2rem;
            animation: sparkleSpin 2s infinite;
        }

        @keyframes sparkleSpin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* ========== CLOSE BUTTON ========== */
        .top-close-btn {
            position: absolute;
            right: 15px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .top-close-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg) scale(1.1);
            border-color: #FFD700;
        }

        /* ========== CELEBRATION EFFECTS ========== */
        .celebration-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-emojis {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        /* Bubbles */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, 
                rgba(255, 255, 255, 0.8), 
                rgba(255, 255, 255, 0.2) 70%);
            animation: floatBubbleUp linear infinite;
            z-index: 1;
        }

        @keyframes floatBubbleUp {
            0% {
                transform: translateY(80px) translateX(var(--bubble-x)) scale(0.3);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-30px) translateX(var(--bubble-x)) scale(1.2);
                opacity: 0;
            }
        }

        /* Floating Emojis */
        .floating-emoji {
            position: absolute;
            font-size: 1.5rem;
            animation: floatEmoji linear infinite;
            filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
        }

        @keyframes floatEmoji {
            0% {
                transform: translateY(80px) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-50px) translateX(var(--emoji-x)) rotate(360deg);
                opacity: 0;
            }
        }

        /* ========== ROCKET LAUNCH ANIMATION ========== */
        .rocket-launch-container {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 300px;
            z-index: 10001;
            opacity: 0;
            pointer-events: none;
        }

        .rocket-launch {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            transition: all 0.1s ease;
        }

        .rocket-launch-body {
            position: relative;
            font-size: 4rem;
            animation: launchShake 0.2s infinite alternate;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
        }

        .rocket-main {
            position: relative;
            z-index: 2;
        }

        .rocket-window {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1rem;
            z-index: 3;
        }

        @keyframes launchShake {
            0% { transform: translateX(-50%) translateX(-3px); }
            100% { transform: translateX(-50%) translateX(3px); }
        }

        .rocket-fire-main {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 60px;
            z-index: 1;
        }

        .fire-particle {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, #FF4500, #FFD700, transparent);
            border-radius: 50%;
            animation: fireExplosion 0.3s infinite alternate;
            filter: blur(2px);
        }

        .fire-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .fire-particle:nth-child(2) { left: 30%; animation-delay: 0.1s; }
        .fire-particle:nth-child(3) { left: 50%; animation-delay: 0.2s; }
        .fire-particle:nth-child(4) { left: 70%; animation-delay: 0.3s; }

        @keyframes fireExplosion {
            0% { 
                transform: scale(0.8) translateY(0);
                opacity: 0.7;
            }
            100% { 
                transform: scale(1.3) translateY(10px);
                opacity: 1;
            }
        }

        .launch-trail {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 0;
            background: linear-gradient(to top, 
                #FFD700 0%,
                #FF4500 30%,
                transparent 100%);
            border-radius: 50% 50% 0 0;
            filter: blur(3px);
        }

        .launch-smoke {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 0;
            background: radial-gradient(ellipse at center,
                rgba(255, 255, 255, 0.8) 0%,
                rgba(200, 200, 200, 0.6) 30%,
                transparent 100%);
            filter: blur(5px);
        }

        /* ========== CONFETTI ========== */
        .confetti-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
        }

        .confetti-piece {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--confetti-color);
            border-radius: 50%;
            animation: confettiFall linear forwards;
            opacity: 0;
        }

        @keyframes confettiFall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .new-year-top-content {
                gap: 20px;
                padding: 0 15px;
            }
            
            .happy-main, .new-main, .year-main {
                font-size: 1.2rem;
            }
            
            .year-number {
                font-size: 1.4rem;
            }
            
            .top-donate-btn {
                padding: 10px 20px;
            }
            
            .btn-main-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 992px) {
            .new-year-top-banner {
                height: 70px;
            }
            
            .new-year-top-content {
                flex-wrap: wrap;
                justify-content: center;
                padding: 5px 15px;
                gap: 10px;
            }
            
            .new-year-top-message {
                order: 1;
                width: 100%;
                justify-content: center;
                margin-bottom: 5px;
            }
            
            .top-countdown-container {
                order: 2;
                max-width: 100%;
            }
            
            .top-cta-container {
                order: 3;
                position: absolute;
                right: 50px;
            }
            
            .top-donate-btn {
                padding: 8px 15px;
            }
            
            .btn-sub-text {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .new-year-top-banner {
                height: 65px;
            }
            
            .top-firework {
                font-size: 1.5rem;
            }
            
            .happy-main, .new-main, .year-main {
                font-size: 1rem;
            }
            
            .year-number {
                font-size: 1.2rem;
            }
            
            .celebrate-badge {
                font-size: 0.8rem;
                padding: 3px 8px;
            }
            
            .countdown-value {
                font-size: 1.5rem;
            }
            
            .countdown-item {
                min-width: 35px;
            }
            
            .top-donate-btn {
                padding: 6px 12px;
            }
            
            .btn-main-text {
                font-size: 0.9rem;
            }
            
            .rocket-icon {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .new-year-top-banner {
                height: 60px;
            }
            
            .happy-new-year-text {
                gap: 4px;
            }
            
            .happy-main, .new-main, .year-main {
                font-size: 0.9rem;
            }
            
            .year-number {
                font-size: 1rem;
                margin-left: 3px;
            }
            
            .countdown-label {
                font-size: 0.8rem;
            }
            
            .countdown-value {
                font-size: 1.3rem;
            }
            
            .top-countdown {
                padding: 6px 10px;
                gap: 5px;
            }
            
            .btn-main-text {
                display: none;
            }
            
            .top-donate-btn {
                padding: 8px;
                border-radius: 50%;
                width: 45px;
                height: 45px;
                justify-content: center;
            }
            
            .rocket-icon {
                font-size: 1.3rem;
            }
            
            .sparkle {
                display: none;
            }
        }