* {
            font-family: 'Geist', sans-serif;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Instrument Sans', sans-serif;
        }

        :root {
            --primary-red: #D71F35;
            --primary-dark: #010101;
            --accent-light: #F5F5F5;
            --accent-blue: #1A5F7A;
            --gold: #C4A260;
            --snow: #F8FBFD;
        }

        .bg-primary-red { background-color: var(--primary-red); }
        .bg-primary-dark { background-color: var(--primary-dark); }
        .text-primary-red { color: var(--primary-red); }
        .text-accent-blue { color: var(--accent-blue); }
        .text-gold { color: var(--gold); }

        /* Winter snowflake animation */
        @keyframes snowfall {
            0% {
                transform: translateY(-10vh) translateX(0);
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) translateX(100px);
                opacity: 0;
            }
        }

        .snowflake {
            position: fixed;
            top: -10vh;
            color: #FFFFFF !important;
            font-size: 2rem;
            font-weight: 300;
            text-shadow: none;
            filter: none;
            animation: snowfall linear infinite;
            pointer-events: none;
            z-index: 9999;
            -webkit-text-fill-color: #FFFFFF !important;
        }

        .gradient-overlay {
            background: linear-gradient(135deg, rgba(215, 31, 53, 0.1) 0%, rgba(26, 95, 122, 0.05) 100%);
        }

        .hero-text {
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .event-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(215, 31, 53, 0.1);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-red);
            box-shadow: 0 20px 40px rgba(215, 31, 53, 0.15);
        }

        .event-badge {
            background: var(--primary-red);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
        }

        .time-display {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        button {
            transition: all 0.3s ease;
        }

        button:hover {
            transform: scale(1.05);
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .winter-border {
            border-top: 3px solid var(--primary-red);
        }

        section {
            position: relative;
            z-index: 2;
        }