@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&family=Inter+Tight:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --christmas-red: #C41E3A;
            --christmas-green: #165B33;
            --gold: #FFD700;
            --light-gold: #FFF8DC;
            --dark-red: #8B0000;
        }
        
        body {
            font-family: 'Inter Tight', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #1a4d2e 0%, #8B0000 100%);
        }
        
        /* Animated Background */
        .snowflakes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .snowflake {
            position: absolute;
            top: -10px;
            color: white;
            font-size: 1em;
            animation: fall linear infinite;
            opacity: 0.8;
        }
        
        @keyframes fall {
            to {
                transform: translateY(100vh);
            }
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%238B0000" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 20px;
            z-index: 2;
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
        }
        
        .logo-title {
            font-family: 'Mountains of Christmas', cursive;
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            margin-bottom: 20px;
            animation: glow 2s ease-in-out infinite;
        }
        
        @keyframes glow {
            0%, 100% { text-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold), 3px 3px 6px rgba(0,0,0,0.8); }
            50% { text-shadow: 0 0 30px var(--gold), 0 0 40px var(--gold), 3px 3px 6px rgba(0,0,0,0.8); }
        }
        
        .subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .btn-christmas {
            background: linear-gradient(45deg, var(--christmas-red), var(--dark-red));
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .btn-christmas:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,215,0,0.4);
            color: white;
        }
        
        .btn-gold {
            background: linear-gradient(45deg, var(--gold), #FFA500);
            color: var(--dark-red);
        }
        
        /* Info Cards */
        .info-section {
            position: relative;
            z-index: 2;
            padding: 80px 20px;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.2));
        }
        
        .info-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
        }
        
        .info-card i {
            font-size: 3rem;
            color: var(--christmas-red);
            margin-bottom: 20px;
        }
        
        .info-card h3 {
            color: var(--christmas-green);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Timeline */
        .timeline-section {
            position: relative;
            z-index: 2;
            padding: 80px 20px;
            background: rgba(255,255,255,0.05);
        }
        
        .timeline-item {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 5px solid var(--gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .timeline-date {
            color: var(--christmas-red);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        /* Upload Section */
        .upload-section {
            position: relative;
            z-index: 2;
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--christmas-red) 0%, var(--dark-red) 100%);
            color: white;
        }
        
        .upload-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid var(--gold);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .upload-area {
            border: 3px dashed var(--gold);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            position: relative;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .upload-area:hover {
            background: rgba(255,255,255,0.2);
            border-color: white;
        }
        
        .upload-area i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .upload-area h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--gold);
        }
        
        .upload-area p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .upload-preview {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            z-index: 1;
        }
        
        .upload-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 10px;
        }
        
        .preview-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        
        .preview-btn {
            padding: 8px 20px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .preview-btn-change {
            background: var(--gold);
            color: var(--dark-red);
        }
        
        .preview-btn-remove {
            background: var(--christmas-red);
            color: white;
        }
        
        .preview-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        /* Contestants Section */
        .contestants-section {
            position: relative;
            z-index: 2;
            padding: 80px 0;
            background: rgba(255,255,255,0.98);
            overflow: hidden;
        }
        
        .contestants-scroll-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
            margin: 0 -15px;
        }
        
        .contestants-scroll {
            display: flex;
            gap: 30px;
            animation: scroll 30s linear infinite;
            width: max-content;
        }
        
        .contestants-scroll:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .contestant-card {
            flex: 0 0 300px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            border: 3px solid var(--gold);
        }
        
        .contestant-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(196,30,58,0.3);
        }
        
        .contestant-image {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
        }
        
        .contestant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .contestant-card:hover .contestant-image img {
            transform: scale(1.1);
        }
        
        .contestant-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 15px;
        }
        
        .vote-count {
            background: rgba(255,255,255,0.95);
            color: var(--christmas-red);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.3);
        }
        
        .vote-count i {
            color: var(--christmas-red);
            animation: heartbeat 1.5s ease-in-out infinite;
        }
        
        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.2); }
        }
        
        .contestant-info {
            padding: 20px;
            text-align: center;
        }
        
        .contestant-info h4 {
            color: var(--christmas-green);
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .contestant-info p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .btn-vote {
            background: linear-gradient(45deg, var(--christmas-red), var(--dark-red));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 5px 15px rgba(196,30,58,0.3);
        }
        
        .btn-vote:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(196,30,58,0.5);
            background: linear-gradient(45deg, var(--dark-red), var(--christmas-red));
        }
        
        .btn-view-all {
            background: linear-gradient(45deg, var(--gold), #FFA500);
            color: var(--dark-red);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255,215,0,0.4);
            border: 3px solid var(--dark-red);
        }
        
        .btn-view-all:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255,215,0,0.6);
        }
        
        /* Games Section */
        .games-section {
            position: relative;
            z-index: 2;
            padding: 80px 20px;
            background: rgba(255,255,255,0.95);
        }
        
        .game-card {
            background: linear-gradient(135deg, var(--christmas-green), #0d4025);
            color: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
        }
        
        .game-card i {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        /* Footer */
        .footer {
            position: relative;
            z-index: 2;
            background: var(--dark-red);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .social-links a {
            color: white;
            font-size: 2rem;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--gold);
        }
        
        /* Countdown Timer */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 20px;
            min-width: 100px;
            border: 2px solid var(--gold);
        }
        
        .countdown-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-christmas {
                width: 100%;
                max-width: 300px;
            }
            
            .preview-actions {
                flex-direction: column;
            }
        }
/* Error Message Styling */
.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: -8px;
    margin-bottom: 10px;
    display: none;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-valid {
    border-color: #28a745 !important;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Toastify-like notifications (optional) */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}        