        :root {
            --midnight: #060d1a;
            --evergreen: #042114;
            --gold: #c5a059;
            --snow: #f1f5f9;
            --crimson: #5c1414;
        }

        body {
            background-color: var(--midnight);
            color: var(--snow);
            font-family: 'Cormorant Garamond', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-script { font-family: 'Birthstone Bounce', cursive; }
        .font-sans { font-family: 'Montserrat', sans-serif; }
        .font-display { font-family: 'Playfair Display', serif; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--midnight); }
        ::-webkit-scrollbar-thumb { background: var(--gold); }

        #snow-canvas {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
        }

        .glass {
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .btn-festive {
            padding: 16px 32px;
            border: 1px solid var(--gold);
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--gold);
            background: transparent;
            transition: all 0.5s ease;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }
        .btn-festive:hover {
            background: var(--gold);
            color: var(--midnight);
            box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
        }

        .hero-gradient {
            background: linear-gradient(to bottom, transparent, var(--midnight));
        }

        .nav-link {
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            font-family: 'Montserrat', sans-serif;
            transition: color 0.3s;
        }

        .search-input::placeholder { color: rgba(197, 160, 89, 0.4); }
        /* Color definitions */
        :root {
            --gold: #D4AF37;
            --silver: #C0C0C0;
            --red: #B91C1C;
            --green: #065F46;
            --evergreen: #064E3B;
        }
        
        .text-gold { color: var(--gold); }
        .text-silver { color: var(--silver); }
        .text-red { color: var(--red); }
        .text-green { color: var(--green); }
        .bg-evergreen { background-color: var(--evergreen); }
        
        /* Base animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Christmas-specific animations */
        @keyframes snowfall {
            0% {
                transform: translateY(-100px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        @keyframes float-slow {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }
        
        @keyframes float-slower {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(-5deg);
            }
        }
        
        @keyframes slow-zoom {
            0% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1.1);
            }
        }
        
        @keyframes scroll-pulse {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100%);
            }
        }
        
        @keyframes text-glow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
            }
        }
        
        @keyframes pulse-slow {
            0%, 100% {
                opacity: 0.4;
            }
            50% {
                opacity: 1;
            }
        }
        
        @keyframes pulse-border {
            0%, 100% {
                border-color: rgba(212, 175, 55, 0.2);
            }
            50% {
                border-color: rgba(212, 175, 55, 0.4);
            }
        }
        
        @keyframes countdown-card {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes ornament-card {
            from {
                opacity: 0;
                transform: translateY(40px) rotateX(-10deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }
        
        @keyframes stagger-cards {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Animation classes */
        .animate-snowfall {
            animation: snowfall 10s linear infinite;
        }
        
        .animate-float-slow {
            animation: float-slow 4s ease-in-out infinite;
        }
        
        .animate-float-slower {
            animation: float-slower 6s ease-in-out infinite;
        }
        
        .animate-slow-zoom {
            animation: slow-zoom 20s ease-in-out infinite alternate;
        }
        
        .animate-scroll-pulse {
            animation: scroll-pulse 2s ease-in-out infinite;
        }
        
        .animate-text-glow {
            animation: text-glow 3s ease-in-out infinite;
        }
        
        .animate-pulse-slow {
            animation: pulse-slow 3s ease-in-out infinite;
        }
        
        .animate-pulse-border {
            animation: pulse-border 2s ease-in-out infinite;
        }
        
        .animate-fadeInUp { animation: fadeInUp 1s ease forwards; }
        .animate-slideUp { animation: slideUp 1s ease forwards; }
        .animate-slideDown { animation: slideDown 1s ease forwards; }
        .animate-slideInLeft { animation: slideInLeft 1s ease forwards; }
        .animate-slideInRight { animation: slideInRight 1s ease forwards; }
        .animate-fadeIn { animation: fadeIn 1s ease forwards; }
        
        .animate-countdown-card {
            animation: countdown-card 1s ease-out forwards;
        }
        
        .animate-ornament-card {
            animation: ornament-card 1s ease-out forwards;
        }
        
        .animate-stagger-cards {
            animation: stagger-cards 1s ease forwards;
        }
        
        .animate-stagger-card {
            animation: fadeInUp 1s ease forwards;
        }
        
        /* Component styles */
        .snowflake {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: white;
            border-radius: 50%;
            opacity: 0.6;
            filter: blur(0.5px);
        }
        
        .ornament {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            position: relative;
        }
        
        .ornament.gold {
            background: radial-gradient(circle at 30% 30%, var(--gold), #B8860B);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        
        .ornament.silver {
            background: radial-gradient(circle at 30% 30%, var(--silver), #808080);
            box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
        }
        
        .ornament.red {
            background: radial-gradient(circle at 30% 30%, var(--red), #7F1D1D);
            box-shadow: 0 0 20px rgba(185, 28, 28, 0.3);
        }
        
        .ornament.large {
            box-shadow: 0 0 40px currentColor;
        }
        
        .ornament::after {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: currentColor;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }
        
        .hero-gradient {
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
        }
        
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        
        .btn-festive {
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 16px 32px;
            font-size: 12px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-festive:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        
        .nav-link {
            font-family: system-ui, sans-serif;
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .font-script {
            font-family: 'Brush Script MT', cursive;
        }
        
        .font-display {
            font-family: 'Playfair Display', serif;
        }
        
        .font-serif {
            font-family: 'Georgia', serif;
        }
        
        .font-sans {
            font-family: system-ui, sans-serif;
        }
        
        .float-anim {
            animation: float-slow 6s ease-in-out infinite;
        }
        @keyframes century-progress {
        0% {
            width: 0;
        }
        100% {
            width: 100%;
        }
    }
    
    @keyframes unboxing-flow {
        0% {
            left: -100%;
        }
        100% {
            left: 100%;
        }
    }
    
    .animate-century-progress {
        animation: century-progress 4s ease-out forwards;
    }
    
    .animate-unboxing-flow {
        animation: unboxing-flow 8s linear infinite;
        position: absolute;
    }
    
    /* Existing animations from previous pages */
    .animate-width-grow {
        animation: width-grow 2s ease-out forwards;
    }
    
    .animate-width-grow-fast {
        animation: width-grow 1s ease-out forwards;
    }
    
    .animate-width-grow-slow {
        animation: width-grow 3s ease-out forwards;
    }
    
    .animate-count {
        animation: fadeInUp 1s ease forwards;
    }
