:root {
    /* PALETA VIBRANTE Y MODERNA */
    --bg-main: #0f172a;
    --bg-gradient: radial-gradient(circle at 50% -20%, #3b82f6 0%, #1e1b4b 50%, #0f172a 100%);
    --bg-card: rgba(30, 41, 59, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    
    --neon-gold: #fbbf24;
    --neon-gold-light: #fef08a;
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
    
    --neon-cyan: #22d3ee;
    --neon-cyan-glow: rgba(34, 211, 238, 0.5);
    
    --neon-emerald: #34d399;
    --neon-emerald-glow: rgba(52, 211, 153, 0.5);
    
    --neon-pink: #f472b6;
    --neon-purple: #a78bfa;
    
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    
    --border-glass: rgba(255, 255, 255, 0.15);
    --border-glass-glow: rgba(34, 211, 238, 0.4);
    --shadow-neon: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }

body { 
    background-color: var(--bg-main); 
    background-image: var(--bg-gradient);
    color: var(--text-main); 
    min-height: 100vh; 
    overflow-x: hidden; 
    scroll-behavior: smooth; 
}

/* NAVBAR FLOTANTE CON EFECTO VIDRIO */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 18px 6%; 
    background: rgba(15, 23, 42, 0.8); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid var(--border-glass); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    font-size: 1.6rem; 
    color: var(--neon-gold); 
    cursor: pointer; 
    font-weight: 800; 
    letter-spacing: -0.5px;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-icon { 
    width: 45px; 
    height: 45px; 
    background: var(--gradient-gold); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #0f172a; 
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6); 
    font-size: 1.2rem; 
}

.logo span { color: var(--text-main); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.2s ease; }
.nav-links a:hover { color: var(--neon-cyan); text-shadow: 0 0 10px var(--neon-cyan-glow); }

.user-email-badge { 
    background: rgba(167, 139, 250, 0.15); 
    border: 1px solid rgba(167, 139, 250, 0.4); 
    padding: 8px 16px; 
    border-radius: 12px; 
    font-size: 0.85rem; 
    color: #ddd6fe; 
    font-weight: 600;
    box-shadow: 0 0 15px rgba(167, 139, 250, 0.2);
}

/* BOTONES VIBRANTES CON ANIMACIÓN */
.btn-primary-gradient { 
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%); 
    color: white; 
    border: none; 
    padding: 14px 28px; 
    border-radius: 14px; 
    font-weight: 700; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4); 
}

.btn-primary-gradient:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6); 
    filter: brightness(1.1); 
}

.btn-primary-gradient:disabled { 
    background: #334155; 
    color: #64748b; 
    cursor: not-allowed; 
    box-shadow: none; 
    transform: none; 
}

.btn-admin-nav { 
    background: rgba(244, 114, 182, 0.15); 
    color: var(--neon-pink); 
    border: 1px solid rgba(244, 114, 182, 0.4); 
    padding: 10px 18px; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 0.9rem; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    transition: all 0.2s; 
}
.btn-admin-nav:hover { background: rgba(244, 114, 182, 0.3); transform: translateY(-2px); box-shadow: 0 0 15px rgba(244, 114, 182, 0.4); }

.btn-outline { 
    background: rgba(255, 255, 255, 0.05); 
    color: var(--text-main); 
    border: 1px solid var(--border-glass); 
    padding: 10px 20px; 
    border-radius: 12px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    cursor: pointer; 
    transition: all 0.2s; 
}
.btn-outline:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(34, 211, 238, 0.1); box-shadow: 0 0 15px var(--neon-cyan-glow); }
.btn-block-custom { width: 100%; margin-top: 15px; }

/* HERO SECTION CON LUCES ANIMADAS */
.hero-section { position: relative; padding: 110px 6%; overflow: hidden; }
.hero-glow-blob { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(150px); z-index: 0; pointer-events: none; opacity: 0.4; animation: pulseBlob 8s ease-in-out infinite alternate; }
.blob-1 { background: #3b82f6; top: -150px; left: -100px; }
.blob-2 { background: #8b5cf6; bottom: -150px; right: -50px; animation-delay: 4s; }
.blob-3 { display: none; }

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, 20px); }
}

.hero-content-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 60px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-text { max-width: 600px; }

.badge-vip { 
    background: rgba(251, 191, 36, 0.15); 
    color: var(--neon-gold); 
    padding: 8px 16px; 
    border-radius: 10px; 
    font-size: 0.8rem; 
    font-weight: 800; 
    display: inline-block; 
    margin-bottom: 20px; 
    border: 1px solid rgba(251, 191, 36, 0.4); 
    text-transform: uppercase; 
    letter-spacing: 1.5px;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.hero-text h1 { font-size: 3.8rem; line-height: 1.15; margin-bottom: 20px; font-weight: 900; color: var(--text-main); letter-spacing: -1px; }
.hero-text p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 30px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 16px; }

.btn-hero-primary { 
    background: var(--gradient-gold); 
    color: #0f172a; 
    padding: 16px 30px; 
    border-radius: 14px; 
    text-decoration: none; 
    font-weight: 800; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    box-shadow: 0 5px 25px rgba(251, 191, 36, 0.5); 
    transition: all 0.3s; 
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.8); }

.btn-hero-secondary { 
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid var(--border-glass); 
    color: var(--text-main); 
    padding: 16px 24px; 
    border-radius: 14px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    transition: all 0.3s; 
}
.btn-hero-secondary:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--neon-cyan); box-shadow: 0 0 20px var(--neon-cyan-glow); }

/* TARJETA JACKPOT CON LUZ ANIMADA */
.jackpot-card-glass { 
    background: var(--bg-card); 
    backdrop-filter: blur(30px); 
    border: 1px solid var(--border-glass); 
    border-radius: 32px; 
    padding: 45px; 
    text-align: center; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05); 
    min-width: 380px; 
    position: relative; 
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { border-color: rgba(255,255,255,0.15); box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
    100% { border-color: rgba(34, 211, 238, 0.6); box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(34, 211, 238, 0.3); }
}

.jackpot-header { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--neon-gold); font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.jackpot-amount { 
    font-size: 4rem; 
    color: var(--neon-gold-light); 
    margin: 15px 0 25px; 
    font-weight: 900; 
    letter-spacing: -1px; 
    text-shadow: 0 0 35px rgba(251, 191, 36, 0.6);
    animation: pulseAmount 2s ease-in-out infinite alternate;
}

@keyframes pulseAmount {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.countdown-grid { display: flex; justify-content: center; align-items: center; gap: 12px; }
.time-box { background: rgba(15, 23, 42, 0.9); padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border-glass); min-width: 65px; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.time-box span { font-size: 1.4rem; font-weight: 900; color: var(--text-main); display: block; text-shadow: 0 0 10px rgba(255,255,255,0.4); }
.time-box p { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; font-weight: 800; letter-spacing: 1px; }
.separator { font-weight: 900; color: var(--neon-gold); font-size: 1.3rem; }

/* SECCIÓN TÓMBOLA / SORTEO */
.draw-section { padding: 110px 6%; border-top: 1px solid var(--border-glass); text-align: center; background: rgba(15, 23, 42, 0.4); }
.section-title { margin-bottom: 50px; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 12px; font-weight: 900; letter-spacing: -0.5px; background: linear-gradient(135deg, #f8fafc, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title p { color: var(--text-muted); font-size: 1.15rem; }

.draw-container-glass { max-width: 700px; margin: 0 auto; background: var(--bg-card); backdrop-filter: blur(30px); border: 1px solid var(--border-glass); border-radius: 32px; padding: 50px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.draw-status-box { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px; }
.drum-spinner-ring { width: 70px; height: 70px; border: 5px solid rgba(255, 255, 255, 0.1); border-top-color: var(--neon-cyan); border-radius: 50%; animation: spinRing 0.7s linear infinite; box-shadow: 0 0 20px var(--neon-cyan-glow); }
@keyframes spinRing { to { transform: rotate(360deg); } }
.status-texts h3 { font-size: 1.4rem; color: var(--text-main); font-weight: 800; }
.status-texts p { color: var(--text-muted); font-size: 1.05rem; margin-top: 6px; }

.lottery-drum-wrapper { position: relative; margin: 25px auto; padding: 18px; border-radius: 28px; background: linear-gradient(145deg, #1e293b, #0f172a); box-shadow: inset 0 2px 10px rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.7); }
.slot-inner-display { background: #0f172a; border: 3px solid var(--neon-gold); border-radius: 22px; padding: 40px; box-shadow: inset 0 0 50px rgba(0,0,0,0.9), 0 0 25px rgba(251, 191, 36, 0.4); transition: all 0.3s ease; }
.slot-inner-display.is-spinning { border-color: var(--neon-cyan); box-shadow: inset 0 0 50px rgba(0,0,0,0.9), 0 0 40px var(--neon-cyan-glow); transform: scale(1.02); }
.slot-inner-display h1 { font-size: 6rem; color: var(--neon-gold-light); letter-spacing: 12px; font-weight: 900; text-shadow: 0 0 30px rgba(251, 191, 36, 0.8); }

.digit-locked { display: inline-block; color: var(--neon-emerald) !important; text-shadow: 0 0 30px var(--neon-emerald-glow) !important; animation: popDigit 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popDigit { 0% { transform: scale(0.8); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

.winner-header-badge { background: rgba(52, 211, 153, 0.2); color: var(--neon-emerald); border: 1px solid rgba(52, 211, 153, 0.5); padding: 12px 28px; border-radius: 14px; font-weight: 800; font-size: 1.1rem; display: inline-block; margin-bottom: 25px; box-shadow: 0 0 25px var(--neon-emerald-glow); }
.winner-announcement-card { background: rgba(15, 23, 42, 0.8); border: 1px solid var(--border-glass); padding: 25px; border-radius: 18px; margin-top: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.winner-user-text { color: var(--text-main); font-size: 1.25rem; font-weight: 600; line-height: 1.6; }

.winner-celebration-active { animation: epicWinnerPulse 0.7s ease-in-out infinite alternate; border-color: var(--neon-emerald) !important; box-shadow: 0 0 50px var(--neon-emerald-glow), inset 0 0 30px rgba(52, 211, 153, 0.3) !important; }
@keyframes epicWinnerPulse { 0% { transform: scale(1); } 100% { transform: scale(1.03); } }

/* ========================================================
   PANEL DE NÚMEROS ULTRA LLAMATIVO, MODERNO Y COLORIDO
   ======================================================== */
.tickets-section { padding: 110px 6%; border-top: 1px solid var(--border-glass); background-color: rgba(15, 23, 42, 0.6); }
.ticket-layout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.numbers-panel-glass { background: var(--bg-card); backdrop-filter: blur(30px); border: 1px solid var(--border-glass); border-radius: 32px; padding: 45px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); position: relative; }

.grid-legend { display: flex; gap: 24px; margin-bottom: 28px; font-size: 0.95rem; color: var(--text-muted); font-weight: 700; background: rgba(15, 23, 42, 0.8); padding: 14px 20px; border-radius: 16px; border: 1px solid var(--border-glass); }
.legend-item { display: flex; align-items: center; gap: 10px; }
.dot { width: 14px; height: 14px; border-radius: 6px; }
.dot.free { background: #334155; border: 1px solid #475569; }
.dot.selected { background: var(--neon-cyan); box-shadow: 0 0 12px var(--neon-cyan-glow); }
.dot.taken { background: #0f172a; border: 1px dashed #64748b; }

/* CUADRÍCULA DE NÚMEROS ESTILO GAMING / TRADING */
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); gap: 12px; max-height: 500px; overflow-y: auto; padding-right: 8px; }
.numbers-grid::-webkit-scrollbar { width: 8px; }
.numbers-grid::-webkit-scrollbar-thumb { background: #475569; border-radius: 10px; }

.number-btn { 
    background: linear-gradient(145deg, #1e293b, #0f172a); 
    color: var(--text-main); 
    border: 1px solid var(--border-glass); 
    height: 58px; 
    border-radius: 16px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    cursor: pointer; 
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
}

.number-btn:hover:not(:disabled) { 
    border-color: var(--neon-cyan); 
    transform: translateY(-4px) scale(1.05); 
    background: linear-gradient(145deg, #0e7490, #164e63); 
    color: var(--neon-cyan); 
    box-shadow: 0 8px 20px var(--neon-cyan-glow); 
    z-index: 2;
}

/* NÚMERO SELECCIONADO (VIBRANTE Y LLAMATIVO) */
.number-btn.selected { 
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%) !important; 
    border-color: #67e8f9 !important; 
    color: #0f172a !important; 
    box-shadow: 0 0 25px var(--neon-cyan-glow); 
    transform: scale(1.08); 
    z-index: 3;
    animation: selectPulse 1.5s ease-in-out infinite alternate;
}

@keyframes selectPulse {
    0% { box-shadow: 0 0 15px var(--neon-cyan-glow); }
    100% { box-shadow: 0 0 30px var(--neon-cyan-glow), inset 0 0 10px rgba(255,255,255,0.5); }
}

/* NÚMERO OCUPADO */
.number-btn.taken { 
    background-color: #0b0f19 !important; 
    color: #475569 !important; 
    border-color: rgba(255,255,255,0.02) !important; 
    cursor: not-allowed; 
    text-decoration: line-through; 
    opacity: 0.3; 
    transform: none !important; 
    box-shadow: none !important; 
}

/* PANEL COMPRA */
.checkout-panel-glass { background: var(--bg-card); backdrop-filter: blur(30px); border: 1px solid var(--border-glass); border-radius: 32px; padding: 45px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); height: fit-content; position: relative; }
.checkout-panel-glass h3 { margin-bottom: 22px; font-size: 1.4rem; display: flex; align-items: center; gap: 12px; color: var(--neon-gold); font-weight: 800; }
.selected-numbers-box { background: rgba(15, 23, 42, 0.9); padding: 20px; border-radius: 16px; min-height: 110px; max-height: 180px; overflow-y: auto; border: 1px solid var(--border-glass); margin-bottom: 22px; font-size: 1.05rem; color: var(--neon-cyan); font-weight: 700; letter-spacing: 0.5px; box-shadow: inset 0 2px 8px rgba(0,0,0,0.6); }
.price-calculation-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; border-top: 1px solid var(--border-glass); padding-top: 22px; }
.price-calculation-row strong { color: var(--neon-emerald); font-size: 1.8rem; font-weight: 900; text-shadow: 0 0 20px var(--neon-emerald-glow); }
.secure-checkout-note { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; }

/* PANEL DE ADMINISTRADOR */
.admin-view-container { padding: 60px 6%; }
.admin-top-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-panels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.admin-card-glass { background: var(--bg-card); backdrop-filter: blur(30px); border: 1px solid var(--border-glass); border-radius: 32px; padding: 45px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.card-admin-icon { width: 60px; height: 60px; background: rgba(244, 114, 182, 0.15); border: 1px solid rgba(244, 114, 182, 0.4); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--neon-pink); font-size: 1.4rem; margin-bottom: 22px; box-shadow: 0 0 20px rgba(244, 114, 182, 0.3); }
.admin-card-glass h3 { margin-bottom: 14px; font-size: 1.5rem; font-weight: 900; }
.admin-card-glass p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.pending-table-container { max-height: 320px; overflow-y: auto; margin-top: 22px; }

/* MODAL AUTENTICACIÓN */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(20px); display: flex; justify-content: center; align-items: center; z-index: 2000; animation: fadeInModal 0.3s ease; }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }

.modal-card-glass { background: #1e293b; border: 1px solid var(--border-glass); padding: 50px; border-radius: 32px; width: 100%; max-width: 460px; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.8); }
.close-modal-btn { position: absolute; top: 24px; right: 26px; background: none; border: none; color: var(--text-muted); font-size: 1.8rem; cursor: pointer; transition: color 0.2s; }
.close-modal-btn:hover { color: var(--text-main); }
.modal-header-icon { width: 55px; height: 55px; background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.4); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--neon-cyan); font-size: 1.4rem; margin-bottom: 22px; box-shadow: 0 0 20px var(--neon-cyan-glow); }
.modal-card-glass h2 { margin-bottom: 26px; font-size: 1.9rem; font-weight: 900; }
.form-group-custom { margin-bottom: 24px; }
.form-group-custom label { display: block; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.form-group-custom input { width: 100%; padding: 15px 20px; background: rgba(15, 23, 42, 0.9); border: 1px solid var(--border-glass); border-radius: 14px; color: white; font-size: 1.1rem; transition: all 0.25s; }
.form-group-custom input:focus { outline: none; border-color: var(--neon-cyan); box-shadow: 0 0 0 4px var(--neon-cyan-glow); }
.switch-auth-text { text-align: center; margin-top: 26px; font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.switch-auth-text a { color: var(--neon-cyan); text-decoration: none; font-weight: 800; text-shadow: 0 0 10px var(--neon-cyan-glow); }
.hidden { display: none !important; }

@media (max-width: 900px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .ticket-layout-grid { grid-template-columns: 1fr; }
    .admin-panels-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   ANIMACIONES Y MOVIMIENTOS DINÁMICOS EXTRA
   ======================================================== */

/* 1. Efecto de flotación suave continua para tarjetas principales */
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.jackpot-card-glass {
    animation: floatCard 6s ease-in-out infinite, borderGlow 4s ease-in-out infinite alternate;
}

/* 2. Onda expansiva de energía para botones principales al pasar el cursor */
@keyframes rippleGlow {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.btn-primary-gradient:hover {
    animation: rippleGlow 1.5s infinite;
}

/* 3. Animación de entrada escalonada y deslizante para elementos */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.numbers-panel-glass, .checkout-panel-glass, .draw-container-glass {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 4. Efecto de latido rítmico para el monto del pozo acumulado */
@keyframes jackpotHeartbeat {
    0%, 100% { transform: scale(1); text-shadow: 0 0 35px rgba(251, 191, 36, 0.6); }
    50% { transform: scale(1.02); text-shadow: 0 0 50px rgba(251, 191, 36, 0.9); }
}

.jackpot-amount {
    animation: jackpotHeartbeat 3s ease-in-out infinite;
}

/* 5. Transición fluida y magnética al hacer hover en los números */
.number-btn {
    position: relative;
    overflow: hidden;
}

.number-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.number-btn:active::after {
    animation: rippleClick 0.4s ease-out;
}

@keyframes rippleClick {
    0% { transform: scale(0, 0); opacity: 0.8; }
    100% { transform: scale(30, 30); opacity: 0; }
}

/* 6. Animación de rotación sutil para los iconos destacados */
@keyframes subtleRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

.logo-icon:hover {
    animation: subtleRotate 0.5s ease-in-out infinite;
}

.promo-banner-glass {
    position: relative;
    max-width: 1100px;
    margin: 20px auto 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--neon-gold);
    border-radius: 20px;
    padding: 16px 24px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
    animation: slideDownFade 0.6s cubic-bezier(0.16, 1, 0.3, 1), borderPulse 3s infinite alternate;
    z-index: 90;
}

@keyframes borderPulse {
    0% { border-color: rgba(251, 191, 36, 0.4); }
    100% { border-color: rgba(251, 191, 36, 1); box-shadow: 0 0 25px rgba(251, 191, 36, 0.4); }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--text-main);
}

.banner-badge {
    background: var(--gradient-gold);
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.banner-content p {
    font-size: 1rem;
    font-weight: 600;
}

.banner-content strong {
    color: var(--neon-gold);
}

.banner-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.banner-close-btn:hover {
    color: var(--neon-pink);
}