/* ===================================
   PRESS YOUR LUCK - WEDDING LEAD CAPTURE
   Touch-optimized for tablet (landscape)
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Custom Colors (can be overridden by JavaScript from admin settings) */
    --primary-color: #FFD700;     /* Gold - buttons, highlights */
    --secondary-color: #FF0080;   /* Pink - titles, gradients */
    --accent-color: #FF00FF;      /* Purple - gradient accents */
    
    /* Luxury Wedding Color Palette */
    --primary: #C9A96E;          /* Champagne gold */
    --primary-dark: #A88B5C;
    --primary-light: #E5D4B5;
    --secondary: #FAF8F5;        /* Soft ivory */
    --accent: #D4A896;           /* Rose gold */
    --accent-light: #E8C4B6;
    --dark: #2A2520;             /* Rich espresso */
    --dark-soft: #4A4540;
    --light: #FFFFFF;
    --success: #8AAE92;          /* Sage green */
    --shadow-soft: rgba(42, 37, 32, 0.08);
    --shadow-medium: rgba(42, 37, 32, 0.12);
    --shadow-strong: rgba(42, 37, 32, 0.18);
    
    /* Elegant Typography */
    --font-main: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-elegant: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    
    /* Timing */
    --transition-speed: 0.4s;
    --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
}

body {
    font-family: var(--font-main);
    /* Gameshow Stage Lighting - Dramatic spotlight gradient */
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(255, 223, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 100, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 150, 255, 0.08) 0%, transparent 40%),
        linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    color: var(--dark);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    touch-action: manipulation;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   ADMIN ACCESS COG (Hidden)
   =================================== */

.admin-cog-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
}

.admin-cog-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 215, 0, 0.8);
    opacity: 1;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.admin-cog-btn:active {
    transform: rotate(90deg) scale(0.95);
}

/* ===================================
   SCREEN MANAGEMENT
   =================================== */

.screen {
    display: none;
    opacity: 0;
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity var(--transition-speed) var(--transition-smooth);
}

.screen.active {
    display: flex;
    opacity: 1;
    animation: fadeInLuxury 0.6s var(--transition-smooth);
}

@keyframes fadeInLuxury {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===================================
   SCREEN 1: LEAD CAPTURE
   =================================== */

.logo-area {
    margin-bottom: 30px;
    text-align: center;
}

.brand-title {
    font-size: 2.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    font-family: var(--font-main);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
}

.form-card {
    background: rgba(20, 20, 40, 0.85);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    border-radius: 28px;
    box-shadow: 
        0 0 0 1px rgba(255, 215, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 20px 60px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    max-height: none;
    overflow-y: visible;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.headline {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.form-group {
    margin-bottom: 18px;
}

.admin-panel .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.admin-panel .form-group input,
.admin-panel .form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    transition: all 0.3s var(--transition-smooth);
    font-family: var(--font-main);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-panel .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.admin-panel .form-group input:focus,
.admin-panel .form-group select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 16px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 22px;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    transition: all 0.3s var(--transition-smooth);
    font-family: var(--font-main);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 4px 16px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Calendar icon color for date input */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.5);
    cursor: pointer;
    opacity: 1;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: invert(1) brightness(2);
}

/* ===================================
   BUTTONS
   =================================== */

.cta-button {
    width: 100%;
    padding: 24px 32px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-smooth);
    box-shadow: 
        0 0 0 1px rgba(255, 215, 0, 0.5),
        0 8px 24px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 20px;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 0 1px rgba(255, 215, 0, 0.7),
        0 12px 32px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    filter: brightness(1.1);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(201, 169, 110, 0.25),
        0 6px 20px rgba(201, 169, 110, 0.15);
}

.pulse {
    animation: luxuryPulse 3s ease-in-out infinite;
}

@keyframes luxuryPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 0 1px rgba(255, 215, 0, 0.5),
            0 8px 24px rgba(255, 215, 0, 0.4),
            0 0 40px rgba(255, 215, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 0 0 1px rgba(255, 215, 0, 0.7),
            0 12px 32px rgba(255, 215, 0, 0.5),
            0 0 60px rgba(255, 215, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

/* ===================================
   SCREEN 2: GAME SCREEN
   =================================== */

.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    position: relative;
}

/* Gameshow Spotlight Animation */
.game-area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 223, 0, 0.15) 0%,
        rgba(255, 193, 7, 0.1) 20%,
        transparent 50%
    );
    transform: translateX(-50%);
    animation: spotlightPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.prize-display {
    min-height: 120px;
    width: 100%;
    max-width: 650px;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 24px;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.prize-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: prizeShine 3s linear infinite;
}

@keyframes prizeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.prize-display.hidden {
    opacity: 0;
    transform: scale(0.95);
    min-height: 0;
    padding: 0;
    border: none;
}

.prize-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.3px;
    animation: prizeRevealLuxury 0.7s var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5));
    position: relative;
    z-index: 1;
}

@keyframes prizeRevealLuxury {
    0% { 
        opacity: 0; 
        transform: scale(0.9) translateY(10px);
    }
    60% {
        transform: scale(1.02) translateY(-2px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0);
    }
}

/* ===================================
   ARCADE GAMESHOW BUTTON - 3D PHYSICAL DESIGN
   TV buzzer / arcade button with realistic depth
   =================================== */

.game-button {
    /* Size & Shape - Large physical button */
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: none;
    
    /* 
    MAIN BUTTON FACE - Glossy RED gameshow buzzer
    Radial gradient creates spherical appearance
    */
    background: 
        radial-gradient(
            circle at 30% 30%, 
            #FF6B6B 0%,           /* Bright red highlight spot */
            #FF5252 15%,          /* Light red */
            #F44336 40%,          /* Rich red */
            #E53935 70%,          /* Deep red */
            #C62828 100%          /* Dark red edge (shadow) */
        );
    
    /*
    MULTI-LAYER BOX-SHADOW creates 3D arcade button effect:
    1. Outer bezel ring (thick chrome-like border)
    2. Button elevation shadow (makes it raised)
    3. Base shadow (contact with surface)
    4. Power glow (energized state)
    5. Inner bevel (dimensional rim)
    */
    box-shadow: 
        /* Layer 1: Chrome bezel ring - outer */
        0 0 0 12px #E8E8E8,
        0 0 0 14px #B0B0B0,
        /* Layer 2: Bezel depth */
        0 0 0 18px #D0D0D0,
        0 0 0 20px #909090,
        /* Layer 3: Button raised shadow */
        0 18px 30px rgba(0, 0, 0, 0.4),
        /* Layer 4: Ground contact shadow */
        0 30px 60px rgba(0, 0, 0, 0.3),
        /* Layer 5: RED Power glow */
        0 0 60px rgba(244, 67, 54, 0.5),
        /* Layer 6: Inner bevel highlight */
        inset 0 -8px 12px rgba(0, 0, 0, 0.3),
        /* Layer 7: Top highlight */
        inset 0 4px 8px rgba(255, 255, 255, 0.4);
    
    /* Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: visible;
    
    /* Interaction */
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    
    /* 
    Transform origin set to bottom for realistic press-down motion
    Button compresses downward, not inward
    */
    transform-origin: center center;
    transition: 
        transform 0.15s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.15s ease-out;
}

/*
SPECULAR HIGHLIGHT - Glossy reflection at top of dome
Creates realistic plastic/glass button appearance
*/
.game-button::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 35%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    animation: highlightShift 3s ease-in-out infinite;
}

/*
ROTATING POWER GLOW - Energized arcade aesthetic
Simulates rotating LED ring around button
*/
.game-button::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: 
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(244, 67, 54, 0.6) 60deg,
            rgba(255, 82, 82, 0.8) 90deg,
            rgba(244, 67, 54, 0.6) 120deg,
            transparent 180deg,
            transparent 360deg
        );
    opacity: 0.7;
    animation: rotatePowerRing 4s linear infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
}

/* 
HOVER STATE - Button "charges up"
Glow intensifies, slight lift
*/
.game-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 12px #E8E8E8,
        0 0 0 14px #B0B0B0,
        0 0 0 18px #D0D0D0,
        0 0 0 20px #909090,
        /* Increased elevation shadow */
        0 22px 40px rgba(0, 0, 0, 0.45),
        0 36px 70px rgba(0, 0, 0, 0.35),
        /* Intensified RED glow */
        0 0 80px rgba(244, 67, 54, 0.7),
        0 0 120px rgba(255, 82, 82, 0.4),
        inset 0 -8px 12px rgba(0, 0, 0, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.5);
}

/*
ACTIVE STATE - BUTTON PRESS
Physical compression effect:
- Moves down (reduced elevation)
- Shadows shorten (closer to surface)
- Inset shadow deepens (pressed in)
- Outer glow flashes
*/
.game-button:active {
    transform: translateY(8px);
    box-shadow: 
        /* Bezel stays in place */
        0 0 0 12px #E8E8E8,
        0 0 0 14px #B0B0B0,
        0 0 0 18px #D0D0D0,
        0 0 0 20px #909090,
        /* Shortened shadows (button compressed down) */
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.35),
        /* RED Flash glow on press */
        0 0 100px rgba(255, 82, 82, 0.9),
        /* Deeper inset (pressed appearance) */
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        inset 0 6px 12px rgba(0, 0, 0, 0.35);
    animation: pressFlash 0.3s ease-out;
}

/*
IDLE POWER PULSE - "Ready to press" state
Slow breathing glow effect
*/
.game-button.glow {
    animation: arcadePowerPulse 2.5s ease-in-out infinite;
}

/* DISABLED STATE - Powered down */
.game-button.disabled {
    background: 
        radial-gradient(
            circle at 30% 30%, 
            #9E9E9E 0%,
            #757575 40%,
            #616161 70%,
            #424242 100%
        );
    box-shadow: 
        0 0 0 12px #B0B0B0,
        0 0 0 14px #808080,
        0 0 0 18px #A0A0A0,
        0 0 0 20px #707070,
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    animation: none;
    pointer-events: none;
    opacity: 0.6;
}

/* ===================================
   BUTTON CONTENT STYLING
   =================================== */

.button-icon {
    font-size: 4.5rem;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

.button-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        /* Sharp contrast outline */
        0 2px 4px rgba(42, 37, 32, 0.4),
        /* Soft glow */
        0 0 20px rgba(255, 255, 255, 0.3),
        /* Depth */
        0 4px 12px rgba(42, 37, 32, 0.2);
    line-height: 1.2;
    text-align: center;
}

/* ===================================
   LUXURY ANIMATIONS
   Smooth, premium, attention-commanding
   =================================== */

/* Breathing Glow - Slow, mesmerizing pulse */
@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(212, 168, 150, 0.4),
            0 20px 60px rgba(201, 169, 110, 0.35),
            0 40px 100px rgba(42, 37, 32, 0.15),
            inset 0 2px 4px rgba(255, 255, 255, 0.6),
            inset 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(212, 168, 150, 0.6),
            0 24px 70px rgba(201, 169, 110, 0.45),
            0 44px 110px rgba(42, 37, 32, 0.2),
            inset 0 3px 6px rgba(255, 255, 255, 0.7),
            inset 0 -3px 10px rgba(0, 0, 0, 0.12);
    }
}

/* Gentle Bob - Subtle vertical float */
@keyframes gentleBob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Shimmer Sweep - Periodic luxury shine */
@keyframes luxuryShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
        opacity: 0;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
        opacity: 0;
    }
}

/* Glow Pulse - Outer halo breathing */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Icon Float - Gentle sparkle movement */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-4px) rotate(-5deg);
    }
    66% {
        transform: translateY(-2px) rotate(5deg);
    }
}

/* Press Ripple - Touch feedback effect */
@keyframes pressRipple {
    0% {
        box-shadow: 
            0 0 0 0 rgba(212, 168, 150, 0.6),
            0 12px 40px rgba(201, 169, 110, 0.35),
            0 24px 60px rgba(42, 37, 32, 0.15),
            inset 0 3px 8px rgba(0, 0, 0, 0.2),
            inset 0 -1px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 0 0 30px rgba(212, 168, 150, 0),
            0 12px 40px rgba(201, 169, 110, 0.35),
            0 24px 60px rgba(42, 37, 32, 0.15),
            inset 0 3px 8px rgba(0, 0, 0, 0.2),
            inset 0 -1px 4px rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 
            0 0 0 40px rgba(212, 168, 150, 0),
            0 12px 40px rgba(201, 169, 110, 0.35),
            0 24px 60px rgba(42, 37, 32, 0.15),
            inset 0 3px 8px rgba(0, 0, 0, 0.2),
            inset 0 -1px 4px rgba(255, 255, 255, 0.4);
    }
}

/* ===================================
   BUTTON CONTENT STYLING
   High-contrast text with shadow for depth
   =================================== */

.button-icon {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: iconPulse 2.5s ease-in-out infinite;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.button-text {
    font-size: 1.55rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: center;
    max-width: 85%;
    /*
    Multiple text shadows create depth and ensure readability:
    - Dark outline for contrast
    - Glow for visibility
    - Embossed effect for 3D appearance
    */
    text-shadow: 
        /* Dark outline */
        0 3px 6px rgba(0, 0, 0, 0.7),
        0 1px 2px rgba(0, 0, 0, 0.9),
        /* Glow */
        0 0 20px rgba(255, 255, 255, 0.5),
        /* Emboss effect */
        0 -1px 0 rgba(0, 0, 0, 0.6),
        0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ===================================
   ARCADE BUTTON ANIMATIONS
   Physical, energetic gameshow effects
   =================================== */

/*
ARCADE POWER PULSE - Idle "ready" state
Slow pulsing glow suggests power/energy
*/
@keyframes arcadePowerPulse {
    0%, 100% {
        box-shadow: 
            0 0 0 12px #E8E8E8,
            0 0 0 14px #B0B0B0,
            0 0 0 18px #D0D0D0,
            0 0 0 20px #909090,
            0 18px 30px rgba(0, 0, 0, 0.4),
            0 30px 60px rgba(0, 0, 0, 0.3),
            0 0 60px rgba(244, 67, 54, 0.5),
            inset 0 -8px 12px rgba(0, 0, 0, 0.3),
            inset 0 4px 8px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 0 0 12px #E8E8E8,
            0 0 0 14px #B0B0B0,
            0 0 0 18px #D0D0D0,
            0 0 0 20px #909090,
            0 18px 30px rgba(0, 0, 0, 0.4),
            0 30px 60px rgba(0, 0, 0, 0.3),
            /* Intensified RED glow at peak */
            0 0 80px rgba(244, 67, 54, 0.7),
            0 0 120px rgba(255, 82, 82, 0.4),
            inset 0 -8px 12px rgba(0, 0, 0, 0.3),
            inset 0 4px 8px rgba(255, 255, 255, 0.5);
    }
}

/*
PRESS FLASH - Burst of light on activation
Simulates electrical discharge / energy release
*/
@keyframes pressFlash {
    0% {
        box-shadow: 
            0 0 0 12px #E8E8E8,
            0 0 0 14px #B0B0B0,
            0 0 0 18px #D0D0D0,
            0 0 0 20px #909090,
            0 6px 12px rgba(0, 0, 0, 0.5),
            0 10px 20px rgba(0, 0, 0, 0.35),
            /* Explosive RED flash */
            0 0 150px rgba(255, 82, 82, 1),
            0 0 200px rgba(244, 67, 54, 0.7),
            inset 0 -4px 8px rgba(0, 0, 0, 0.4),
            inset 0 6px 12px rgba(0, 0, 0, 0.35);
    }
    100% {
        box-shadow: 
            0 0 0 12px #E8E8E8,
            0 0 0 14px #B0B0B0,
            0 0 0 18px #D0D0D0,
            0 0 0 20px #909090,
            0 6px 12px rgba(0, 0, 0, 0.5),
            0 10px 20px rgba(0, 0, 0, 0.35),
            0 0 100px rgba(255, 82, 82, 0.9),
            inset 0 -4px 8px rgba(0, 0, 0, 0.4),
            inset 0 6px 12px rgba(0, 0, 0, 0.35);
    }
}

/*
HIGHLIGHT SHIFT - Specular reflection movement
Simulates light source moving across glossy surface
*/
@keyframes highlightShift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(8px, 8px) scale(1.05);
        opacity: 1;
    }
}

/*
ROTATE POWER RING - Spinning LED effect
Creates arcade cabinet aesthetic
*/
@keyframes rotatePowerRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*
ICON PULSE - Synchronizes with power pulse
*/
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5))
                drop-shadow(0 0 20px rgba(244, 67, 54, 0.7));
    }
}

/* ===================================
   ORIGINAL GAME BUTTON STYLES END
   Continuing with game instructions...
   =================================== */

.game-instructions {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.game-instructions p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #FFFFFF;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.press-counter {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

#press-count {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF5252;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.8);
}

/* ===================================
   DECISION BUTTONS
   =================================== */

.decision-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    animation: slideUpFade 0.5s ease;
}

.decision-buttons.hidden {
    display: none;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.decision-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
    font-weight: 800;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    min-width: 220px;
}

.take-btn {
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
    color: #000;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.take-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(74, 222, 128, 0.4);
}

.press-again-btn {
    background: linear-gradient(135deg, #FFA500 0%, #FF6B6B 100%);
    color: #FFF;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.press-again-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 165, 0, 0.4);
}

.decision-btn:active {
    transform: translateY(0) scale(0.98);
}

}

/* ===================================
   SCREEN 3: END SCREEN
   =================================== */

.end-card {
    background: rgba(20, 20, 40, 0.85);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 28px;
    box-shadow: 
        0 0 0 1px rgba(255, 215, 0, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 20px 60px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 650px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.trophy {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: luxuryBounce 1.2s var(--transition-smooth);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

@keyframes luxuryBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-25px) scale(1.1); }
    50% { transform: translateY(-15px) scale(1.05); }
    70% { transform: translateY(-20px) scale(1.07); }
}

.end-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.final-prize {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 3px solid rgba(255, 215, 0, 0.5);
    margin-bottom: 30px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.final-prize p {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    letter-spacing: -0.3px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.confirmation-message {
    margin-top: 35px;
    padding: 25px 45px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.25) 0%, 
        rgba(255, 165, 0, 0.2) 50%,
        rgba(255, 215, 0, 0.25) 100%);
    backdrop-filter: blur(20px);
    border: 4px solid rgba(255, 215, 0, 0.7);
    border-radius: 20px;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.6),
        0 0 100px rgba(255, 165, 0, 0.4),
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: confirmAppear 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 300px;
    max-width: 90%;
}

.confirmation-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: prizeShine 2.5s linear infinite;
}

.confirmation-message::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 215, 0, 0.2) 0%, 
        transparent 70%);
    animation: confirmGlow 2s ease-in-out infinite;
}

.confirmation-icon {
    font-size: 3.5rem;
    font-weight: bold;
    color: #10B981;
    text-shadow: 
        0 0 30px rgba(16, 185, 129, 1),
        0 0 60px rgba(16, 185, 129, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.5);
    animation: confirmPulse 1.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.confirmation-text {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

@keyframes confirmPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1))
                drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1))
                drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    }
}

@keyframes confirmGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes confirmAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.confirmation-message.hidden {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border-width: 0;
    overflow: hidden;
    animation: none;
}

/* ===================================
   ADMIN SCREEN
   =================================== */

.admin-panel {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px var(--shadow);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.admin-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

.admin-close-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-close-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: rotate(90deg);
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.admin-tab {
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.admin-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 215, 0, 0.05);
}

.admin-tab.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.admin-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.branding-editor {
    background: rgba(20, 20, 40, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.branding-editor .form-group {
    margin-bottom: 20px;
}

.branding-editor .cta-button {
    width: 100%;
    margin-top: 10px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

.prize-editor {
    background: rgba(20, 20, 40, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.prize-editor:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(20, 20, 40, 0.6);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.prize-tier-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.tier-badge {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge.tier-1 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--dark);
}

.tier-badge.tier-2 {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: var(--dark);
}

.tier-badge.tier-3 {
    background: linear-gradient(135deg, #CD7F32 0%, #B8935F 100%);
    color: var(--light);
}

.tier-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.emoji-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.emoji-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background: rgba(20, 20, 40, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.emoji-btn:hover {
    transform: scale(1.15);
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.emoji-btn:active {
    transform: scale(1.05);
}

.admin-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.admin-actions .cta-button {
    flex: 1;
    min-width: 200px;
}

.reset-button {
    flex: 1;
    min-width: 200px;
    padding: 20px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--secondary);
    border: 3px solid var(--dark);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reset-button:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-2px);
}

.admin-note {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-style: italic;
}

/* ===================================
   PRIZE SET INDICATOR (Game Screen)
   =================================== */

.set-indicator-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.set-indicator {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
    animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { 
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% { 
        box-shadow: 
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.4);
    }
}

/* ===================================
   PRIZE SETS CONTAINER (Admin)
   =================================== */

.prize-sets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0 10px 0;
    gap: 15px;
}

.prize-sets-header .section-title {
    margin: 0;
}

.add-set-button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.add-set-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
    filter: brightness(1.1);
}

.prize-sets-container {
    max-height: 550px;
    overflow-y: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.prize-sets-container::-webkit-scrollbar {
    width: 8px;
}

.prize-sets-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.prize-sets-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.prize-sets-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.prize-set-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.set-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.set-title {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.delete-set-btn {
    padding: 8px 16px;
    background: rgba(255, 50, 50, 0.15);
    color: #FF6B6B;
    border: 2px solid rgba(255, 50, 50, 0.3);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-set-btn:hover {
    background: rgba(255, 50, 50, 0.3);
    border-color: rgba(255, 50, 50, 0.5);
    transform: translateY(-1px);
}

/* ===================================
   LEADS SECTION (Admin)
   =================================== */

.leads-section {
    /* Removed - now in tabs */
}

.leads-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.leads-actions {
    display: flex;
    gap: 10px;
}

.export-button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4ADE80 0%, #22C55E 100%);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.export-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 222, 128, 0.4);
    filter: brightness(1.1);
}

.clear-button {
    padding: 10px 20px;
    background: rgba(255, 50, 50, 0.15);
    color: #FF6B6B;
    border: 2px solid rgba(255, 50, 50, 0.3);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-button:hover {
    background: rgba(255, 50, 50, 0.3);
    border-color: rgba(255, 50, 50, 0.5);
    transform: translateY(-2px);
}

.leads-container {
    max-height: 550px;
    overflow-y: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.leads-container::-webkit-scrollbar {
    width: 8px;
}

.leads-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.leads-container::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.leads-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.no-leads-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    font-style: italic;
}

.lead-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.lead-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.lead-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.lead-number {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-timestamp {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.lead-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-row {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.lead-row strong {
    color: #FFD700;
    margin-right: 8px;
}

.lead-row a {
    color: #60A5FA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lead-row a:hover {
    color: #93C5FD;
    text-decoration: underline;
}

.lead-prize {
    margin-top: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    font-size: 1.05rem;
}

/* ===================================
   WHEEL GAME STYLES
   =================================== */

#game-screen-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wheel-canvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 60px rgba(255, 215, 0, 0.4));
}

.wheel-pointer {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: pointerBounce 2s ease-in-out infinite;
}

@keyframes pointerBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.wheel-controls {
    text-align: center;
    margin-top: 30px;
}

.wheel-instruction {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#spin-button {
    font-size: 1.5rem;
    padding: 20px 60px;
    animation: pulse 2s ease-in-out infinite;
}

#spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

/* ===================================
   ROULETTE GAME STYLES
   =================================== */

#game-screen-roulette {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roulette-wheel-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7));
}

.roulette-wheel-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, 
        rgba(139, 105, 20, 0.8) 0%, 
        rgba(101, 67, 33, 0.9) 50%, 
        rgba(61, 43, 31, 1) 100%);
    border-radius: 50%;
    z-index: -1;
    box-shadow: 
        inset 0 -15px 30px rgba(0, 0, 0, 0.5),
        inset 0 15px 30px rgba(255, 215, 0, 0.2),
        0 0 50px rgba(255, 215, 0, 0.3);
}

#roulette-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 
        inset 0 10px 30px rgba(255, 215, 0, 0.3),
        inset 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.roulette-ball {
    position: absolute;
    width: 22px;
    height: 22px;
    background: radial-gradient(circle at 35% 35%, #ffffff, #f0f0f0 40%, #d0d0d0 60%, #999999 80%, #666666);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.6),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        inset 2px 2px 4px rgba(255, 255, 255, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.6);
    z-index: 100;
    pointer-events: none;
    display: none;
    border: 1px solid rgba(200, 200, 200, 0.5);
}

.roulette-ball.spinning {
    display: block;
    animation: ballGlow 0.3s ease-in-out infinite alternate;
}

@keyframes ballGlow {
    from {
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 0.9),
            0 0 40px rgba(255, 255, 255, 0.6),
            inset -3px -3px 6px rgba(0, 0, 0, 0.4),
            inset 2px 2px 4px rgba(255, 255, 255, 0.8),
            0 6px 12px rgba(0, 0, 0, 0.6);
    }
    to {
        box-shadow: 
            0 0 25px rgba(255, 255, 255, 1),
            0 0 50px rgba(255, 255, 255, 0.8),
            inset -3px -3px 6px rgba(0, 0, 0, 0.4),
            inset 2px 2px 4px rgba(255, 255, 255, 0.8),
            0 8px 16px rgba(0, 0, 0, 0.7);
    }
}

.roulette-controls {
    text-align: center;
    margin-top: 30px;
}

.roulette-instruction {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#roulette-spin-button {
    font-size: 1.5rem;
    padding: 20px 60px;
    animation: pulse 2s ease-in-out infinite;
}

#roulette-spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

/* ===================================
   PLINKO GAME STYLES
   =================================== */

#game-screen-plinko {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plinko-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plinko-container::before {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6), rgba(101, 67, 33, 0.8));
    border-radius: 25px;
    z-index: -1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
                inset 0 -5px 20px rgba(0, 0, 0, 0.5),
                inset 0 5px 20px rgba(255, 215, 0, 0.1);
    border: 4px solid #8B4513;
}

#plinko-canvas {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    background: linear-gradient(180deg, #0a1628 0%, #16213e 30%, #1a2744 70%, #0f1f3d 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
                inset 0 0 50px rgba(30, 60, 114, 0.4),
                inset 0 -10px 30px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(212, 165, 116, 0.4);
}

.plinko-controls {
    text-align: center;
    margin-top: 15px;
}

.plinko-instruction {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

#plinko-drop-button {
    font-size: 1.3rem;
    padding: 15px 50px;
    animation: pulse 2s ease-in-out infinite;
    background: linear-gradient(135deg, #D4A574 0%, #B8860B 100%);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

#plinko-drop-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

/* Tablets and small desktops */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .form-card,
    .end-card {
        padding: 35px 30px;
    }
    
    .headline,
    .end-title {
        font-size: 1.8rem;
    }
    
    .game-button {
        width: 300px;
        height: 300px;
    }
    
    .button-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .button-icon {
        font-size: 4rem;
    }
    
    /* Wheel adjustments for tablets */
    .wheel-container {
        width: 450px;
        height: 450px;
        margin: 20px auto;
    }
    
    .wheel-pointer {
        font-size: 3rem;
        top: -25px;
    }
    
    .wheel-instruction {
        font-size: 1.1rem;
    }
    
    #spin-button {
        font-size: 1.3rem;
        padding: 18px 50px;
    }
    
    /* Roulette adjustments for tablets */
    .roulette-container {
        max-width: 450px;
    }
    
    .roulette-wheel-wrapper {
        width: 450px;
        height: 450px;
    }
    
    .roulette-ball {
        width: 16px;
        height: 16px;
    }
    
    .roulette-instruction {
        font-size: 1.1rem;
    }
    
    #roulette-spin-button {
        font-size: 1.3rem;
        padding: 18px 50px;
    }
}

/* Mobile phones - portrait */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 15px;
        max-width: 100%;
    }
    
    /* CRITICAL: Hide all screens by default on mobile */
    .screen {
        display: none !important;
    }
    
    /* CRITICAL: Only show active screen on mobile */
    .screen.active {
        display: flex !important;
    }
    
    /* Splash Screen Mobile */
    #splash-screen {
        align-items: center !important;
        justify-content: center !important;
        height: 100vh !important;
        height: 100dvh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        position: relative !important;
    }
    
    .splash-container {
        width: 100% !important;
        max-width: 100vw !important;
        padding: 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: auto !important;
        height: auto !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .splash-content {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .splash-emoji {
        font-size: 4rem !important;
        margin-bottom: 15px !important;
        animation: none !important;
    }
    
    .splash-logo {
        max-width: 200px !important;
        max-height: 120px !important;
        margin: 0 auto 15px auto !important;
        display: block !important;
        animation: none !important;
    }
    
    .splash-title {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .splash-tagline {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
        animation: none !important;
    }
    
    .splash-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        line-height: 1.3 !important;
    }
    
    .splash-start-btn {
        padding: 22px 45px !important;
        font-size: 1.4rem !important;
        letter-spacing: 2px !important;
        min-width: 260px !important;
        width: auto !important;
        display: inline-block !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 100 !important;
        animation: none !important;
        -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3) !important;
        touch-action: manipulation !important;
    }
    
    .btn-text {
        display: inline-block !important;
        font-weight: 900 !important;
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* Lead Capture Screen Mobile */
    #lead-capture-screen {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    #lead-capture-screen .container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        min-height: 100% !important;
        padding: 10px !important;
    }
    
    #lead-capture-screen .form-card {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 20px 15px !important;
        margin-bottom: 10px !important;
    }
    
    .brand-title {
        font-size: 1.3rem !important;
        display: block !important;
        visibility: visible !important;
        margin-bottom: 15px !important;
    }
    
    .form-card,
    .end-card {
        padding: 20px 15px !important;
        margin: 5px;
    }
    
    .headline,
    .end-title {
        font-size: 1.3rem !important;
        line-height: 1.3;
        margin-bottom: 20px !important;
    }
    
    .form-group {
        margin-bottom: 15px !important;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 5px !important;
    }
    
    .form-group input {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .cta-button {
        font-size: 1rem !important;
        padding: 14px 25px !important;
        margin-top: 10px !important;
    }
    
    /* Game Screen Mobile */
    .game-button {
        width: 250px !important;
        height: 250px !important;
    }
    
    .button-text {
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
    }
    
    .button-icon {
        font-size: 3rem !important;
    }
    
    /* Wheel Mobile - fit to screen */
    .wheel-container {
        width: 90vw !important;
        height: 90vw !important;
        max-width: 350px !important;
        max-height: 350px !important;
        margin: 15px auto !important;
    }
    
    .wheel-pointer {
        font-size: 2.5rem !important;
        top: -20px !important;
    }
    
    /* Roulette Mobile - fit to screen */
    .roulette-container {
        width: 100% !important;
        max-width: 90vw !important;
        margin: 15px auto !important;
    }
    
    .roulette-wheel-wrapper {
        width: 90vw !important;
        height: 90vw !important;
        max-width: 350px !important;
        max-height: 350px !important;
    }
    
    .roulette-ball {
        width: 12px !important;
        height: 12px !important;
    }
    
    .roulette-instruction {
        font-size: 1rem !important;
    }
    
    #roulette-spin-button {
        font-size: 1.1rem !important;
        padding: 14px 30px !important;
    }
    
    .wheel-controls {
        margin-top: 20px !important;
    }
    
    .wheel-instruction {
        font-size: 1rem !important;
        margin-top: 15px !important;
    }
    
    #spin-button {
        font-size: 1.2rem !important;
        padding: 16px 40px !important;
    }
    
    .press-count-display {
        font-size: 1rem !important;
    }
    
    .press-counter {
        font-size: 2rem !important;
    }
    
    .prize-display {
        padding: 15px 10px !important;
        margin: 10px 0 !important;
        min-height: 80px !important;
    }
    
    .prize-text {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .decision-buttons {
        gap: 10px !important;
        margin-top: 15px !important;
        padding: 0 10px !important;
        flex-wrap: wrap !important;
    }
    
    .decision-buttons button,
    .decision-btn {
        font-size: 0.9rem !important;
        padding: 12px 15px !important;
        min-width: 140px !important;
        max-width: 48% !important;
        flex: 1 1 140px !important;
        letter-spacing: 0.5px !important;
    }
    
    /* End Screen Mobile */
    .end-card {
        padding: 30px 20px !important;
    }
    
    .trophy {
        font-size: 3.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .end-title {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .final-prize-display {
        padding: 20px 15px !important;
        margin: 15px 0 !important;
    }
    
    #final-prize-text {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
    }
    
    #confirm-button {
        font-size: 1rem !important;
        padding: 14px 25px !important;
        margin-top: 20px !important;
    }
    
    .confirmation-message {
        min-width: auto !important;
        max-width: 95% !important;
        padding: 15px 20px !important;
        margin-top: 20px !important;
        gap: 10px !important;
        flex-direction: column !important;
    }
    
    .confirmation-icon {
        font-size: 2.5rem !important;
    }
    
    .confirmation-text {
        font-size: 1.1rem !important;
        letter-spacing: 0.5px !important;
        white-space: normal !important;
        text-align: center !important;
    }
    
    /* License Screen Mobile */
    .splash-content {
        max-width: 100% !important;
        padding: 20px !important;
    }
    
    .splash-content h1 {
        font-size: 1.8rem !important;
    }
    
    .splash-content p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .splash-content a {
        font-size: 1rem !important;
        padding: 15px 30px !important;
    }
    
    /* Admin Cog Button Mobile */
    .admin-cog-btn {
        font-size: 1.8rem !important;
        width: 55px !important;
        height: 55px !important;
        opacity: 0.6 !important;
        top: 10px !important;
        right: 10px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .admin-cog-btn:active {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.7) !important;
        transform: rotate(90deg) scale(0.95) !important;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .splash-tagline {
        font-size: 1.6rem !important;
        letter-spacing: 2px !important;
    }
    
    .game-button {
        width: 220px !important;
        height: 220px !important;
    }
    
    .button-text {
        font-size: 1rem !important;
    }
    
    .form-card,
    .end-card {
        padding: 20px 15px !important;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 10px;
    }
    
    .splash-emoji {
        font-size: 3rem !important;
        margin-bottom: 10px;
    }
    
    .splash-title {
        font-size: 1.2rem !important;
    }
    
    .splash-tagline {
        font-size: 1.5rem !important;
        margin-bottom: 5px;
    }
    
    .splash-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }
    
    .splash-start-btn {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .game-button {
        width: 180px !important;
        height: 180px !important;
    }
}

/* ===================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   =================================== */

button,
input,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button {
    -webkit-user-select: none;
    user-select: none;
}

/* Prevent double-tap zoom on iOS */
button,
.game-button,
.cta-button,
.admin-cog-btn,
.splash-start-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
}

/* Force hardware acceleration for better performance */
.splash-start-btn,
.game-button,
.cta-button,
.admin-cog-btn {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* Ensure buttons are always visible and clickable */
button {
    pointer-events: auto !important;
    position: relative;
}

.splash-start-btn,
.admin-cog-btn {
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* ===================================
   SPLASH SCREEN
   =================================== */

#splash-screen {
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 50% 40%, rgba(255, 223, 0, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 0, 100, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    position: relative;
}

#splash-screen::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle, rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    transform: translate(-50%, -50%);
    animation: sparkleMove 20s linear infinite;
}

@keyframes sparkleMove {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.splash-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.splash-content {
    animation: splashFadeIn 0.8s ease;
}

@keyframes splashFadeIn {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.splash-emoji {
    font-size: 8rem;
    margin-bottom: 20px;
    animation: emojiFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    line-height: 1;
}

.splash-logo {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.splash-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.splash-tagline {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: titlePulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.splash-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.splash-start-btn {
    position: relative;
    padding: 25px 80px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 60px;
    color: #000;
    cursor: pointer;
    overflow: visible;
    box-shadow: 
        0 0 0 8px rgba(255, 215, 0, 0.2),
        0 20px 40px rgba(255, 165, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    animation: buttonBounce 2s ease-in-out infinite;
    z-index: 10;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

@keyframes buttonBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.splash-start-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 0 0 12px rgba(255, 215, 0, 0.3),
        0 25px 50px rgba(255, 165, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.splash-start-btn:active {
    transform: scale(0.98) translateY(0);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 150%; }
}