@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Black+Ops+One&family=Roboto+Condensed:wght@400;700;900&display=swap');

:root {
    --rojo: #cc0000;
    --rojo-oscuro: #990000;
    --amarillo: #ffea00;
    --negro: #111;
    --blanco: #fff;
    --verde: #00c853;
    --naranja: #ff6d00;
}

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: var(--negro);
    color: var(--blanco);
    line-height: 1.5;
    overflow-x: hidden;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🍺</text></svg>"), auto;
}

a, button, .galeria-item, .precio-card, .evento-card, .porque-card, .testimonio-card, .hero-feature, .me-apunto-box {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🍻</text></svg>"), pointer;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes neon { 0%, 100% { text-shadow: 0 0 10px var(--amarillo), 0 0 20px var(--amarillo), 0 0 40px var(--rojo); } 50% { text-shadow: 0 0 20px var(--amarillo), 0 0 40px var(--amarillo), 0 0 80px var(--rojo); } }
@keyframes glitch { 0% { transform: translate(0); } 20% { transform: translate(-2px, 2px); } 40% { transform: translate(-2px, -2px); } 60% { transform: translate(2px, 2px); } 80% { transform: translate(2px, -2px); } 100% { transform: translate(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scan { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes disco { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--negro);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.loader-beer { font-size: 5rem; animation: bounce 0.8s infinite; }
#loader p { margin-top: 20px; font-family: 'Black Ops One', cursive; color: var(--amarillo); letter-spacing: 2px; }

/* ===== BARRA PROGRESO ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--amarillo), var(--rojo), var(--verde)); width: 0%; z-index: 10001; }

/* ===== UTILIDADES ===== */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; position: relative; z-index: 2; }
.section-title { font-family: 'Bangers', cursive; font-size: 3rem; text-align: center; color: var(--amarillo); text-shadow: 4px 4px 0 var(--negro), 0 0 20px rgba(255,234,0,0.4); margin-bottom: 10px; letter-spacing: 3px; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #ccc; margin-bottom: 40px; font-weight: 700; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 36px; font-family: 'Black Ops One', cursive; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; border: 3px solid var(--negro); box-shadow: 5px 5px 0 var(--negro); transition: all 0.15s ease; text-decoration: none; min-height: 48px; }
.btn:hover { transform: translateY(-3px); box-shadow: 7px 7px 0 var(--negro); }
.btn:active { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--negro); }
.btn-amarillo { background: var(--amarillo); color: var(--negro); }
.btn-rojo { background: var(--rojo); color: var(--blanco); }
.btn-negro { background: var(--negro); color: var(--amarillo); border-color: var(--amarillo); }

/* ===== NAV ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,0,0,0.95); border-bottom: 3px solid var(--amarillo); padding: 12px 0; transition: all 0.3s; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--amarillo); text-decoration: none; letter-spacing: 2px; text-shadow: 2px 2px 0 var(--rojo); animation: float 3s ease-in-out infinite; }
.menu-toggle { display: none; background: var(--amarillo); color: var(--negro); border: 3px solid var(--negro); font-size: 1.5rem; width: 48px; height: 48px; font-family: 'Black Ops One', cursive; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--blanco); text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 1px; transition: color 0.2s; position: relative; display: block; padding: 8px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 3px; background: var(--amarillo); transition: width 0.3s; }
.nav-links a:hover { color: var(--amarillo); }
.nav-links a:hover::after { width: 100%; }
.nav-admin { background: var(--rojo); padding: 6px 14px; border: 2px solid var(--amarillo); }
.nav-admin::after, #nav-modo-fiesta::after { display: none !important; }
#nav-modo-fiesta { background: linear-gradient(135deg, #ff00ff, #00ffff); color: var(--blanco); padding: 8px 16px; border: 2px solid var(--blanco); animation: pulse 1.5s infinite; }

/* ===== HERO ===== */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 10px, transparent 10px, transparent 20px); pointer-events: none; }
.hero::after { content: '🍺🍻🥂🍷🥃🍹'; position: absolute; font-size: 2rem; opacity: 0.08; inset: 0; display: flex; flex-wrap: wrap; justify-content: space-around; align-content: space-around; pointer-events: none; z-index: 0; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: var(--amarillo); color: var(--negro); padding: 8px 24px; font-family: 'Black Ops One', cursive; font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; border: 3px solid var(--negro); margin-bottom: 20px; transform: rotate(-2deg); animation: pulse 2s infinite; }
.hero h1 { font-family: 'Bangers', cursive; font-size: clamp(3.5rem, 12vw, 7rem); color: var(--blanco); text-shadow: 5px 5px 0 var(--negro), 0 0 40px rgba(0,0,0,0.5); letter-spacing: 5px; line-height: 0.95; margin-bottom: 15px; animation: neon 2s infinite; }
.hero h1:hover { animation: neon 2s infinite, glitch 0.3s 3; }
.hero-slogan { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: var(--amarillo); margin-bottom: 30px; min-height: 2em; }
.hero-slogan::after { content: '|'; animation: blink 1s infinite; color: var(--amarillo); }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.me-apunto-box { margin-top: 30px; background: rgba(0,0,0,0.5); padding: 20px; border: 3px solid var(--amarillo); display: inline-block; }
.me-apunto-box p { font-size: 1.1rem; margin-bottom: 12px; font-weight: 700; }
.me-apunto-box span { color: var(--amarillo); font-family: 'Black Ops One', cursive; font-size: 1.3rem; }
.hero-features { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.hero-feature { background: var(--negro); border: 3px solid var(--amarillo); padding: 18px 28px; min-width: 160px; transition: transform 0.3s, box-shadow 0.3s; }
.hero-feature:hover { transform: translateY(-8px) rotate(2deg); box-shadow: 0 10px 30px rgba(255,234,0,0.3); }
.hero-feature .emoji { font-size: 2.5rem; display: block; margin-bottom: 5px; animation: float 2.5s infinite; }
.hero-feature .text { font-family: 'Black Ops One', cursive; font-size: 1.2rem; color: var(--amarillo); }

/* ===== STATS ===== */
.stats { background: linear-gradient(135deg, var(--negro) 0%, #2a0000 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; }
.stat-item { background: rgba(255,255,255,0.05); border: 3px solid var(--amarillo); padding: 35px 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.stat-item:hover { transform: translateY(-10px); box-shadow: 0 0 30px rgba(255,234,0,0.3); }
.stat-num { font-family: 'Black Ops One', cursive; font-size: 3.5rem; color: var(--amarillo); line-height: 1; }
.stat-unit { font-family: 'Black Ops One', cursive; font-size: 2rem; color: var(--rojo); }
.stat-item p { margin-top: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ===== WAVE ===== */
.wave-divider { width: 100%; height: 100px; overflow: hidden; line-height: 0; background: var(--negro); }
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 100px; }
.wave-divider path { fill: var(--blanco); }
.wave-divider.invert { transform: rotate(180deg); background: var(--blanco); }
.wave-divider.invert path { fill: var(--rojo); }

/* ===== URGENTE ===== */
.urgente { background: var(--blanco); color: var(--negro); padding: 60px 0; }
.urgente-box { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); border: 5px solid var(--amarillo); padding: 45px; text-align: center; box-shadow: 0 0 40px rgba(204,0,0,0.4); position: relative; overflow: hidden; animation: pulse 2s infinite; }
.urgente-box::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shine 3s infinite; }
.urgente-label { display: inline-block; background: var(--amarillo); color: var(--negro); padding: 8px 25px; font-family: 'Black Ops One', cursive; font-size: 1.1rem; letter-spacing: 3px; border: 3px solid var(--negro); margin-bottom: 20px; position: relative; z-index: 1; }
.urgente-box h2 { font-family: 'Bangers', cursive; font-size: 2.8rem; color: var(--blanco); text-shadow: 3px 3px 0 var(--negro); margin-bottom: 15px; position: relative; z-index: 1; }
.urgente-box h2 span { color: var(--amarillo); font-size: 3.5rem; }
.countdown { display: flex; justify-content: center; gap: 20px; margin: 30px 0; flex-wrap: wrap; position: relative; z-index: 1; }
.countdown-item { background: var(--negro); border: 3px solid var(--amarillo); padding: 18px 25px; min-width: 90px; }
.countdown-item span { display: block; font-family: 'Black Ops One', cursive; font-size: 2.5rem; color: var(--amarillo); line-height: 1; }
.countdown-item small { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #aaa; }

/* ===== PRECIOS ===== */
.precios { background: var(--blanco); color: var(--negro); }
.precios .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.precios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; perspective: 1000px; }
.precio-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; position: relative; transition: transform 0.1s; transform-style: preserve-3d; overflow: hidden; }
.precio-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.precio-card.destacado { border-color: var(--rojo); box-shadow: 0 0 25px rgba(204,0,0,0.3); animation: pulse 2s infinite; }
.precio-card .emoji { font-size: 3.5rem; margin-bottom: 10px; transition: transform 0.3s; transform: translateZ(30px); }
.precio-card:hover .emoji { transform: translateZ(50px) scale(1.2) rotate(10deg); }
.precio-card h3 { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--amarillo); letter-spacing: 2px; margin-bottom: 5px; transform: translateZ(20px); }
.precio-card .desc { color: #aaa; font-size: 0.95rem; margin-bottom: 15px; }
.precio-card .old-price { font-size: 1.2rem; color: #888; text-decoration: line-through; text-decoration-color: var(--rojo); text-decoration-thickness: 3px; }
.precio-card .price { font-family: 'Bangers', cursive; font-size: 3.5rem; color: var(--rojo); line-height: 1; transform: translateZ(40px); }
.precio-card .unit { font-weight: 900; color: var(--amarillo); text-transform: uppercase; }
.precio-card .tag { position: absolute; top: -12px; right: -12px; background: var(--amarillo); color: var(--negro); font-family: 'Black Ops One', cursive; font-size: 0.8rem; padding: 6px 12px; border: 2px solid var(--negro); transform: rotate(8deg); animation: pulse 2s infinite; }
.scan-line { position: absolute; left: 0; right: 0; height: 30%; background: linear-gradient(180deg, transparent, rgba(255,234,0,0.3), transparent); animation: scan 0.8s linear; pointer-events: none; z-index: 10; }

/* ===== PORQUE ===== */
.porque { background: linear-gradient(180deg, #1a1a1a 0%, var(--negro) 100%); }
.porque-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.porque-card { background: var(--blanco); color: var(--negro); padding: 35px; border: 4px solid var(--amarillo); text-align: center; box-shadow: 6px 6px 0 var(--rojo); transition: transform 0.3s; }
.porque-card:hover { transform: rotate(-2deg) translateY(-5px); }
.porque-card .emoji { font-size: 4rem; margin-bottom: 15px; }
.porque-card h3 { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--rojo); margin-bottom: 12px; }
.porque-card p { font-size: 1.05rem; color: #333; }

/* ===== SOCIOS ===== */
.socios { background: var(--negro); border-top: 5px solid var(--amarillo); border-bottom: 5px solid var(--amarillo); }
.socios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.socio-card { background: var(--amarillo); color: var(--negro); padding: 40px; border: 5px solid var(--blanco); box-shadow: 8px 8px 0 var(--rojo); text-align: center; transition: transform 0.3s; }
.socio-card:hover { transform: scale(1.03); }
.socio-card .crown { font-size: 3.5rem; animation: float 2s infinite; }
.socio-card h3 { font-family: 'Bangers', cursive; font-size: 2.5rem; margin-bottom: 10px; }
.socio-card .precio { font-family: 'Black Ops One', cursive; font-size: 4rem; line-height: 1; }
.socio-card .periodo { font-weight: 900; text-transform: uppercase; letter-spacing: 3px; }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px; margin-bottom: 10px; background: #1a1a1a; border-left: 5px solid var(--verde); font-size: 1.05rem; transition: transform 0.2s; }
.benefits-list li:hover { transform: translateX(10px); }
.benefits-list .check { color: var(--verde); font-size: 1.3rem; flex-shrink: 0; }
.benefits-list strong { color: var(--amarillo); }

/* ===== EVENTOS ===== */
.eventos { background: var(--rojo); position: relative; }
.eventos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.evento-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 30px 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.evento-card:hover { transform: translateY(-8px) rotate(2deg); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.evento-dia { display: inline-block; background: var(--amarillo); color: var(--negro); padding: 6px 18px; font-family: 'Black Ops One', cursive; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 15px; border: 2px solid var(--blanco); }
.evento-card h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--amarillo); margin-bottom: 10px; }
.evento-card p { color: #ccc; font-size: 1rem; }

/* ===== GALERIA ===== */
.galeria { background: var(--blanco); color: var(--negro); }
.galeria .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.galeria-item { background: var(--negro); border: 4px solid var(--amarillo); min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 4rem; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.galeria-item:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 2; }
.galeria-item span { font-size: 1rem; font-weight: 900; color: var(--amarillo); text-transform: uppercase; margin-top: 10px; }
.galeria-item.grande { grid-column: span 2; grid-row: span 2; font-size: 6rem; }

/* ===== TESTIMONIOS ===== */
.testimonios { background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%); }
.testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonio-card { background: var(--blanco); color: var(--negro); padding: 30px; border: 4px solid var(--amarillo); box-shadow: 6px 6px 0 var(--rojo); position: relative; transition: transform 0.3s; }
.testimonio-card:hover { transform: translateY(-8px); }
.testimonio-card::before { content: '"'; position: absolute; top: -10px; left: 15px; font-family: 'Bangers', cursive; font-size: 5rem; color: var(--rojo); opacity: 0.3; }
.estrellas { color: var(--amarillo); font-size: 1.5rem; text-shadow: 1px 1px 0 var(--negro); margin-bottom: 15px; }
.testimonio-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 20px; color: #333; }
.testimonio-card .autor { font-weight: 900; color: var(--rojo); text-transform: uppercase; letter-spacing: 1px; }

/* ===== RESERVAS ===== */
.reservas { background: linear-gradient(180deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.reserva-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.reserva-info h3 { font-family: 'Bangers', cursive; font-size: 2rem; color: var(--amarillo); margin-bottom: 15px; }
.reserva-info p { font-size: 1.1rem; margin-bottom: 20px; }
.reserva-steps { list-style: none; margin-bottom: 30px; }
.reserva-steps li { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px dashed rgba(255,255,255,0.3); transition: transform 0.2s; }
.reserva-steps li:hover { transform: translateX(10px); }
.reserva-steps .num { background: var(--amarillo); color: var(--negro); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-family: 'Black Ops One', cursive; border-radius: 50%; flex-shrink: 0; }
.reserva-form { background: var(--blanco); color: var(--negro); padding: 35px; border: 5px solid var(--amarillo); box-shadow: 10px 10px 0 var(--negro); transition: transform 0.3s; }
.reserva-form:hover { transform: translateY(-5px); }
.reserva-form h3 { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--rojo); margin-bottom: 25px; text-align: center; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 900; margin-bottom: 6px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px; border: 3px solid var(--negro); font-family: 'Roboto Condensed', sans-serif; font-size: 1rem; background: #f9f9f9; min-height: 48px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--rojo); background: var(--blanco); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-status { margin-top: 15px; padding: 14px; font-weight: 700; text-align: center; border: 3px solid var(--negro); display: none; }
.form-status.ok { display: block; background: var(--verde); color: var(--blanco); }
.form-status.error { display: block; background: var(--rojo); color: var(--blanco); }

/* ===== FOOTER ===== */
.footer { background: var(--negro); border-top: 5px solid var(--amarillo); padding: 50px 0 90px; text-align: center; }
.footer h2 { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--amarillo); margin-bottom: 20px; }
.footer-info { display: flex; justify-content: center; gap: 40px; margin-bottom: 25px; flex-wrap: wrap; font-size: 1.1rem; }
.footer-info span { display: flex; align-items: center; gap: 8px; }
.reloj-box { background: var(--amarillo); color: var(--negro); display: inline-block; padding: 12px 25px; margin: 20px 0; font-weight: 900; font-family: 'Black Ops One', cursive; letter-spacing: 2px; border: 3px solid var(--blanco); }
.reloj-box span:last-child { color: var(--rojo); font-size: 1.3rem; }
.footer .legal { color: #888; font-size: 0.85rem; margin-top: 20px; }

/* ===== BOTONES FLOTANTES ===== */
.fab-llamar { position: fixed; bottom: 25px; right: 25px; width: 65px; height: 65px; background: var(--verde); color: var(--blanco); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; text-decoration: none; border: 4px solid var(--blanco); box-shadow: 0 5px 20px rgba(0,0,0,0.4); z-index: 997; animation: pulse 2s infinite; transition: transform 0.2s; }
.fab-llamar:hover { transform: scale(1.1); }

.modo-fiesta-btn { position: fixed; bottom: 100px; right: 25px; width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #ff00ff, #00ffff); border: 5px solid var(--blanco); color: var(--blanco); font-size: 2.2rem; display: flex; align-items: center; justify-content: center; z-index: 2600; box-shadow: 0 0 40px rgba(255,0,255,1), 0 0 80px rgba(0,255,255,0.7); transition: transform 0.3s; animation: pulse 0.8s infinite; }
.modo-fiesta-btn:hover { transform: scale(1.25) rotate(20deg); }
.modo-fiesta-btn.activo { background: linear-gradient(135deg, #ff0000, #ffff00); animation: pulse 0.4s infinite; }
.modo-fiesta-hero { background: linear-gradient(135deg, #ff00ff, #00ffff); color: var(--blanco); border-color: var(--blanco); animation: pulse 1s infinite; text-shadow: 2px 2px 0 var(--negro); }

/* ===== OVERLAY MODO FIESTA ===== */
.fiesta-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 1; display: none; }
.fiesta-light { position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(100px); opacity: 0.6; animation: moveLight 3s ease-in-out infinite alternate; }
.fiesta-light-1 { background: #ff00ff; top: 0; left: 0; }
.fiesta-light-2 { background: #00ffff; top: 0; right: 0; animation-delay: -1s; }
.fiesta-light-3 { background: #ffff00; bottom: 0; left: 30%; animation-delay: -2s; }
.fiesta-light-4 { background: #ff0000; bottom: 20%; right: 20%; animation-delay: -0.5s; }
@keyframes moveLight { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 100px) scale(1.3); } }
body.modo-fiesta .hero { animation: disco 3s linear infinite; }
body.modo-fiesta .section-title, body.modo-fiesta .hero h1 { animation: neon 0.5s infinite; }
body.modo-fiesta .precio-card, body.modo-fiesta .evento-card { animation: disco 2s linear infinite; }
body.modo-fiesta .urgente-box { animation: flash 0.5s infinite alternate; }
body.modo-fiesta .btn { animation: pulse 0.5s infinite; }

/* ===== BURBUJAS ===== */
#burbujas-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.25; }

/* ===== CONFETI ===== */
#confeti-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2500; }

/* ===== TOASTS ===== */
#toast-container { position: fixed; top: 100px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--amarillo); color: var(--negro); padding: 16px 24px; border: 3px solid var(--negro); box-shadow: 5px 5px 0 var(--rojo); font-weight: 900; min-width: 280px; animation: slideIn 0.4s ease; }
.toast.error { background: var(--rojo); color: var(--blanco); }
.toast.success { background: var(--verde); color: var(--blanco); }
@keyframes slideIn { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== CONTADOR EN VIVO ===== */
.live-counter { position: fixed; top: 100px; left: 20px; background: var(--negro); color: var(--amarillo); padding: 10px 16px; border: 3px solid var(--amarillo); font-weight: 900; text-transform: uppercase; font-size: 0.85rem; z-index: 999; display: flex; align-items: center; gap: 8px; box-shadow: 4px 4px 0 var(--rojo); }
.live-dot { width: 10px; height: 10px; background: var(--verde); border-radius: 50%; animation: blink 1s infinite; }

/* ===== ADMIN ===== */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--negro) 0%, #2a0000 100%); padding: 20px; }
.login-box { background: var(--blanco); color: var(--negro); padding: 45px; border: 5px solid var(--amarillo); box-shadow: 12px 12px 0 var(--rojo); width: 100%; max-width: 420px; text-align: center; }
.login-box h1 { font-family: 'Bangers', cursive; font-size: 2.5rem; color: var(--rojo); margin-bottom: 5px; }
.login-box .subtitle { margin-bottom: 25px; color: #555; font-weight: 700; }
.login-box .form-group { text-align: left; }
.login-box .btn { width: 100%; margin-top: 10px; }

.admin-panel { display: none; min-height: 100vh; background: #f5f5f5; color: var(--negro); }
.admin-header { background: var(--negro); color: var(--blanco); padding: 20px 0; border-bottom: 4px solid var(--amarillo); }
.admin-header .container { display: flex; justify-content: space-between; align-items: center; }
.admin-header h1 { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--amarillo); letter-spacing: 2px; }
.admin-toggle { display: none; background: var(--amarillo); color: var(--negro); }
.admin-user { display: flex; align-items: center; gap: 15px; }
.admin-main { padding: 35px 0; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 35px; }
.stat-card { background: var(--blanco); border: 3px solid var(--negro); padding: 20px; text-align: center; box-shadow: 4px 4px 0 var(--amarillo); }
.stat-card .number { font-family: 'Black Ops One', cursive; font-size: 2.5rem; color: var(--rojo); }
.stat-card .label { font-weight: 900; text-transform: uppercase; font-size: 0.9rem; }
.admin-filters { display: flex; gap: 12px; margin-bottom: 25px; flex-wrap: wrap; }
.admin-section { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; margin-bottom: 35px; box-shadow: 6px 6px 0 var(--amarillo); }
.admin-section-title { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--rojo); margin-bottom: 20px; letter-spacing: 2px; }
.admin-form .form-group { margin-bottom: 15px; }
.admin-form .form-group label { display: block; font-weight: 900; margin-bottom: 5px; text-transform: uppercase; font-size: 0.85rem; }
.admin-form .form-group input { width: 100%; padding: 12px; border: 3px solid var(--negro); font-size: 1rem; }
.admin-form .btn { margin-top: 5px; }
.filter-btn { padding: 10px 20px; border: 3px solid var(--negro); background: var(--blanco); font-family: 'Roboto Condensed', sans-serif; font-weight: 900; cursor: pointer; text-transform: uppercase; }
.filter-btn.active { background: var(--amarillo); }
.reservas-table-wrapper { background: var(--blanco); border: 4px solid var(--negro); overflow-x: auto; }
.reservas-table { width: 100%; border-collapse: collapse; min-width: 1000px; }
.reservas-table th, .reservas-table td { padding: 14px; text-align: left; border-bottom: 2px solid #ddd; }
.reservas-table th { background: var(--negro); color: var(--amarillo); font-family: 'Black Ops One', cursive; text-transform: uppercase; letter-spacing: 1px; }
.reservas-table tr:hover { background: #f9f9f9; }
.codigo-reserva { font-family: 'Black Ops One', cursive; background: var(--amarillo); color: var(--negro); padding: 4px 10px; border: 2px solid var(--negro); font-size: 0.95rem; letter-spacing: 1px; }
.estado { display: inline-block; padding: 5px 12px; font-weight: 900; text-transform: uppercase; font-size: 0.8rem; border: 2px solid var(--negro); }
.estado.pendiente { background: var(--amarillo); color: var(--negro); }
.estado.confirmada { background: var(--verde); color: var(--blanco); }
.estado.cancelada { background: var(--rojo); color: var(--blanco); }
.acciones { display: flex; gap: 8px; flex-wrap: wrap; }
.accion-btn { padding: 8px 14px; border: 2px solid var(--negro); font-family: 'Roboto Condensed', sans-serif; font-weight: 900; cursor: pointer; font-size: 0.85rem; text-transform: uppercase; min-height: 40px; }
.accion-btn.confirmar { background: var(--verde); color: var(--blanco); }
.accion-btn.cancelar { background: var(--rojo); color: var(--blanco); }
.accion-btn.email { background: var(--amarillo); color: var(--negro); }
.accion-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.empty-state { text-align: center; padding: 60px 20px; color: #666; font-size: 1.1rem; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-box { background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); box-shadow: 12px 12px 0 var(--rojo); padding: 35px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; }
.modal-box h2 { font-family: 'Bangers', cursive; font-size: 2rem; color: var(--rojo); margin-bottom: 25px; text-align: center; }
.modal-box .form-group input[readonly] { background: #e9e9e9; }
.modal-actions { display: flex; gap: 15px; justify-content: center; margin-top: 25px; flex-wrap: wrap; }
.modal-nota { margin-top: 20px; font-size: 0.9rem; color: #555; text-align: center; background: #f5f5f5; padding: 12px; border-left: 4px solid var(--amarillo); }

/* ===== MENU DEL DIA ===== */
.menu-dia { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.menu-dia-card { background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 30px; box-shadow: 10px 10px 0 var(--rojo); max-width: 700px; margin: 0 auto; }
.menu-plato { display: flex; align-items: center; gap: 20px; padding: 20px; border-bottom: 3px dashed #ddd; }
.menu-plato:last-child { border-bottom: none; }
.menu-emoji { font-size: 3rem; }
.menu-plato h3 { font-family: 'Bangers', cursive; font-size: 1.5rem; color: var(--rojo); flex: 1; }
.menu-plato p { color: #666; }
.menu-precio { font-family: 'Black Ops One', cursive; font-size: 2rem; color: var(--verde); }
.menu-precio.invisible { visibility: hidden; }

/* ===== RULETA ===== */
.ruleta { background: var(--rojo); }
.ruleta-box { background: var(--negro); border: 5px solid var(--amarillo); padding: 40px; text-align: center; max-width: 500px; margin: 0 auto; box-shadow: 10px 10px 0 var(--negro); }
.ruleta-display { font-size: 6rem; margin-bottom: 20px; transition: transform 0.3s; }
.ruleta-display.girando { animation: rotate 0.2s linear infinite; }
.ruleta-box p { margin-top: 15px; font-size: 1.2rem; font-weight: 700; color: var(--amarillo); }

/* ===== JUEGO ===== */
.juego { background: var(--blanco); color: var(--negro); }
.juego .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.juego-box { background: var(--negro); border: 5px solid var(--amarillo); padding: 30px; max-width: 600px; margin: 0 auto; text-align: center; }
.juego-puntuacion { display: flex; justify-content: space-around; margin-bottom: 20px; color: var(--amarillo); font-size: 1.3rem; font-family: 'Black Ops One', cursive; }
.juego-area { width: 100%; height: 300px; background: #222; border: 3px solid var(--amarillo); position: relative; overflow: hidden; margin-bottom: 20px; }
.cerveza-juego { position: absolute; font-size: 2.5rem; cursor: pointer; animation: float 1s infinite; }
.cerveza-juego:hover { transform: scale(1.3); }

/* ===== MAPA ===== */
.mapa { background: linear-gradient(180deg, var(--negro) 0%, #1a1a1a 100%); }
.mapa-card { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 30px; box-shadow: 10px 10px 0 var(--rojo); }
.mapa-visual { background: var(--rojo); min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 6rem; border: 4px solid var(--negro); }
.mapa-visual iframe { width: 100%; height: 100%; min-height: 250px; border: 0; }
.mapa-visual span { font-family: 'Bangers', cursive; font-size: 1.5rem; color: var(--amarillo); }
.mapa-info p { margin-bottom: 12px; font-size: 1.1rem; }

/* ===== FAQ ===== */
.faq { background: var(--negro); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--blanco); color: var(--negro); border: 3px solid var(--amarillo); padding: 25px; margin-bottom: 15px; box-shadow: 5px 5px 0 var(--rojo); transition: transform 0.2s; }
.faq-item:hover { transform: translateX(10px); }
.faq-item h3 { font-family: 'Bangers', cursive; font-size: 1.4rem; color: var(--rojo); margin-bottom: 8px; }

/* ===== SOCIAL SHARE ===== */
.social-share { display: flex; justify-content: center; gap: 15px; margin: 25px 0; flex-wrap: wrap; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 25px; left: 25px; width: 55px; height: 55px; background: var(--amarillo); color: var(--negro); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; text-decoration: none; border: 4px solid var(--negro); box-shadow: 0 5px 20px rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-5px); }

/* ===== MOUSE TRAIL ===== */
#mouse-trail { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }
.trail-particle { position: absolute; font-size: 1.2rem; pointer-events: none; animation: fadeTrail 1s forwards; }
@keyframes fadeTrail { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(0) translateY(20px); } }

/* ===== SCROLL PORCENTAJE ===== */
.scroll-porcentaje { position: fixed; bottom: 100px; right: 25px; width: 60px; height: 60px; background: var(--negro); border: 3px solid var(--amarillo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Black Ops One', cursive; font-size: 0.9rem; color: var(--amarillo); z-index: 996; box-shadow: 0 5px 20px rgba(0,0,0,0.4); }

/* ===== GALERIA REAL ===== */
.galeria-vacia {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.2rem;
    font-weight: 700;
    background: #f5f5f5;
    border: 3px dashed #ccc;
}

.galeria-item-real {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--amarillo);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

.galeria-item-real img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galeria-item-real:hover img {
    transform: scale(1.1);
}

.galeria-item-real span {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.75);
    color: var(--amarillo);
    padding: 10px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ===== SELECTOR DE MESAS ===== */
.mesa-selector-box {
    background: #f9f9f9;
    padding: 20px;
    border: 3px solid var(--negro);
}

.mesa-selector-box label small {
    color: #666;
    font-weight: 400;
    text-transform: none;
}

.mesa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.mesa-btn {
    aspect-ratio: 1;
    border: 3px solid var(--negro);
    background: var(--verde);
    color: var(--blanco);
    font-family: 'Black Ops One', cursive;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 3px 3px 0 var(--negro);
}

.mesa-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 var(--negro);
    background: #00e676;
}

.mesa-btn.ocupada {
    background: #888;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.mesa-btn.seleccionada {
    background: var(--amarillo);
    color: var(--negro);
    transform: scale(1.05);
}

.mesa-leyenda {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 700;
}

.mesa-leyenda span span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--negro);
    margin-right: 5px;
    vertical-align: middle;
}

.mesa-libre { background: var(--verde); }
.mesa-ocupada { background: #888; }
.mesa-seleccionada { background: var(--amarillo); }

/* ===== CUPONES ===== */
.cupon-row {
    display: flex;
    gap: 10px;
}

.cupon-row input {
    flex: 1;
}

.cupon-row .btn {
    padding: 14px 24px;
}

.cupon-info {
    margin-top: 10px;
    padding: 10px;
    font-weight: 700;
    font-size: 0.95rem;
}

.cupon-info.ok {
    background: rgba(0, 200, 83, 0.15);
    color: var(--verde);
    border-left: 4px solid var(--verde);
}

.cupon-info.error {
    background: rgba(204, 0, 0, 0.15);
    color: var(--rojo);
    border-left: 4px solid var(--rojo);
}

/* ===== TESTIMONIOS FORMULARIO ===== */
.testimonio-form-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--blanco);
    color: var(--negro);
    padding: 30px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--rojo);
}

.testimonio-form-box h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6rem;
    color: var(--rojo);
    margin-bottom: 20px;
    text-align: center;
}

.estrellas-input {
    display: flex;
    gap: 5px;
}

.estrellas-input button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.estrellas-input button:hover,
.estrellas-input button.activa {
    color: var(--amarillo);
    text-shadow: 1px 1px 0 var(--negro);
    transform: scale(1.2);
}

/* ===== QR Y NOTIFICACIONES FOOTER ===== */
.qr-carta-box {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--amarillo);
    display: inline-block;
}

.qr-carta-box p {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--amarillo);
}

.qr-carta-img {
    width: 160px;
    height: 160px;
    border: 4px solid var(--blanco);
    background: var(--blanco);
}

/* ===== ADMIN GALERIA ===== */
.galeria-admin-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.galeria-admin-item {
    border: 3px solid var(--negro);
    background: var(--negro);
    overflow: hidden;
}

.galeria-admin-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.galeria-admin-info {
    padding: 10px;
    color: var(--blanco);
}

.galeria-admin-info p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== ADMIN CUPONES ===== */
.cupones-list {
    margin-top: 25px;
    display: grid;
    gap: 12px;
}

.cupon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 3px solid var(--negro);
    background: #f9f9f9;
}

.cupon-item.inactivo {
    opacity: 0.6;
    background: #eee;
}

.cupon-item strong {
    font-family: 'Black Ops One', cursive;
    font-size: 1.2rem;
    color: var(--rojo);
    display: block;
}

.cupon-item span {
    font-weight: 900;
    color: var(--verde);
}

.cupon-item small {
    display: block;
    color: #666;
}

/* ===== ADMIN TESTIMONIOS ===== */
.testimonios-admin-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonio-admin-item {
    background: #f9f9f9;
    border: 3px solid var(--negro);
    padding: 20px;
    box-shadow: 4px 4px 0 var(--amarillo);
}

.testimonio-admin-item .estrellas {
    color: var(--amarillo);
    text-shadow: 1px 1px 0 var(--negro);
}

.testimonio-admin-item p {
    font-style: italic;
    margin: 10px 0;
    color: #333;
}

.testimonio-admin-item .autor {
    font-weight: 900;
    color: var(--rojo);
    margin-bottom: 15px;
}

/* ===== ADMIN SUSCRIPCIONES ===== */
.suscripciones-list {
    margin-top: 25px;
}

.suscripciones-list h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.suscripcion-item {
    padding: 10px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    margin-bottom: 8px;
    word-break: break-all;
    font-size: 0.85rem;
}

.suscripcion-item small {
    display: block;
    color: #888;
    margin-top: 5px;
}

.admin-nota {
    background: #f5f5f5;
    padding: 12px;
    border-left: 4px solid var(--amarillo);
    margin-bottom: 15px;
    color: #555;
}

.qr-admin-box {
    text-align: center;
    padding: 20px;
    background: var(--blanco);
    border: 3px solid var(--negro);
}

.qr-admin-box img {
    width: 180px;
    height: 180px;
    border: 4px solid var(--negro);
}

/* ===== RESPONSIVE EXTRAS ===== */
@media (max-width: 600px) {
    .mesa-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cupon-row {
        flex-direction: column;
    }
    .cupon-row .btn {
        width: 100%;
    }
    .galeria-admin-list,
    .testimonios-admin-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .mesa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .galeria-admin-list,
    .testimonios-admin-list {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .socios-grid, .reserva-layout { grid-template-columns: 1fr; }
    .hero-features { gap: 20px; }
    .galeria-grid { grid-template-columns: repeat(2, 1fr); }
    .galeria-item.grande { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 768px) {
    .menu-toggle, .admin-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.98); flex-direction: column; padding: 20px; gap: 0; border-bottom: 3px solid var(--amarillo); }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { padding: 15px 0; font-size: 1.1rem; border-bottom: 1px solid #333; }
    .nav-links a::after { display: none; }
    .admin-user { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.98); flex-direction: column; padding: 20px; gap: 15px; border-bottom: 3px solid var(--amarillo); }
    .admin-user.active { display: flex; }
    .admin-header .container { position: relative; }
    .admin-header h1 { font-size: 1.4rem; }
}
@media (max-width: 600px) {
    .navbar .container { flex-direction: row; }
    .logo { font-size: 1.3rem; }
    .hero { padding-top: 100px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.9rem; }
    .form-row { grid-template-columns: 1fr; }
    .countdown-item { padding: 12px 18px; min-width: 70px; }
    .countdown-item span { font-size: 2rem; }
    .galeria-grid { grid-template-columns: 1fr; }
    .galeria-item.grande { grid-column: span 1; }
    .urgente-box h2 { font-size: 1.8rem; }
    .urgente-box h2 span { font-size: 2.2rem; }
    .hero-badge { font-size: 0.85rem; }
    .hero-slogan { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 320px; }
    .me-apunto-box { width: 100%; max-width: 320px; }
    .fab-llamar { width: 55px; height: 55px; font-size: 1.5rem; }
    .modo-fiesta-btn { width: 60px; height: 60px; font-size: 1.6rem; bottom: 90px; right: 15px; }
    .modo-fiesta-hero { font-size: 0.9rem; padding: 12px 20px; }
    .live-counter { top: auto; bottom: 160px; left: 10px; font-size: 0.75rem; padding: 8px 12px; }
    .footer { padding-bottom: 80px; }
    #toast-container { top: auto; bottom: 90px; right: 10px; left: 10px; }
    .toast { min-width: auto; width: 100%; }
    .stat-num { font-size: 2.5rem; }
    .reloj-box { display: block; margin: 20px 10px; }
    .mapa-card { grid-template-columns: 1fr; }
    .mapa-visual { min-height: 200px; }
    .menu-plato { flex-direction: column; text-align: center; }
    .juego-area { height: 250px; }
    .ruleta-display { font-size: 4rem; }
    .scroll-porcentaje { width: 45px; height: 45px; font-size: 0.7rem; bottom: 90px; right: 15px; }
}

/* ===== NUEVAS FUNCIONALIDADES ===== */

/* Banners top */
.hora-feliz-banner,
.frase-dia-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    text-align: center;
    padding: 10px;
    font-weight: 900;
    font-family: 'Black Ops One', cursive;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--negro);
}
.hora-feliz-banner {
    top: 70px;
    background: var(--amarillo);
    color: var(--negro);
}
.frase-dia-banner {
    top: 112px;
    background: var(--rojo);
    color: var(--blanco);
    font-size: 0.95rem;
}

/* Hero widgets */
.hero-widgets {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.hero-widget {
    background: rgba(0,0,0,0.5);
    border: 3px solid var(--amarillo);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}
.hero-widget small {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ccc;
}
.contador-cañas-num {
    font-family: 'Black Ops One', cursive;
    font-size: 2.2rem;
    color: var(--amarillo);
    line-height: 1;
}
.zodiaco-box {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}
.zodiaco-box label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.zodiaco-box select {
    padding: 10px;
    border: 3px solid var(--negro);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
}
.zodiaco-resultado {
    font-weight: 900;
    color: var(--amarillo);
    min-height: 1.5em;
}

/* Ahorro */
.ahorro { background: linear-gradient(135deg, var(--negro) 0%, #1a1a1a 100%); }
.ahorro-box {
    background: var(--blanco);
    color: var(--negro);
    border: 5px solid var(--amarillo);
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 10px 10px 0 var(--rojo);
}
.ahorro-resultado {
    margin-top: 20px;
    font-family: 'Black Ops One', cursive;
    font-size: 1.6rem;
    color: var(--verde);
    text-align: center;
    min-height: 2em;
}

/* Ranking */
.ranking { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.ranking-box {
    background: var(--negro);
    border: 5px solid var(--amarillo);
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 10px 10px 0 var(--negro);
}
.ranking-lista { list-style: none; }
.ranking-lista li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-bottom: 2px dashed #333;
    font-size: 1.1rem;
}
.ranking-lista li:last-child { border-bottom: none; }
.ranking-pos { font-family: 'Black Ops One', cursive; color: var(--amarillo); font-size: 1.3rem; }
.ranking-cañas { font-weight: 900; color: var(--rojo); }

/* Socio digital */
.socio-digital { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.socio-digital-form {
    max-width: 500px;
    margin: 0 auto 30px;
    background: var(--blanco);
    color: var(--negro);
    padding: 25px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--rojo);
}
.tarjeta-socio {
    max-width: 420px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--amarillo) 0%, #ffd600 100%);
    color: var(--negro);
    border: 6px solid var(--blanco);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.tarjeta-socio::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.05) 10px, rgba(0,0,0,0.05) 20px);
    pointer-events: none;
}
.tarjeta-crown { font-size: 3rem; margin-bottom: 10px; }
.tarjeta-socio h3 { font-family: 'Bangers', cursive; font-size: 2rem; margin-bottom: 15px; }
.tarjeta-nombre { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.tarjeta-codigo {
    font-family: 'Black Ops One', cursive;
    font-size: 2.2rem;
    background: var(--negro);
    color: var(--amarillo);
    display: inline-block;
    padding: 8px 18px;
    border: 3px solid var(--blanco);
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.tarjeta-validez { font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 20px; }

/* Puntos */
.puntos-driana { background: var(--rojo); }
.puntos-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--blanco);
    color: var(--negro);
    padding: 25px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--negro);
}

/* Tapas */
.tapas { background: var(--blanco); color: var(--negro); }
.tapas .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.tapas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.tapa-card {
    background: var(--negro);
    color: var(--blanco);
    border: 4px solid var(--amarillo);
    padding: 25px;
    box-shadow: 6px 6px 0 var(--rojo);
    transition: transform 0.3s;
}
.tapa-card:hover { transform: translateY(-6px); }
.tapa-card h3 { font-family: 'Bangers', cursive; font-size: 1.5rem; color: var(--amarillo); margin-bottom: 8px; }
.tapa-card p { color: #ccc; margin-bottom: 10px; font-size: 0.95rem; }
.tapa-card .ingredientes { font-style: italic; color: #aaa; margin-bottom: 12px; font-size: 0.9rem; }
.tapa-card .precio { font-family: 'Black Ops One', cursive; font-size: 1.6rem; color: var(--verde); }
.tapa-card .dia { display: inline-block; background: var(--amarillo); color: var(--negro); padding: 4px 10px; font-weight: 900; font-size: 0.8rem; margin-bottom: 10px; text-transform: uppercase; }

/* Subir foto */
.subir-foto-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--blanco);
    color: var(--negro);
    padding: 30px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--rojo);
}
.subir-foto-box h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--rojo); margin-bottom: 20px; text-align: center; }

/* Juego jarra */
.juego-jarra { background: linear-gradient(180deg, var(--negro) 0%, #1a1a1a 100%); }
.jarra-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: var(--blanco);
    border: 5px solid var(--amarillo);
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 10px 10px 0 var(--rojo);
}
#jarra-canvas { background: #f0f0f0; border: 4px solid var(--negro); cursor: pointer; max-width: 100%; }
.jarra-info { text-align: center; color: var(--negro); }
.jarra-info p { font-size: 1.3rem; margin-bottom: 15px; }
.jarra-record { color: var(--rojo); font-weight: 900; }

/* Encuesta */
.encuesta { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.encuesta-box {
    background: var(--blanco);
    color: var(--negro);
    border: 5px solid var(--amarillo);
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 10px 10px 0 var(--rojo);
}
.encuesta-pregunta { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--rojo); margin-bottom: 20px; }
.encuesta-opcion { margin-bottom: 15px; }
.encuesta-opcion label { display: flex; align-items: center; gap: 10px; font-weight: 700; cursor: pointer; }
.encuesta-opcion input { width: 20px; height: 20px; }
.encuesta-barra {
    background: #eee;
    border: 2px solid var(--negro);
    height: 28px;
    margin-top: 8px;
    position: relative;
}
.encuesta-barra-fill {
    background: var(--amarillo);
    height: 100%;
    width: 0%;
    transition: width 0.5s ease;
}
.encuesta-barra-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 900;
}

/* Invitación */
.invitar { background: var(--rojo); }
.invitar-form {
    max-width: 600px;
    margin: 0 auto 30px;
    background: var(--blanco);
    color: var(--negro);
    padding: 30px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--negro);
}
.invitacion-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.invitacion-card {
    background: var(--amarillo);
    color: var(--negro);
    border: 6px solid var(--blanco);
    padding: 40px;
    max-width: 420px;
    text-align: center;
    box-shadow: 12px 12px 0 var(--rojo);
}
.invitacion-card h3 { font-family: 'Bangers', cursive; font-size: 2rem; margin-bottom: 15px; }
.invitacion-bebida { font-size: 1.4rem; font-weight: 900; margin: 15px 0; }
.invitacion-codigo {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    background: var(--negro);
    color: var(--amarillo);
    padding: 10px;
    border: 3px solid var(--blanco);
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.invitacion-nota { font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; }

/* Lista de espera */
.lista-espera { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.lista-espera-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--blanco);
    color: var(--negro);
    padding: 30px;
    border: 5px solid var(--amarillo);
    box-shadow: 8px 8px 0 var(--rojo);
}

/* Próximo evento */
.proximo-evento { background: var(--blanco); color: var(--negro); }
.proximo-evento .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.countdown-box {
    background: var(--negro);
    border: 5px solid var(--amarillo);
    padding: 35px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 10px 10px 0 var(--rojo);
}
.countdown-box h3 { font-family: 'Bangers', cursive; font-size: 2rem; color: var(--amarillo); margin-bottom: 20px; }

/* Ticker */
.reservas-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--amarillo);
    color: var(--negro);
    display: flex;
    align-items: center;
    padding: 8px 15px;
    font-weight: 900;
    font-size: 0.9rem;
    z-index: 995;
    border-top: 3px solid var(--negro);
}
.ticker-label { flex-shrink: 0; margin-right: 15px; font-family: 'Black Ops One', cursive; }
.ticker-content { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* Chatbot */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    left: 25px;
    width: 320px;
    max-width: calc(100vw - 50px);
    background: var(--blanco);
    border: 4px solid var(--negro);
    box-shadow: 8px 8px 0 var(--amarillo);
    z-index: 2600;
    display: flex;
    flex-direction: column;
}
.chatbot-header {
    background: var(--rojo);
    color: var(--blanco);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    cursor: pointer;
}
.chatbot-header button {
    background: var(--amarillo);
    border: 2px solid var(--negro);
    width: 30px;
    height: 30px;
    font-weight: 900;
    cursor: pointer;
}
.chatbot-body {
    max-height: 350px;
    display: flex;
    flex-direction: column;
}
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    max-height: 260px;
    background: #f9f9f9;
}
.chatbot-msg {
    padding: 10px 14px;
    margin-bottom: 10px;
    border: 2px solid var(--negro);
    font-size: 0.95rem;
    line-height: 1.4;
}
.chatbot-msg.bot { background: var(--amarillo); color: var(--negro); }
.chatbot-msg.user { background: var(--negro); color: var(--blanco); margin-left: 20px; }
.chatbot-form { display: flex; border-top: 3px solid var(--negro); }
.chatbot-form input { flex: 1; border: none; padding: 12px; font-size: 1rem; }
.chatbot-form button { background: var(--verde); color: var(--blanco); border: none; padding: 0 18px; font-size: 1.2rem; cursor: pointer; }
.chatbot-widget.minimized .chatbot-body { display: none; }

/* Modo resaca */
.modo-resaca-btn {
    position: fixed;
    bottom: 185px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #81c784;
    border: 4px solid var(--blanco);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2601;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.modo-resaca-btn:hover { transform: scale(1.1); }
.modo-resaca-btn.activo {
    background: #2e7d32;
    box-shadow: 0 0 25px rgba(46,125,50,0.8), 0 5px 20px rgba(0,0,0,0.4);
    border-color: var(--amarillo);
}
body.modo-resaca {
    filter: sepia(0.3) saturate(0.7);
}
body.modo-resaca .hero,
body.modo-resaca .section { animation: none !important; }
body.modo-resaca .btn { box-shadow: none; }
body.modo-resaca .precio-card,
body.modo-resaca .evento-card,
body.modo-resaca .tapa-card { border-color: #81c784; }
body.modo-resaca .toast {
    background: #a5d6a7;
    color: var(--negro);
}

/* Admin nuevas secciones */
.admin-form-inline { display: flex; gap: 15px; flex-wrap: wrap; align-items: flex-end; }
.admin-form-inline .form-group { flex: 1; min-width: 160px; }
.admin-lista { display: grid; gap: 12px; margin-top: 20px; }
.admin-lista-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 14px;
    border: 3px solid var(--negro);
    background: #f9f9f9;
    flex-wrap: wrap;
}
.admin-lista-item.pendiente { border-left: 6px solid var(--amarillo); }
.admin-lista-item.aprobada { border-left: 6px solid var(--verde); }
.admin-lista-item.rechazada { border-left: 6px solid var(--rojo); }
.admin-lista-item.servida { opacity: 0.6; }
.admin-lista-item strong { color: var(--rojo); }
.admin-mini-form { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-mini-form input, .admin-mini-form select {
    padding: 10px;
    border: 3px solid var(--negro);
    font-size: 0.95rem;
}

/* ============================================================
   EXTRA-CHULO.CSS — Estilos para las 40 funcionalidades locas
   ============================================================ */

.extra-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.extra-tab { padding: 12px 24px; font-family: 'Black Ops One', cursive; font-size: 1rem; border: 3px solid var(--negro); background: var(--negro); color: var(--amarillo); cursor: pointer; box-shadow: 4px 4px 0 var(--amarillo); }
.extra-tab.active { background: var(--amarillo); color: var(--negro); box-shadow: 4px 4px 0 var(--rojo); }
.extra-panel { display: none; }
.extra-panel.active { display: block; animation: fadeInUp 0.5s ease; }

.extra-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.extra-card { background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 20px; box-shadow: 8px 8px 0 var(--rojo); position: relative; overflow: hidden; }
.extra-card.wide { grid-column: 1 / -1; }
.extra-card h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; color: var(--rojo); margin-bottom: 15px; text-align: center; }
.extra-card canvas { display: block; margin: 0 auto 10px; background: #111; border: 3px solid var(--negro); max-width: 100%; }
.extra-card input, .extra-card textarea, .extra-card select { width: 100%; padding: 10px; border: 3px solid var(--negro); margin-bottom: 10px; font-size: 1rem; }
.extra-card .btn { padding: 10px 20px; font-size: 0.9rem; margin: 5px 5px 0 0; }

/* Memory */
.memory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 280px; margin: 0 auto; }
.memory-card { aspect-ratio: 1; background: var(--rojo); border: 3px solid var(--negro); display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; position: relative; transform-style: preserve-3d; transition: transform 0.4s; }
.memory-card .front, .memory-card .back { position: absolute; inset: 0; backface-visibility: hidden; display: flex; align-items: center; justify-content: center; }
.memory-card .front { background: var(--amarillo); color: var(--negro); font-family: 'Black Ops One', cursive; }
.memory-card .back { background: var(--blanco); transform: rotateY(180deg); }
.memory-card.flipped { transform: rotateY(180deg); }
.memory-info { text-align: center; margin-top: 10px; font-weight: 900; }

/* Bingo */
.bingo-actual { font-family: 'Black Ops One', cursive; font-size: 3rem; text-align: center; color: var(--rojo); margin-bottom: 10px; }
.bingo-lista { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 15px; }
.bingo-num { background: var(--amarillo); color: var(--negro); padding: 6px 10px; border: 2px solid var(--negro); font-weight: 900; }

/* Ruleta shots */
.shot-display { font-size: 3rem; text-align: center; margin-bottom: 15px; min-height: 80px; display: flex; align-items: center; justify-content: center; }
.shot-display.girando { animation: pulse 0.2s infinite; }

/* Adivina precio */
.adivina-item { font-size: 1.4rem; font-weight: 900; text-align: center; margin-bottom: 15px; }
.adivina-opciones { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Higher/Lower */
.hl-buttons { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }

/* Ahorcado */
.ahorcado-palabra { font-family: 'Black Ops One', cursive; font-size: 1.8rem; letter-spacing: 8px; text-align: center; margin-bottom: 10px; }
.ahorcado-dibujo { font-size: 1.5rem; text-align: center; margin-bottom: 10px; }
.ahorcado-letras { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.ahorcado-letra { width: 32px; height: 32px; border: 2px solid var(--negro); background: var(--amarillo); font-weight: 900; cursor: pointer; }
.ahorcado-letra:disabled { background: #ccc; cursor: not-allowed; }

/* Memes */
.meme-form { display: flex; gap: 10px; margin-bottom: 15px; }
.meme-input { flex: 1; }
.meme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.meme-card { background: #111; color: #fff; border: 3px solid var(--negro); padding: 12px; }
.meme-texto { font-style: italic; margin-bottom: 10px; }
.meme-votos button { padding: 6px 12px; font-size: 0.8rem; }

/* Canciones */
.cancion-form { display: flex; gap: 10px; margin-bottom: 15px; }
.cancion-input { flex: 1; }
.canciones-lista { display: grid; gap: 10px; }
.cancion-item { display: flex; justify-content: space-between; align-items: center; background: #f4f4f4; padding: 10px; border: 2px solid var(--negro); }

/* Firma */
#firma-canvas { background: #111; border: 3px solid var(--negro); cursor: crosshair; width: 100%; }
.firma-botones { display: flex; gap: 10px; margin-top: 10px; }

/* Selfie */
#selfie-video { display: block; margin: 0 auto 10px; max-width: 100%; border: 3px solid var(--negro); background: #111; }
#selfie-canvas { display: block; margin: 10px auto; max-width: 100%; border: 3px solid var(--negro); }

/* Desafío */
.desafio-barra { width: 100%; height: 30px; background: #ddd; border: 3px solid var(--negro); margin: 15px 0; }
.desafio-fill { height: 100%; background: linear-gradient(90deg, var(--amarillo), var(--rojo)); transition: width 0.5s; }

/* Salón fama */
.salon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.salon-item { background: var(--amarillo); border: 3px solid var(--negro); padding: 10px; text-align: center; font-weight: 900; }
.salon-crown { font-size: 1.5rem; }
.salon-input { margin-bottom: 10px; }

/* Chat mesa */
.chat-mesa-msgs { height: 150px; overflow-y: auto; background: #f4f4f4; border: 3px solid var(--negro); padding: 10px; margin-bottom: 10px; }
.chat-mesa-form { display: flex; gap: 8px; flex-wrap: wrap; }
.chat-mesa-form input { flex: 1; min-width: 120px; }
.chat-mesa-msg { padding: 5px 0; border-bottom: 1px dashed #ccc; }

/* Modo discoteca */
#disco-lights { position: fixed; inset: 0; pointer-events: none; z-index: 2000; mix-blend-mode: overlay; }
.disco-light { position: absolute; width: 50vw; height: 50vw; border-radius: 50%; filter: blur(80px); animation: disco 2s infinite linear; }
.disco-1 { top: -20%; left: -20%; background: #ff00ff; }
.disco-2 { bottom: -20%; right: -20%; background: #00ffff; animation-direction: reverse; }
.disco-3 { top: 30%; left: 30%; background: #ffff00; animation-duration: 3s; }
body.modo-discoteca { animation: disco 5s infinite linear; }

/* Espuma */
.espuma-particle { position: fixed; top: -40px; font-size: 1.5rem; pointer-events: none; z-index: 2001; animation: fall 4s linear forwards; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }

/* Temas */
.tema-azul { --rojo: #0055ff; --rojo-oscuro: #003399; --amarillo: #ffcc00; }
.tema-verde { --rojo: #00c853; --rojo-oscuro: #009624; --amarillo: #ffff00; }

/* Cursor jarra */
body.cursor-jarra { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🍺</text></svg>"), auto !important; }
.jarra-estela { position: fixed; font-size: 1.2rem; pointer-events: none; z-index: 2002; animation: fadeOut 0.7s forwards; }
@keyframes fadeOut { to { opacity: 0; transform: translateY(20px) scale(0.5); } }

/* Tele estadio */
.tele-marco { background: #000; border: 5px solid var(--amarillo); padding: 12px; overflow: hidden; }
.tele-texto { white-space: nowrap; color: #0f0; font-family: 'Black Ops One', cursive; font-size: 1.2rem; animation: marquee 15s linear infinite; }
@keyframes marquee { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* Brindis */
.brindis-anim { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; gap: 40px; z-index: 3000; pointer-events: none; background: rgba(0,0,0,0.3); }
.jarra-b { font-size: 6rem; animation: brindis 1s ease-in-out; }
@keyframes brindis { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-60px) rotate(-15deg); } }
.jarra-b:nth-child(2) { animation-delay: 0.1s; animation-direction: reverse; }

/* Hielo */
body.efecto-hielo::before { content: ''; position: fixed; inset: 0; background: rgba(200,240,255,0.15); pointer-events: none; z-index: 1999; }
.hielo-copo { position: fixed; font-size: 1.5rem; pointer-events: none; z-index: 2003; animation: melt 1.2s forwards; }
@keyframes melt { to { transform: translateY(30px) scale(0); opacity: 0; } }

/* Estilos temporales */
.estilo-retro { filter: sepia(0.6) contrast(1.2); font-family: 'Courier New', monospace; }
.estilo-2000 { background: repeating-linear-gradient(45deg, #000 0, #000 10px, #330033 10px, #330033 20px); }
.estilo-futuro { filter: hue-rotate(180deg) contrast(1.2); }

/* Detector fiesta */
.fiesta-medidor { width: 100%; height: 30px; background: #333; border: 3px solid var(--negro); margin: 15px 0; }
.fiesta-fill { height: 100%; background: linear-gradient(90deg, #00c853, var(--amarillo), var(--rojo)); transition: width 0.5s; }

/* Equipos */
.equipos-resultado { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.equipo { background: var(--amarillo); border: 3px solid var(--negro); padding: 10px; }

/* Caidas */
.caidas-box { text-align: center; }
.caidas-num { font-family: 'Black Ops One', cursive; font-size: 4rem; color: var(--rojo); }
.caidas-label { font-size: 1.2rem; margin-bottom: 15px; }

/* Modo cañero extremo */
body.modo-canero-extremo { animation: disco 2s infinite linear; }
body.modo-canero-extremo .extra-card { animation: pulse 1s infinite; }

/* Responsive extra */
@media (max-width: 700px) {
    .extra-grid { grid-template-columns: 1fr; }
    .extra-card.wide { grid-column: auto; }
    .equipos-resultado { grid-template-columns: 1fr; }
    .memory-grid { max-width: 240px; }
    .meme-form, .cancion-form { flex-direction: column; }
}
.live-clock {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: var(--negro);
    color: var(--amarillo);
    border: 3px solid var(--amarillo);
    padding: 8px 14px;
    font-family: 'Black Ops One', cursive;
    font-size: 0.95rem;
    z-index: 990;
    box-shadow: 4px 4px 0 var(--rojo);
}
.daily-quote {
    position: fixed;
    bottom: 155px;
    right: 20px;
    max-width: 220px;
    background: var(--amarillo);
    color: var(--negro);
    border: 3px solid var(--negro);
    padding: 10px 14px;
    font-weight: 900;
    font-size: 0.85rem;
    z-index: 989;
    box-shadow: 4px 4px 0 var(--rojo);
    text-align: center;
}
.suerte-box {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--amarillo);
    color: var(--negro);
    border: 3px solid var(--negro);
    font-weight: 900;
    font-size: 1rem;
}
.btn-otra-cana {
    position: fixed;
    bottom: 210px;
    right: 20px;
    background: var(--rojo);
    color: var(--blanco);
    border: 3px solid var(--negro);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    z-index: 990;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--negro);
    transition: transform 0.2s;
}
.btn-otra-cana:hover { transform: scale(1.1); }
.apertura-status {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--negro);
    color: var(--amarillo);
    border: 3px solid var(--amarillo);
    padding: 6px 12px;
    font-weight: 900;
    font-size: 0.8rem;
    z-index: 980;
    box-shadow: 3px 3px 0 var(--rojo);
}
@keyframes fadeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(2); }
}
body.modo-dios .precio-card, body.modo-dios .tapa-card, body.modo-dios .ruleta-box, body.modo-dios .juego-box {
    box-shadow: 0 0 20px var(--amarillo), 0 0 40px var(--rojo);
    animation: pulse 1s infinite;
}
body.modo-matrix {
    filter: hue-rotate(90deg) contrast(1.2);
}
@media (max-width: 700px) {
    .live-clock { bottom: 90px; right: 10px; font-size: 0.8rem; }
    .daily-quote { display: none; }
    .btn-otra-cana { bottom: 160px; right: 10px; width: 45px; height: 45px; font-size: 1.2rem; }
    .apertura-status { top: 70px; right: 10px; font-size: 0.7rem; }
}

/* ============================================================
   NUEVOS MINIJUEGOS Y SECCIONES
   ============================================================ */

/* ----- Secciones nuevas ----- */
.camino-cana { background: var(--negro); }
.camino-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.camino-paso { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); position: relative; }
.camino-num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--rojo); color: var(--blanco); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Black Ops One', cursive; border: 3px solid var(--negro); }
.camino-paso h3 { font-family: 'Bangers', cursive; font-size: 1.5rem; margin: 15px 0 10px; color: var(--rojo); }

.hall-fama { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.hall-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.hall-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--amarillo); }
.hall-medalla { font-size: 3rem; margin-bottom: 10px; }
.hall-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); font-size: 1.5rem; }

.carta-premium { background: var(--blanco); color: var(--negro); }
.carta-premium .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.premium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.premium-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.premium-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.premium-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }
.premium-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.8rem; margin-top: 10px; }

.calendario-eventos { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.calendario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.calendario-dia { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.calendario-fecha { font-family: 'Black Ops One', cursive; font-size: 2.5rem; color: var(--rojo); display: block; margin-bottom: 10px; }
.calendario-dia h4 { font-family: 'Bangers', cursive; font-size: 1.4rem; margin-bottom: 8px; }

.memes-destacados { background: var(--negro); }
.memes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-bottom: 25px; }
.meme-destacado { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; font-style: italic; font-weight: 700; box-shadow: 6px 6px 0 var(--rojo); }

.recetas-secretas { background: var(--amarillo); color: var(--negro); }
.recetas-secretas .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.recetas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.receta-card { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.receta-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.receta-card h3 { font-family: 'Bangers', cursive; font-size: 1.5rem; }

.equipo-camareros { background: var(--rojo); }
.equipo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.equipo-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--blanco); }
.equipo-foto { font-size: 4rem; margin-bottom: 10px; }
.equipo-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); font-size: 1.6rem; }

.historia-bar { background: linear-gradient(135deg, var(--negro) 0%, #2a0000 100%); }
.historia-timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 30px; border-left: 4px solid var(--amarillo); }
.historia-item { margin-bottom: 30px; position: relative; }
.historia-item::before { content: ''; position: absolute; left: -43px; top: 0; width: 20px; height: 20px; background: var(--rojo); border: 3px solid var(--amarillo); border-radius: 50%; }
.historia-item span { font-family: 'Black Ops One', cursive; color: var(--amarillo); font-size: 1.5rem; display: block; margin-bottom: 5px; }

.merchandising { background: var(--blanco); color: var(--negro); }
.merchandising .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.merch-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.merch-emoji { font-size: 3rem; display: block; margin-bottom: 10px; }
.merch-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }
.merch-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.8rem; margin-top: 10px; }

.newsletter { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.newsletter-form { max-width: 600px; margin: 0 auto; background: var(--blanco); color: var(--negro); padding: 30px; border: 5px solid var(--amarillo); box-shadow: 8px 8px 0 var(--negro); }

/* ----- Minijuegos nuevos ----- */
.busca-tapa-grid { display: flex; gap: 15px; justify-content: center; margin: 15px 0; }
.tapa-cup { font-size: 2.5rem; background: var(--negro); border: 3px solid var(--amarillo); width: 70px; height: 70px; cursor: pointer; transition: transform 0.2s; }
.tapa-cup:hover { transform: scale(1.1); }
.tapa-pista, .tapa-resultado { text-align: center; font-weight: 900; }
.tapa-resultado .ok { color: var(--verde); }
.tapa-resultado .fail { color: var(--rojo); }

.carrera-pista { position: relative; height: 60px; background: #eee; border: 3px solid var(--negro); margin: 15px 0; }
.carrera-jarra { position: absolute; left: 0; top: 50%; transform: translateY(-50%); font-size: 2rem; transition: left 0.05s; }
.carrera-meta { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

.ruleta-chupito { font-size: 4rem; text-align: center; margin-bottom: 10px; }
.ruleta-chupito.girando { animation: rotate 0.2s linear infinite; }
.chupito-resultado { text-align: center; font-weight: 900; margin-top: 10px; }

.taquilla-grid { display: flex; flex-direction: column; gap: 8px; margin: 10px 0; }
.taquilla-fila { display: flex; gap: 6px; justify-content: center; }
.taquilla-cel { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-weight: 900; border: 2px solid var(--negro); background: #eee; }
.taquilla-cel.bien { background: var(--verde); color: var(--blanco); }
.taquilla-cel.casi { background: var(--amarillo); }
.taquilla-cel.mala { background: #999; color: var(--blanco); }
.taquilla-input { text-transform: uppercase; text-align: center; font-weight: 900; }

.simon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 220px; margin: 15px auto; }
.simon-btn { height: 80px; font-size: 2rem; border: 4px solid var(--negro); cursor: pointer; opacity: 0.7; transition: opacity 0.1s, transform 0.1s; }
.simon-btn.active { opacity: 1; transform: scale(1.05); }
.simon-0 { background: #ffea00; }
.simon-1 { background: #cc0000; }
.simon-2 { background: #00c853; }
.simon-3 { background: #ff6d00; }
.simon-msg { text-align: center; font-weight: 900; }

/* ============================================================
   20 NUEVAS SECCIONES DRIANA
   ============================================================ */

.ruta-cana { background: linear-gradient(135deg, var(--negro) 0%, #1a1a1a 100%); }
.ruta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.ruta-paso { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); transition: transform 0.3s; }
.ruta-paso:hover { transform: translateY(-8px); }
.ruta-paso span { font-size: 3rem; display: block; margin-bottom: 10px; }
.ruta-paso h3 { font-family: 'Bangers', cursive; font-size: 1.4rem; color: var(--rojo); margin-bottom: 8px; }

.combo-driana { background: var(--rojo); }
.combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.combo-card { background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 8px 8px 0 var(--negro); position: relative; }
.combo-card.destacado { border-color: var(--blanco); background: var(--amarillo); }
.combo-tag { position: absolute; top: -12px; right: 10px; background: var(--rojo); color: var(--blanco); padding: 4px 12px; font-family: 'Black Ops One', cursive; font-size: 0.85rem; }
.combo-emoji { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.combo-card h3 { font-family: 'Bangers', cursive; font-size: 1.6rem; }
.combo-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 2rem; margin-top: 10px; }

.especialidades { background: var(--blanco); color: var(--negro); }
.especialidades .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.especialidades-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.especialidad-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 30px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.especialidad-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.especialidad-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); font-size: 1.5rem; }

.testimonios-video { background: linear-gradient(135deg, var(--negro) 0%, #2a0000 100%); }
.testi-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.testi-video-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.testi-foto { font-size: 4rem; margin-bottom: 10px; }
.testi-video-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }
.testi-video-card .estrellas { color: var(--amarillo); text-shadow: 1px 1px 0 var(--negro); font-size: 1.3rem; margin-top: 10px; }

.resenas-google { background: var(--amarillo); color: var(--negro); }
.resenas-google .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.resenas-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.resena-card { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; box-shadow: 6px 6px 0 var(--rojo); }
.resena-estrellas { color: var(--amarillo); text-shadow: 1px 1px 0 var(--negro); font-size: 1.4rem; margin-bottom: 10px; }
.resena-autor { display: block; margin-top: 10px; font-weight: 900; color: var(--rojo); }

.app-movil { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.app-box { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 40px; max-width: 800px; margin: 0 auto; box-shadow: 10px 10px 0 var(--rojo); }
.app-mockup { font-size: 6rem; }
.app-info ul { list-style: none; margin-bottom: 20px; }
.app-info li { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }

.programa-fidelidad { background: var(--rojo); }
.fidelidad-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.fidelidad-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 30px; text-align: center; box-shadow: 6px 6px 0 var(--blanco); }
.fidelidad-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.fidelidad-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); font-size: 1.6rem; }

.reserva-grupos { background: var(--blanco); color: var(--negro); }
.reserva-grupos .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.grupos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.grupo-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.grupo-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.grupo-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }

.carta-postres { background: linear-gradient(135deg, var(--negro) 0%, #2a0000 100%); }
.postres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.postre-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.postre-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.postre-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }
.postre-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.8rem; margin-top: 10px; }

.tabla-maridajes { background: var(--amarillo); color: var(--negro); }
.tabla-maridajes .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.maridajes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.maridaje-card { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.maridaje-card span { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.maridaje-card h3 { font-family: 'Bangers', cursive; }

.packs-para-llevar { background: var(--negro); }
.packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.pack-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.pack-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.pack-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }
.pack-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.8rem; margin-top: 10px; }

.ranking-tapas { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.ranking-tapas-grid { max-width: 700px; margin: 0 auto; display: grid; gap: 15px; }
.ranking-tapa { background: var(--negro); border: 3px solid var(--amarillo); padding: 18px; display: flex; justify-content: space-between; align-items: center; box-shadow: 4px 4px 0 var(--blanco); }
.tapa-pos { font-family: 'Black Ops One', cursive; color: var(--amarillo); font-size: 1.4rem; width: 30px; }
.tapa-votos { font-weight: 900; color: var(--verde); }

.franquicias { background: var(--blanco); color: var(--negro); }
.franquicias .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.franquicia-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 900px; margin: 0 auto; align-items: start; }
.franquicia-beneficios { background: var(--negro); color: var(--blanco); padding: 30px; border: 4px solid var(--amarillo); box-shadow: 6px 6px 0 var(--rojo); }
.franquicia-beneficios ul { list-style: none; }
.franquicia-beneficios li { font-weight: 700; margin-bottom: 10px; }
.franquicia-form { background: var(--amarillo); padding: 30px; border: 4px solid var(--negro); box-shadow: 6px 6px 0 var(--rojo); }

.prensa { background: var(--negro); }
.prensa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.prensa-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.prensa-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.prensa-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }

.playlist { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.playlist-box { max-width: 600px; margin: 0 auto; display: grid; gap: 15px; }
.playlist-cancion { background: var(--negro); border: 3px solid var(--amarillo); padding: 18px; display: flex; align-items: center; gap: 15px; box-shadow: 4px 4px 0 var(--blanco); }
.playlist-cancion span { font-size: 2rem; }
.playlist-cancion strong { color: var(--amarillo); }

.diccionario-cana { background: var(--blanco); color: var(--negro); }
.diccionario-cana .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.diccionario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.diccionario-card { background: var(--amarillo); border: 4px solid var(--negro); padding: 25px; box-shadow: 6px 6px 0 var(--rojo); }
.diccionario-card h3 { font-family: 'Bangers', cursive; font-size: 1.5rem; margin-bottom: 8px; }

.reto-semanal { background: var(--negro); }
.reto-box { max-width: 600px; margin: 0 auto; }
.reto-card { background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 35px; text-align: center; box-shadow: 8px 8px 0 var(--rojo); }
.reto-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.reto-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); font-size: 1.8rem; }

.wall-of-fame-fotos { background: linear-gradient(135deg, var(--negro) 0%, #1a1a1a 100%); }
.wall-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; }
.wall-item { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 20px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.wall-foto { font-size: 4rem; margin-bottom: 10px; }
.wall-item span { font-weight: 900; }

.aviso-legal { background: var(--amarillo); color: var(--negro); }
.aviso-legal .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.aviso-box { max-width: 800px; margin: 0 auto; background: var(--blanco); border: 4px solid var(--negro); padding: 30px; box-shadow: 6px 6px 0 var(--rojo); font-weight: 700; }
.aviso-box p { margin-bottom: 12px; }
.aviso-box p:last-child { margin-bottom: 0; }

.blog-driana { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.blog-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; box-shadow: 6px 6px 0 var(--negro); }
.blog-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.blog-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); font-size: 1.5rem; margin-bottom: 10px; }

/* ============================================================
   13 NUEVAS SECCIONES DRIANA
   ============================================================ */

.rincón-resaca { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.resaca-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.resaca-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.resaca-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.resaca-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }

.maquina-chistes { background: var(--rojo); }
.chistes-box { max-width: 700px; margin: 0 auto; background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 30px; text-align: center; box-shadow: 8px 8px 0 var(--negro); }
.chiste-display { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; min-height: 3em; }

.camareros-estrella { background: var(--blanco); color: var(--negro); }
.camareros-estrella .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.camareros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.camarero-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.camarero-foto { font-size: 4rem; margin-bottom: 10px; }
.camarero-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }
.camarero-votos { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.3rem; margin: 10px 0; }

.ruleta-premios { background: linear-gradient(135deg, var(--negro) 0%, #1a1a1a 100%); }
.ruleta-premios-box { max-width: 500px; margin: 0 auto; background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 30px; text-align: center; box-shadow: 8px 8px 0 var(--rojo); }
.ruleta-premios-display { font-size: 5rem; margin-bottom: 15px; }

.tour-virtual { background: var(--amarillo); color: var(--negro); }
.tour-virtual .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.tour-card { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.tour-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.tour-card h3 { font-family: 'Bangers', cursive; }

.horario-extendido { background: var(--negro); }
.horario-box { max-width: 600px; margin: 0 auto; }
.horario-fila { background: var(--blanco); color: var(--negro); border: 3px solid var(--amarillo); padding: 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; box-shadow: 4px 4px 0 var(--rojo); font-weight: 900; }

.desafio-amigos { background: linear-gradient(135deg, var(--rojo) 0%, var(--rojo-oscuro) 100%); }
.desafio-box { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.desafio-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--blanco); }
.desafio-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.desafio-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }

.menu-niños { background: var(--blanco); color: var(--negro); }
.menu-niños .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.niños-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.niño-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.niño-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.niño-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }
.niño-precio { font-family: 'Black Ops One', cursive; color: var(--verde); font-size: 1.6rem; margin-top: 10px; }

.cervezas-mundo { background: linear-gradient(135deg, var(--negro) 0%, #1a1a1a 100%); }
.cervezas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.cerveza-mundo-card { background: var(--blanco); color: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.cerveza-mundo-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.cerveza-mundo-card h3 { font-family: 'Bangers', cursive; color: var(--rojo); }

.momentos-leyenda { background: var(--amarillo); color: var(--negro); }
.momentos-leyenda .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--blanco); }
.momentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.momento-card { background: var(--blanco); border: 4px solid var(--negro); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.momento-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.momento-card h3 { font-family: 'Bangers', cursive; }

.como-llegar { background: var(--rojo); }
.llegar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.llegar-card { background: var(--negro); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--blanco); }
.llegar-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.llegar-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }

.pregunta-dia { background: linear-gradient(135deg, #1a1a1a 0%, var(--negro) 100%); }
.pregunta-box { max-width: 600px; margin: 0 auto; background: var(--blanco); color: var(--negro); border: 5px solid var(--amarillo); padding: 30px; text-align: center; box-shadow: 8px 8px 0 var(--rojo); }
.pregunta-texto { font-family: 'Bangers', cursive; font-size: 1.8rem; color: var(--rojo); margin-bottom: 20px; }
.pregunta-opciones { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.pregunta-resultado { font-weight: 900; font-size: 1.2rem; min-height: 1.5em; }

.club-nocturno { background: var(--negro); }
.club-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.club-card { background: linear-gradient(135deg, #2a0033 0%, #1a0033 100%); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.club-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.club-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }

.alergenos { background: var(--blanco); color: var(--negro); }
.alergenos .section-title { color: var(--rojo); text-shadow: 3px 3px 0 var(--amarillo); }
.alergenos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.alergeno-card { background: var(--negro); color: var(--blanco); border: 4px solid var(--amarillo); padding: 25px; text-align: center; box-shadow: 6px 6px 0 var(--rojo); }
.alergeno-card span { font-size: 3rem; display: block; margin-bottom: 10px; }
.alergeno-card h3 { font-family: 'Bangers', cursive; color: var(--amarillo); }

/* ============================================================
   FIN EXTRA-CHULO.CSS
   ============================================================ */
