    /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            color: white;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }
        
        /* Container */
        .container {
            position: relative;
            width: 100vw;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }
        
        /* Background */
        .background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/maldonado.webp') no-repeat center center;
            background-size: cover;
            filter: brightness(0.3) saturate(0.7);
            z-index: -1;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,30,80,0.7), rgba(0,0,0,0.9));
            z-index: -1;
        }
        
        /* Logo */
        .williams-logo {
            width: 150px;
            height: auto;
            margin-bottom: 20px;
            opacity: 0;
        }
        
        /* Typography */
        .title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 10px;
            text-align: center;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            opacity: 0;
        }
        
        .subtitle {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 40px;
            text-align: center;
            color: #00a0e4;
            opacity: 0;
        }
        
        /* Timer */
        .timer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 600px;
            margin-top: 20px;
            opacity: 0;
        }
        
        .timer {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
            width: 100%;
        }
        
        .time-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 80px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px 10px;
            border-radius: 12px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #fff;
        }
        
        .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaa;
        }
        
        /* Win details card */
        .win-details {
            text-align: center;
            margin-top: 20px;
            padding: 20px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0;
        }
        
        .win-details p {
            margin-bottom: 10px;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .win-details strong {
            color: #00a0e4;
        }
        
        /* Footer */
        .footer {
            position: absolute;
            bottom: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            opacity: 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .title {
                font-size: 1.6rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .time-unit {
                min-width: 70px;
                padding: 10px 8px;
            }
            
            .number {
                font-size: 2rem;
            }
            
            .win-details {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .timer {
                gap: 8px;
            }
            
            .time-unit {
                min-width: 60px;
                padding: 8px 5px;
            }
            
            .number {
                font-size: 1.6rem;
            }
            
            .label {
                font-size: 0.7rem;
            }
            
            .win-details p {
                font-size: 0.9rem;
            }
        }