/* ========================================
   LA QUEEN - CRAZY TIME STYLE
   Colori vibranti stile Casino Live
   ======================================== */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CRAZY TIME Colors */
    --crazy-yellow: #FFD700;
    --crazy-blue: #00D4FF;
    --crazy-red: #FF3366;
    --crazy-purple: #9B59B6;
    --crazy-green: #2ECC71;
    --crazy-orange: #FF6B00;
    --crazy-pink: #FF69B4;
    --crazy-teal: #4ECDC4;
    
    /* Gold / Royal Colors */
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #DAA520;
    --royal-purple: #6B2D5C;
    --royal-red: #8B0000;
    
    /* Backgrounds */
    --black: #0A0A0A;
    --black-light: #141414;
    --black-card: #1A1A1A;
    --black-border: #2A2A2A;
    --dark-purple: #1A0A1A;
    --dark-blue: #0A1A2A;
    
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --gray-400: #909090;
    --gray-600: #505050;
    
    /* Gradients */
    --gradient-crazy: linear-gradient(135deg, #FFD700 0%, #FF6B00 25%, #FF3366 50%, #9B59B6 75%, #00D4FF 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --gradient-royal: linear-gradient(135deg, #6B2D5C 0%, #9B59B6 50%, #8B0000 100%);
    --gradient-neon: linear-gradient(135deg, #00D4FF 0%, #FF3366 50%, #FFD700 100%);
    
    /* Shadows */
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.4);
    --shadow-neon: 0 0 60px rgba(0, 212, 255, 0.3), 0 0 40px rgba(255, 51, 102, 0.3);
    --shadow-crazy: 0 0 80px rgba(255, 215, 0, 0.2), 0 0 40px rgba(255, 107, 0, 0.2);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(ellipse at top, rgba(107, 45, 92, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.text-gradient-crazy {
    background: var(--gradient-crazy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-crazy-yellow {
    color: var(--crazy-yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: var(--shadow-gold), 0 0 80px rgba(255, 215, 0, 0.6); }
}

@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 0 0 20px var(--crazy-yellow), 0 0 40px var(--crazy-orange);
        border-color: var(--crazy-yellow);
    }
    50% { 
        box-shadow: 0 0 40px var(--crazy-blue), 0 0 80px var(--crazy-purple);
        border-color: var(--crazy-blue);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(var(--spin-degrees, 1800deg)); }
}

@keyframes lightChase {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-600%); }
}

@keyframes jackpotFlash {
    0%, 100% { 
        text-shadow: 0 0 20px var(--gold);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px var(--gold), 0 0 80px var(--crazy-orange);
        transform: scale(1.05);
    }
}

@keyframes coinFall {
    0% { 
        transform: translateY(-100vh) rotate(0deg); 
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh) rotate(720deg); 
        opacity: 0;
    }
}

@keyframes crownRain {
    0% { 
        transform: translateY(-50px) rotate(0deg) scale(0.5); 
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(100vh) rotate(360deg) scale(1); 
        opacity: 0;
    }
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes liveDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========================================
   FLOATING PARTICLES & COINS
   ======================================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gradient-crazy);
    border-radius: 50%;
    animation: coinFall linear infinite;
    opacity: 0.6;
}

.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 24px;
    animation: coinFall linear infinite;
    opacity: 0.4;
}

/* ========================================
   LEGAL POPUP
   ======================================== */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.legal-popup.hidden {
    display: none;
}

.legal-popup-content {
    background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 24px 28px;
    max-width: 380px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-gold), 0 0 60px rgba(255, 215, 0, 0.15);
    animation: neonPulse 3s ease-in-out infinite;
}

.legal-logo {
    position: relative;
    margin-bottom: 12px;
}

.legal-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.crown-decoration {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    animation: crownFloat 2s ease-in-out infinite;
}

.legal-age-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-gold);
}

.legal-age-circle span {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
}

.legal-popup-content h2 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.legal-popup-content p {
    color: var(--gray-400);
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.legal-terms a {
    color: var(--gold);
    text-decoration: none;
}

.legal-accept-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    margin: 12px 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold), 0 0 60px rgba(255, 215, 0, 0.5);
}

.legal-adm {
    margin: 12px 0;
}

.legal-adm-logo {
    height: 30px;
    opacity: 0.7;
}

.legal-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--crazy-red);
    font-size: 11px;
    margin-bottom: 6px;
}

.warning-icon {
    width: 14px;
    height: 14px;
}

.legal-help {
    font-size: 11px;
    color: var(--gray-400);
}

/* ========================================
   URGENCY POPUP
   ======================================== */
.urgency-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency-popup.hidden {
    display: none;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.popup-content {
    position: relative;
    background: linear-gradient(160deg, #1A1A1A 0%, #0D0D0D 50%, #0A0A0A 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close svg {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
}

.popup-close:hover {
    background: rgba(255, 51, 102, 0.2);
    border-color: var(--crazy-red);
}

.popup-close:hover svg {
    color: var(--crazy-red);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.popup-logo-circle {
    position: relative;
    width: 56px;
    height: 56px;
}

.popup-logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.mini-crown {
    position: absolute;
    top: -8px;
    right: -4px;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.popup-title-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.popup-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.5px;
}

.popup-urgency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
}

.popup-countdown-mini {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.popup-countdown-mini span:first-child {
    font-family: var(--font-body);
    font-size: 9px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-countdown-mini span:last-child {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.popup-spots {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
}

.popup-spots strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--crazy-red);
}

.popup-spots-dot {
    width: 8px;
    height: 8px;
    background: var(--crazy-red);
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.popup-timer-warning {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.08) 0%, rgba(255, 51, 102, 0.03) 100%);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.popup-timer-warning strong {
    color: var(--crazy-red);
    font-weight: 700;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.popup-warning {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--crazy-red);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.crown-icon {
    font-size: 20px;
    animation: crownFloat 2s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.tg-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   MOBILE HEADER CTA - Solo bottone
   ======================================== */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 10, 26, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 16px;
    z-index: 999;
}

.mobile-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--shadow-gold);
    width: 100%;
}

.mobile-header-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   MOBILE TAB BAR (BOTTOM NAVIGATION)
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid var(--black-border);
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--gray-400);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s;
}

.tab-item svg {
    width: 20px;
    height: 20px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--gold);
}

.tab-cta {
    color: var(--white);
}

.tab-cta-btn {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tab-cta-btn svg {
    width: 22px;
    height: 22px;
    color: var(--black);
}

/* ========================================
   HERO SECTION - NEW LAYOUT
   ======================================== */
.hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 30px) 24px 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.crazy-time-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 40%);
}

/* HERO GRID - 3 Columns */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto 320px;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* LEFT: CONTENT */
.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-live-dot {
    width: 8px;
    height: 8px;
    background: var(--crazy-red);
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.badge-crown {
    font-size: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 25px;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* MINI STATS ROW */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 16px 24px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    width: fit-content;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}

.mini-stat-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 215, 0, 0.2);
}

/* HERO CTA */
.hero-cta {
    margin-top: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-400);
}

/* CENTER: WHEEL */
.hero-wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crazy-wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* HERO MINI SLOT */
.hero-slot-container {
    margin-bottom: 30px;
}

.slot-machine-mini {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 20px;
    display: inline-block;
    box-shadow: var(--shadow-gold);
}

.slot-header {
    text-align: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    animation: jackpotFlash 2s ease-in-out infinite;
}

.slot-reels {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.reel {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reel-item {
    font-size: 30px;
    animation: none;
}

.reel.spinning .reel-item {
    animation: slotSpin 0.3s linear infinite;
}

.slot-spin-btn {
    background: var(--gradient-crazy);
    color: var(--black);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slot-spin-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 215, 0, 0.3);
}

/* HERO COUNTDOWN */
.hero-countdown {
    background: linear-gradient(145deg, rgba(107, 45, 92, 0.3) 0%, rgba(26, 10, 26, 0.8) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--crazy-yellow);
    margin-bottom: 15px;
}

.countdown-icon {
    font-size: 20px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.countdown-unit {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    animation: pulse 1s ease-in-out infinite;
}

.spots-remaining {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--crazy-red);
}

.spots-pulse {
    width: 10px;
    height: 10px;
    background: var(--crazy-red);
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

/* HERO CTA */
.hero-cta {
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: var(--black);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gray-400);
}

/* ========================================
   CRAZY TIME WHEEL (Hero Visual)
   ======================================== */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crazy-wheel-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.wheel-outer-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 50%;
    border: 10px solid;
    border-color: #D4AF37;
    background: linear-gradient(145deg, #B8860B, #FFD700);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.wheel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #F7DC6F 0deg 45deg,
        #5DADE2 45deg 90deg,
        #BB8FCE 90deg 135deg,
        #F8BBD9 135deg 180deg,
        #58D68D 180deg 225deg,
        #F5B041 225deg 270deg,
        #EC7063 270deg 315deg,
        #FFD700 315deg 360deg
    );
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Segment labels positioned on the wheel */
.wheel-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 25px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: #1A1A1A;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.wheel-segment:nth-child(1) { transform: rotate(22.5deg); }
.wheel-segment:nth-child(2) { transform: rotate(67.5deg); }
.wheel-segment:nth-child(3) { transform: rotate(112.5deg); }
.wheel-segment:nth-child(4) { transform: rotate(157.5deg); }
.wheel-segment:nth-child(5) { transform: rotate(202.5deg); }
.wheel-segment:nth-child(6) { transform: rotate(247.5deg); }
.wheel-segment:nth-child(7) { transform: rotate(292.5deg); }
.wheel-segment:nth-child(8) { transform: rotate(337.5deg); }

/* Remove individual segment backgrounds - using conic-gradient instead */
.wheel-segment.seg-yellow,
.wheel-segment.seg-blue,
.wheel-segment.seg-purple,
.wheel-segment.seg-pink,
.wheel-segment.seg-green,
.wheel-segment.seg-orange,
.wheel-segment.seg-red,
.wheel-segment.seg-rainbow {
    background: transparent;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, #E74C3C 0%, #C0392B 50%, #922B21 100%);
    border: 5px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.wheel-center-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    color: #FFF;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.wheel-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.wheel-crown {
    position: absolute;
    top: -25px;
    font-size: 30px;
    animation: crownFloat 2s ease-in-out infinite;
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 45px solid var(--gold);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    z-index: 20;
}

.wheel-lights {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 50%;
    pointer-events: none;
}

.wheel-lights .light {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

/* Position lights around the wheel */
.wheel-lights .light:nth-child(1) { top: 2%; left: 50%; transform: translateX(-50%); }
.wheel-lights .light:nth-child(2) { top: 10%; left: 78%; }
.wheel-lights .light:nth-child(3) { top: 30%; left: 95%; }
.wheel-lights .light:nth-child(4) { top: 50%; left: 98%; transform: translateY(-50%); }
.wheel-lights .light:nth-child(5) { top: 70%; left: 95%; }
.wheel-lights .light:nth-child(6) { top: 90%; left: 78%; }
.wheel-lights .light:nth-child(7) { top: 98%; left: 50%; transform: translateX(-50%); }
.wheel-lights .light:nth-child(8) { top: 90%; left: 22%; }
.wheel-lights .light:nth-child(9) { top: 70%; left: 5%; }
.wheel-lights .light:nth-child(10) { top: 50%; left: 2%; transform: translateY(-50%); }
.wheel-lights .light:nth-child(11) { top: 30%; left: 5%; }
.wheel-lights .light:nth-child(12) { top: 10%; left: 22%; }

.wheel-lights .light:nth-child(odd) {
    animation: lightChase 0.5s ease-in-out infinite;
}

.wheel-lights .light:nth-child(even) {
    animation: lightChase 0.5s ease-in-out infinite 0.25s;
}

.spin-wheel-btn {
    margin-top: 20px;
    background: var(--gradient-crazy);
    color: var(--black);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.spin-wheel-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon), 0 0 40px rgba(255, 215, 0, 0.5);
}

.spin-wheel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* WHEEL WIN POPUP */
.wheel-win-popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    animation: popIn 0.5s ease-out;
}

.wheel-win-popup.show {
    display: block;
}

.win-popup-content {
    background: linear-gradient(145deg, rgba(26, 10, 26, 0.98) 0%, rgba(107, 45, 92, 0.95) 100%);
    border: 3px solid var(--gold);
    border-radius: 25px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), var(--shadow-gold);
    min-width: 280px;
    position: relative;
}

.win-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.win-popup-close svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.win-popup-close:hover {
    background: var(--crazy-red);
    border-color: var(--crazy-red);
}

.win-confetti {
    font-size: 40px;
    margin-bottom: 10px;
    animation: bounce 0.6s ease infinite;
}

.win-prize-icon {
    font-size: 50px;
    margin-bottom: 10px;
    animation: pulse 1s ease-in-out infinite;
}

.win-prize-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.win-prize-desc {
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.win-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
}

.win-claim-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
}

.win-claim-btn .tg-icon {
    width: 20px;
    height: 20px;
}

/* MINI SLOT WIN DISPLAY */
.mini-slot-win {
    display: none;
    margin-top: 10px;
}

.mini-slot-win.show {
    display: block;
    animation: popIn 0.4s ease-out;
}

.mini-win-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.mini-win-link:hover {
    transform: scale(1.05);
}

.tg-icon-sm {
    width: 16px;
    height: 16px;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

/* ========================================
   HERO URGENCY PANEL (Right Side)
   ======================================== */
.hero-urgency-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Countdown Box */
.urgency-countdown-box {
    background: linear-gradient(145deg, rgba(107, 45, 92, 0.4) 0%, rgba(26, 10, 26, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.urgency-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--crazy-yellow);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-icon {
    font-size: 16px;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.timer-block {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    padding: 10px 12px;
    min-width: 55px;
}

.timer-value {
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.timer-unit {
    font-size: 9px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-sep {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    animation: pulse 1s ease-in-out infinite;
}

/* Spots Box */
.urgency-spots-box {
    background: linear-gradient(145deg, rgba(255, 51, 102, 0.15) 0%, rgba(26, 10, 26, 0.9) 100%);
    border: 2px solid var(--crazy-red);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.spots-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--crazy-red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spots-live-dot {
    width: 8px;
    height: 8px;
    background: var(--crazy-red);
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.spots-display {
    margin-bottom: 12px;
}

.spots-number {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
    line-height: 1;
}

.spots-label {
    font-size: 12px;
    color: var(--crazy-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spots-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.spots-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--crazy-red), var(--crazy-orange));
    border-radius: 3px;
    width: 75%;
    animation: pulse 2s ease-in-out infinite;
}

.spots-warning {
    font-size: 12px;
    color: var(--crazy-red);
    margin: 0;
}

/* Mini Slot Box */
.urgency-slot-box {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.mini-slot-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mini-slot-reel {
    width: 50px;
    height: 50px;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.mini-slot-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-slot-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 50%, var(--black) 100%);
}

.section-light {
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--black-light) 50%, var(--dark-purple) 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-style: italic;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
}

.section-header.centered .section-desc {
    margin: 0 auto;
}

/* ========================================
   SLOT MACHINE SECTION
   ======================================== */
.section-slots {
    background: 
        radial-gradient(ellipse at center, rgba(107, 45, 92, 0.4) 0%, transparent 60%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 50%, var(--black) 100%);
}

.slot-machine-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.slot-machine {
    perspective: 1000px;
}

.slot-frame {
    background: linear-gradient(145deg, #3A3A3A 0%, #1A1A1A 100%);
    border: 5px solid var(--gold);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-gold), inset 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.slot-top {
    text-align: center;
    margin-bottom: 20px;
}

.slot-jackpot {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 30px;
    display: inline-block;
}

.jackpot-label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 5px;
}

.jackpot-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    animation: jackpotFlash 2s ease-in-out infinite;
}

.slot-display {
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.slot-reel-container {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slot-reel {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #0A0A0A 0%, #151515 50%, #0A0A0A 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slot-symbol {
    font-size: 50px;
    line-height: 100px;
    text-align: center;
    width: 100%;
    height: 100px;
}

.slot-reel.spinning {
    animation: none;
}

.slot-reel.spinning .slot-symbol {
    animation: slotSpin 0.1s linear infinite;
}

.slot-bottom {
    text-align: center;
}

.slot-lever {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
}

.slot-lever:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.5);
}

.slot-lever:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-result {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 15px 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.slot-result.show {
    opacity: 1;
    bottom: -60px;
}

.result-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* STRATEGY CARDS */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.strategy-card {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strategy-card:hover .card-glow {
    opacity: 0.1;
}

.crazy-time-card { border-image: linear-gradient(135deg, #FFD700, #FF6B00) 1; }
.crazy-time-card .card-glow { background: var(--crazy-yellow); }
.crazy-time-card:hover { border-color: var(--crazy-yellow); }

.monopoly-card { border-image: linear-gradient(135deg, #2ECC71, #27AE60) 1; }
.monopoly-card .card-glow { background: var(--crazy-green); }
.monopoly-card:hover { border-color: var(--crazy-green); }

.lightning-card { border-image: linear-gradient(135deg, #00D4FF, #9B59B6) 1; }
.lightning-card .card-glow { background: var(--crazy-blue); }
.lightning-card:hover { border-color: var(--crazy-blue); }

.queen-card { border-image: linear-gradient(135deg, #FFD700, #FF3366) 1; }
.queen-card .card-glow { background: var(--gold); }
.queen-card:hover { border-color: var(--gold); }

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.strategy-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.strategy-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-multiplier {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
}

/* ========================================
   FORTUNE WHEEL SECTION
   ======================================== */
.section-wheel {
    background: 
        radial-gradient(ellipse at top, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 100%);
}

.wheel-game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fortune-wheel {
    position: relative;
    width: 350px;
    height: 350px;
    margin-bottom: 30px;
}

.fortune-wheel-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid var(--gold);
    box-shadow: var(--shadow-gold), 0 0 60px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.fortune-wheel-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.fortune-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: 100% 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}

.fortune-segment:nth-child(1) { transform: rotate(0deg); background: #FFD700; }
.fortune-segment:nth-child(2) { transform: rotate(45deg); background: #FF6B6B; }
.fortune-segment:nth-child(3) { transform: rotate(90deg); background: #4ECDC4; }
.fortune-segment:nth-child(4) { transform: rotate(135deg); background: #9B59B6; }
.fortune-segment:nth-child(5) { transform: rotate(180deg); background: #F39C12; }
.fortune-segment:nth-child(6) { transform: rotate(225deg); background: #E74C3C; }
.fortune-segment:nth-child(7) { transform: rotate(270deg); background: #3498DB; }
.fortune-segment:nth-child(8) { transform: rotate(315deg); background: #2ECC71; }

.fortune-segment span {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    transform: rotate(-67.5deg) translateX(-30px);
    text-align: center;
    white-space: nowrap;
}

.fortune-wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-gold);
    z-index: 10;
}

.fortune-wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid var(--gold);
    z-index: 20;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.fortune-spin-btn {
    background: var(--gradient-crazy);
    color: var(--black);
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
    margin-bottom: 20px;
}

.fortune-spin-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-neon), 0 0 50px rgba(255, 215, 0, 0.4);
}

.fortune-spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wheel-prize-display {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.prize-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.prize-claim-btn {
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.prize-claim-btn.show {
    display: inline-flex;
}

.prize-claim-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.6);
}

.prize-claim-btn .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.section-stats {
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-purple) 0%, var(--black) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stats-card {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.stats-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.stats-number-wrapper {
    margin-bottom: 15px;
}

.stats-prefix {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stats-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stats-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
    display: block;
}

.stats-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stats-bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

/* LIVE WINS TICKER */
.live-wins-container {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    overflow: hidden;
}

.live-wins-header {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--crazy-red);
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.live-wins-ticker {
    display: flex;
    animation: tickerScroll 20s linear infinite;
    padding: 15px 0;
}

.win-item {
    white-space: nowrap;
    padding: 0 40px;
    font-size: 14px;
    color: var(--white);
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.step-crown {
    font-size: 40px;
    margin-bottom: 15px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.step-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    display: none;
}

.steps-note {
    text-align: center;
}

.note-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.note-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.section-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black) 0%, var(--royal-purple) 50%, var(--black) 100%);
}

.cta-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow.glow-1 {
    top: -20%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: rgba(255, 215, 0, 0.2);
}

.cta-glow.glow-2 {
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: rgba(0, 212, 255, 0.15);
}

.cta-glow.glow-3 {
    top: 30%;
    left: 40%;
    width: 30%;
    height: 50%;
    background: rgba(255, 51, 102, 0.1);
}

.crown-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.crown-rain-item {
    position: absolute;
    font-size: 24px;
    animation: crownRain linear infinite;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-logo-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.cta-logo-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.cta-crown {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    animation: crownFloat 2s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-style: italic;
}

.cta-desc {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 30px;
}

.final-slot {
    margin-bottom: 30px;
}

.final-slot-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.final-reel {
    font-size: 50px;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #2A2A2A 0%, #1A1A1A 100%);
    border: 3px solid var(--gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    animation: pulse 2s ease-in-out infinite;
}

.btn-large {
    padding: 22px 50px;
    font-size: 20px;
}

.cta-note-final {
    margin-top: 20px;
    font-size: 14px;
    color: var(--crazy-red);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 60px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-crown {
    font-size: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--crazy-red);
    margin-bottom: 20px;
}

.footer-adm {
    margin-top: 20px;
}

.footer-adm-logo {
    height: 40px;
    opacity: 0.6;
}

/* ========================================
   RECENSIONI
   ======================================== */
.section-reviews {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(145deg, rgba(26, 10, 26, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}

.review-stars {
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
    font-style: italic;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
}

.review-date {
    font-size: 12px;
    color: var(--gray-400);
}

/* ========================================
   FAQ
   ======================================== */
.section-faq {
    background: var(--black);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(26, 10, 26, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-wheel-section {
        order: 1;
    }
    
    .hero-urgency-panel {
        order: 3;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .hero-mini-stats {
        justify-content: center;
    }
    
    .crazy-wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-header-cta {
        display: block;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 80px);
        padding-bottom: 100px; /* Spazio per il tab bar */
    }
    
    .section {
        padding-bottom: 100px; /* Spazio per il tab bar */
    }
    
    .nav-links {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-urgency-panel {
        grid-template-columns: 1fr;
    }
    
    .urgency-countdown-box,
    .urgency-spots-box,
    .urgency-slot-box {
        padding: 15px;
    }
    
    .timer-value {
        font-size: 22px;
    }
    
    .timer-block {
        min-width: 45px;
        padding: 8px 10px;
    }
    
    .spots-number {
        font-size: 36px;
    }
    
    .crazy-wheel-container {
        width: 280px;
        height: 280px;
    }
    
    /* Reviews responsive */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    /* FAQ responsive */
    .faq-question {
        padding: 16px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
        font-size: 13px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
    
    .fortune-wheel {
        width: 280px;
        height: 280px;
    }
    
    .slot-reel-container {
        gap: 10px;
    }
    
    .slot-reel {
        width: 70px;
        height: 70px;
    }
    
    .slot-symbol {
        font-size: 35px;
        line-height: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .crazy-wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .wheel-center {
        width: 70px;
        height: 70px;
    }
    
    .wheel-logo {
        width: 40px;
        height: 40px;
    }
    
    .fortune-wheel {
        width: 250px;
        height: 250px;
    }
    
    .slot-frame {
        padding: 20px;
    }
    
    .jackpot-amount {
        font-size: 24px;
    }
}
