﻿   /* Core animations only */
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes modalSlideUp {
            0% {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }

            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes float-particle {

            0%,
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0.25;
            }

            33% {
                transform: translateY(-40px) translateX(15px);
                opacity: 0.7;
            }

            66% {
                transform: translateY(-80px) translateX(-10px);
                opacity: 0.45;
            }
        }

        @keyframes sparkle {

            0%,
            100% {
                opacity: 0;
                transform: scale(0.4) rotate(0deg);
            }

            50% {
                opacity: 1;
                transform: scale(1.2) rotate(180deg);
            }
        }

        @keyframes firework-burst {
            0% {
                opacity: 0;
                transform: scale(0);
            }

            12% {
                opacity: 0.9;
                transform: scale(1);
            }

            100% {
                opacity: 0;
                transform: scale(2.5);
            }
        }

        @keyframes sweep {
            0% {
                transform: translate(-100%) translateY(-100%);
            }

            100% {
                transform: translate(200%) translateY(200%);
            }
        }

        @keyframes float-gentle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-9px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes modalScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes shimmer-sweep {
            0% {
                transform: translateX(-100%) skewX(-15deg);
            }

            100% {
                transform: translateX(300%) skewX(-15deg);
            }
        }

        /* Utility classes */
        .animate-fade-up {
            animation: fadeUp 0.8s ease-out forwards;
        }

        .animate-float-particle {
            animation: float-particle 7s ease-in-out infinite;
        }

        .animate-sparkle {
            animation: sparkle 2.5s ease-in-out infinite;
        }

        .animate-firework-burst {
            animation: firework-burst 3.2s ease-out infinite;
        }

        .animate-firework-burst-delayed {
            animation: firework-burst 3.2s ease-out 1.6s infinite;
        }

        .animate-firework-burst-delayed2 {
            animation: firework-burst 3.2s ease-out 2.8s infinite;
        }

        .animate-sweep {
            animation: sweep 4s ease-in-out 2s infinite;
        }

        .animate-float-gentle {
            animation: float-gentle 4.5s ease-in-out infinite;
        }

        .animate-shimmer-sweep {
            animation: shimmer-sweep 2.4s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Gradient text */
        .gradient-gold-text {
            background: linear-gradient(135deg, #ffd700 0%, #d4af37 30%, #fff8dc 55%, #d4af37 75%, #ffd700 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Background gradients */
        .hero-gradient {
            background: radial-gradient(transparent 20%, rgba(0, 0, 0, 0.55) 80%, rgba(0, 0, 0, 0.85) 100%);
        }

        .countdown-box {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(0, 20, 18, 0.6) 100%);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(0, 122, 112, 0.35);
        }

        /* Modal design (reused from scanner modal) */
        .modal-bg {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 20, 20, 0.85) 100%);
            border: 1px solid rgba(0, 122, 112, 0.25);
            box-shadow: rgba(0, 0, 0, 0.7) 0px 32px 80px, rgba(0, 122, 112, 0.145) 0px 0px 60px, rgba(255, 255, 255, 0.1) 0px 1px 0px inset;
            backdrop-filter: blur(24px);
            animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .modal-header-line {
            background: linear-gradient(90deg, transparent 0%, rgb(0, 122, 112) 50%, transparent 100%);
        }

        .modal-icon-bg {
            background: linear-gradient(135deg, rgba(0, 122, 112, 0.19), rgba(0, 122, 112, 0.063));
            border: 1px solid rgba(0, 122, 112, 0.314);
            box-shadow: rgba(0, 122, 112, 0.19) 0px 0px 30px;
        }

        /* Section backgrounds - subtle variations */
        .section-bg-1 {
            background: radial-gradient(circle at 0% 0%, rgba(241, 185, 35, 0.03) 0%, transparent 50%);
        }

        .section-bg-2 {
            background: radial-gradient(circle at 100% 100%, rgba(0, 122, 112, 0.03) 0%, transparent 50%);
        }

        .section-bg-3 {
            background: radial-gradient(circle at 50% 50%, rgba(241, 185, 35, 0.02) 0%, transparent 70%);
        }

        /* Swiper */
        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            opacity: 1;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet-active {
            width: 24px;
            border-radius: 4px;
            background: #00C9B8;
        }

        /* Base styles */
        section {
            padding: 48px 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #020810;
            color: white;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Marquee */
        .marquee {
            position: relative;
            overflow: hidden;
            padding: 1rem 0;
            background: #F1B923;
            color: #141414;
            width: 100%;
            font-weight: 500;
        }

        .marquee-content {
            display: flex;
            gap: 2rem;
            animation: marquee 20s linear infinite;
            white-space: nowrap;
        }

        /* Timeline items */
        .timeline-item {
            transition: all 0.3s ease;
        }

        /* Venobox custom styling */
        .vbox-overlay {
            background: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(16px) !important;
        }

        .vbox-title {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 20, 20, 0.85) 100%) !important;
            color: white !important;
            font-family: 'Space Grotesk', sans-serif !important;
            border-top: 1px solid rgba(0, 122, 112, 0.25) !important;
        }

        .vbox-next,
        .vbox-prev,
        .vbox-close {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(0, 122, 112, 0.25) !important;
            color: white !important;
        }

        .vbox-next:hover,
        .vbox-prev:hover,
        .vbox-close:hover {
            background: rgba(0, 122, 112, 0.2) !important;
            border-color: rgba(0, 122, 112, 0.5) !important;
        }



        
 /* Mobile menu animation */
        #mobileMenu {
            transition: all 0.3s ease-in-out;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            display: block !important;
            /* Override hidden class */
        }

        #mobileMenu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Mobile link hover effect */
        .mobile-link {
            position: relative;
            overflow: hidden;
        }

        .mobile-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #F1B923, transparent);
            transition: width 0.3s ease;
        }

        .mobile-link:hover::after {
            width: 80%;
        }

        /* Header scroll effect */
        .header-scrolled {
            padding-top: 8px !important;
            padding-bottom: 8px !important;
            background: rgba(2, 8, 16, 0.95) !important;
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }


        /* For extra small screens */
    @media (min-width: 375px) {
        .xs\:block {
            display: block;
        }
        .xs\:flex {
            display: flex;
        }
    }
    
    /* Mobile menu animation */
    #mobileMenu {
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        display: block !important;
    }
    
    #mobileMenu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .header-scrolled {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        background: rgba(2, 8, 16, 0.95) !important;
    }
    
    body.menu-open {
        overflow: hidden;
    }


    /* Custom Volume Slider Styling */
#volumeSlider {
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #F1B923 0%, #F1B923 50%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.3) 100%);
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F1B923;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 0 5px rgba(241, 185, 35, 0.5);
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #FFD700;
}

#volumeSlider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F1B923;
    cursor: pointer;
    border: none;
}

/* Optional: Gradient background for volume slider */
#volumeSlider {
    background: linear-gradient(to right, #F1B923 0%, #F1B923 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 100%);
}