/* ============================================
   LEVELUP - Copia fiel del diseño de Diamond
   Paleta adaptada al logo cyan del usuario
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --bg-2: #0d0d14;
    --bg-3: #12121c;
    --accent: #00b8f5;
    --accent-2: #00d4ff;
    --accent-dark: #0091c7;
    --text: #f2f2f4;
    --text-muted: #8a8a96;
    --text-dim: #4a4a55;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: 'Russo One', 'Rajdhani', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    min-height: 100vh;
}

/* Dotted grid background pattern - like Diamond */
.dots-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
ul { list-style: none; }

.accent { color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 40px;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 184, 245, 0.1);
    padding: 14px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
}

.logo-text {
    font-family: 'Arial Black', 'Helvetica Neue', Impact, sans-serif;
    font-weight: 900;
    font-size: 32px;
    font-style: italic;
    letter-spacing: -2px;
    display: inline-flex;
    align-items: flex-start;
    line-height: 1;
    padding-top: 6px;
}

.logo-white {
    color: #e8ebef;
}

.logo-arrow-wrap {
    position: relative;
    display: inline-block;
}

.logo-blue {
    color: #00b8f5;
}

.logo-arrow {
    position: absolute;
    top: -6px;
    left: 40%;
    transform: translateX(-50%);
    width: 13px;
    height: 8px;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 4px;
    color: #8a8a96;
    margin-top: 8px;
    margin-left: 2px;
    font-weight: 500;
    display: block;
}

/* Nav */
.nav-container {
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 36px;
    justify-self: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-list {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #d8d8de;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--accent);
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-toggle {
    width: 34px;
    height: 44px;
    background: rgba(15, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
}

.header-toggle svg {
    width: 14px;
    height: 14px;
}

.btn-reservar {
    background: var(--accent);
    color: #0a0a0f;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    font-weight: 400;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-reservar:hover {
    background: var(--accent-2);
    box-shadow: 0 0 30px rgba(0, 184, 245, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, transparent 48%, rgba(0, 184, 245, 0.04) 49%, rgba(0, 184, 245, 0.04) 51%, transparent 52%);
    background-size: 120px 120px;
    pointer-events: none;
    opacity: 0.6;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 184, 245, 0.18) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
    animation: heroGlow 8s ease-in-out infinite;
}

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

.hero-inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 120px 1fr 280px;
    gap: 40px;
    align-items: center;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 40px 60px;
}

/* Sides */
.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    align-self: stretch;
    justify-content: center;
}

.hero-side-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-side-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero-side-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-side-lines span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-side-lines span:nth-child(2) {
    background: var(--accent);
    width: 40px;
}

/* Terminal on right side */
.hero-terminal {
    width: 260px;
    background: rgba(15, 15, 25, 0.85);
    border: 1px solid rgba(0, 184, 245, 0.25);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 184, 245, 0.15),
        inset 0 0 20px rgba(0, 184, 245, 0.03);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

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

.term-dots {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(0, 184, 245, 0.08);
    border-bottom: 1px solid rgba(0, 184, 245, 0.15);
}

.term-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3a3a48;
}

.term-dots span:nth-child(1) { background: #ff5f56; }
.term-dots span:nth-child(2) { background: #ffbd2e; }
.term-dots span:nth-child(3) { background: #27c93f; }

.term-body {
    padding: 18px 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 2;
    color: #b8c4d8;
}

.t-prompt { color: var(--accent); font-weight: 700; }
.t-cmd { color: #e8ebef; }
.t-ok { color: #27c93f; font-weight: 700; }
.t-hl { color: var(--accent); font-weight: 700; }
.t-cursor {
    color: var(--accent);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero content */
.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 184, 245, 0.08);
    border: 1px solid rgba(0, 184, 245, 0.25);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: 'Arial Black', 'Helvetica Neue', Impact, sans-serif;
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -4px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-line1 {
    font-size: clamp(70px, 12vw, 170px);
    color: #e8ebef;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    display: block;
}

.hero-title-line2 {
    font-size: clamp(70px, 12vw, 170px);
    color: var(--accent);
    text-shadow: 0 0 40px rgba(0, 184, 245, 0.4);
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    margin-top: -10px;
}

.hero-title-up {
    display: inline-block;
}

.hero-title-arrow {
    width: clamp(24px, 4vw, 48px);
    height: auto;
    margin-top: 10px;
    margin-left: -4px;
    filter: drop-shadow(0 0 20px rgba(0, 184, 245, 0.5));
}

.hero-title-sub {
    font-size: clamp(22px, 3vw, 42px);
    color: #e8ebef;
    letter-spacing: 4px;
    font-style: normal;
    font-weight: 700;
    margin-top: 6px;
    display: block;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: all 0.3s;
}

.btn-ghost svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hstat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text);
    letter-spacing: -1px;
    font-weight: 400;
    line-height: 1;
}

.hstat-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Hero footer bar */
.hero-footer-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 15, 0.4);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text-muted);
    overflow: hidden;
}

.hero-marquee {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    color: var(--accent);
    opacity: 0.6;
    animation: marquee 30s linear infinite;
}

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

/* ============================================
   PARTNERS (TOP)
   ============================================ */
.partners-top {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    color: #e8e8ec;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-align: center;
    line-height: 1;
}

.partner-logo:hover {
    opacity: 1;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 60px 0 120px;
}

.video-box {
    position: relative;
    width: 100%;
    height: 560px;
    background: linear-gradient(135deg, #1a1a28 0%, #0f0f18 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.video-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 184, 245, 0.2), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 245, 0.15), transparent 50%),
        linear-gradient(135deg, #2a2a3a 0%, #1a1a28 100%);
}

.video-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.video-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
    transition: transform 0.3s;
}

.video-play:hover {
    transform: scale(1.05);
}

.play-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 184, 245, 0.5);
}

.play-circle svg {
    width: 24px;
    height: 24px;
    color: #0a0a0f;
    margin-left: 3px;
}

.play-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--text);
    font-weight: 500;
}

.video-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 38px);
    color: rgba(0, 184, 245, 0.35);
    letter-spacing: 3px;
    white-space: nowrap;
    z-index: 3;
    text-transform: uppercase;
}

/* ============================================
   CENTROS GAMING
   ============================================ */
.centros {
    padding: 120px 0 100px;
    position: relative;
}

.centros-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

.centros-title-wrap {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.centros-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--text);
    position: relative;
    text-transform: uppercase;
}

.ghost-title {
    position: absolute;
    top: 20px;
    left: 20px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    z-index: -1;
    white-space: pre;
}

.centros-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 20px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.8;
}

.lets-play {
    font-family: 'Brush Script MT', cursive;
    font-size: 72px;
    color: var(--text);
    line-height: 1;
    text-align: right;
    transform: rotate(-3deg);
}

.lets-play .accent {
    color: var(--accent);
    font-size: 86px;
    display: block;
    margin-top: -10px;
}

/* Centros slider */
.centros-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.centro-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    transition: transform 0.4s;
}

.centro-card:hover {
    transform: translateY(-8px);
}

.centro-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.centro-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
}

.centro-img-1 {
    background:
        linear-gradient(135deg, rgba(0, 184, 245, 0.2), transparent),
        radial-gradient(circle at 30% 60%, #1a3350 0%, transparent 60%),
        linear-gradient(180deg, #1a1a28, #0a0a18);
}

.centro-img-2 {
    background:
        linear-gradient(135deg, rgba(255, 100, 50, 0.15), transparent),
        radial-gradient(circle at 50% 50%, #3a1a28 0%, transparent 60%),
        linear-gradient(180deg, #28141a, #1a0a14);
}

.centro-img-3 {
    background:
        linear-gradient(135deg, rgba(0, 184, 245, 0.25), transparent),
        radial-gradient(circle at 70% 40%, #1a2850 0%, transparent 60%),
        linear-gradient(180deg, #141a28, #0a0f1a);
}

.centro-img-4 {
    background:
        linear-gradient(135deg, rgba(180, 180, 200, 0.1), transparent),
        radial-gradient(circle at 40% 50%, #2a2a3a 0%, transparent 60%),
        linear-gradient(180deg, #1a1a24, #0a0a14);
}

/* Centros footer */
.centros-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.centros-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pag-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.pag-arrow:hover {
    background: var(--accent);
    color: #0a0a0f;
    border-color: var(--accent);
}

.pag-arrow svg {
    width: 16px;
    height: 16px;
}

.pag-numbers {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text);
}

.centros-address {
    display: flex;
    gap: 40px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.centros-address span::before {
    content: '▸ ';
    color: var(--accent);
}

/* ============================================
   ORGANIZA TU EVENTO
   ============================================ */
.eventos {
    padding: 100px 0 120px;
    position: relative;
}

.eventos-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.tag-x {
    color: var(--text-dim);
    padding: 0 18px;
}

.tag-txt {
    color: var(--text);
    white-space: nowrap;
}

.eventos-title {
    font-family: var(--font-display);
    font-size: clamp(50px, 9vw, 140px);
    font-weight: 400;
    text-align: center;
    letter-spacing: -2px;
    margin-bottom: 80px;
    color: var(--text);
    line-height: 0.95;
    text-transform: uppercase;
}

.eventos-frame {
    position: relative;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
}

.frame-corner.tl {
    top: -1px; left: -1px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -1px; right: -1px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -1px; left: -1px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -1px; right: -1px;
    border-left: none;
    border-top: none;
}

.eventos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.evento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #12121c;
    transition: transform 0.4s;
}

.evento-card:hover {
    transform: translateY(-6px);
}

.evento-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text);
}

.badge-slash {
    color: var(--accent);
    font-weight: 700;
}

.evento-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.evento-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9), transparent 60%);
}

.evento-img-1 {
    background:
        linear-gradient(135deg, rgba(0, 184, 245, 0.2), transparent),
        radial-gradient(circle at 40% 60%, #1a3350 0%, transparent 60%),
        linear-gradient(180deg, #1a1a28, #0a0a18);
}

.evento-img-2 {
    background:
        linear-gradient(135deg, rgba(255, 80, 160, 0.15), rgba(0, 184, 245, 0.15)),
        radial-gradient(circle at 60% 40%, #401a40 0%, transparent 60%),
        linear-gradient(180deg, #2a1430, #1a0a20);
}

.evento-title-card {
    position: absolute;
    bottom: 70px;
    left: 30px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 0.95;
    text-transform: uppercase;
    z-index: 2;
}

.evento-link {
    position: absolute;
    bottom: 25px;
    left: 30px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    z-index: 2;
    transition: letter-spacing 0.3s;
}

.evento-link:hover {
    letter-spacing: 3px;
}

/* ============================================
   COMUNIDAD
   ============================================ */
.comunidad {
    padding: 100px 0;
    position: relative;
}

.comunidad-inner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comunidad-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index: 2;
}

.gamer-icon {
    width: 260px;
    height: 340px;
    margin-bottom: 10px;
}

.gamer-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(0, 184, 245, 0.4));
}

.comunidad-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 100px);
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--text);
    line-height: 0.95;
    text-transform: uppercase;
}

/* Social cards positioned absolutely */
.social-card {
    position: absolute;
    min-width: 260px;
    background: rgba(240, 240, 245, 0.95);
    color: #0a0a0f;
    padding: 14px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 90% 100%, 0 100%);
    z-index: 3;
}

.social-ig {
    top: 10%;
    left: 3%;
}

.social-yt {
    top: 35%;
    right: 3%;
    background: rgba(240, 240, 245, 0.95);
}

.social-tt {
    bottom: 10%;
    left: 8%;
}

.social-x {
    bottom: 25%;
    right: 8%;
}

.social-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-name {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: #0a0a0f;
    flex: 1;
}

.social-join {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #0a0a0f;
    font-weight: 700;
}

.social-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: #0a0a0f;
    padding-top: 8px;
    border-top: 1px solid rgba(10, 10, 15, 0.15);
}

.dots {
    font-size: 20px;
    color: #0a0a0f;
    letter-spacing: 2px;
}

/* ============================================
   SPONSORS BOTTOM
   ============================================ */
.sponsors-bottom {
    padding: 80px 0 100px;
    position: relative;
}

.sponsors-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER - Yellow background like Diamond but cyan
   ============================================ */
.footer {
    background: var(--accent);
    color: #0a0a0f;
    padding: 100px 0 0;
    position: relative;
    margin-top: 40px;
    clip-path: polygon(0 40px, 40px 0, 100% 0, 100% 100%, 0 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col {
    position: relative;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    color: #e8ebef;
    background: #0a0a0f;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list li a {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #0a0a0f;
    text-transform: uppercase;
    transition: opacity 0.3s;
    line-height: 1.3;
    display: inline-block;
}

.footer-list li a:hover {
    opacity: 0.6;
}

.footer-list-legal {
    margin-top: 28px;
}

.footer-contact {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #0a0a0f;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.6;
}

.footer-contact strong {
    font-weight: 700;
}

.btn-reservar-fecha {
    display: inline-block;
    background: #0a0a0f;
    color: #e8ebef;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    padding: 16px 32px;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    margin-top: 20px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-reservar-fecha:hover {
    background: #1a1a28;
    transform: translateY(-2px);
}

.footer-bottom-bar {
    width: 100%;
    height: 20px;
    background: #0a0a0f;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
    margin-right: -40px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }
    .nav-container { padding: 12px 24px; }
    .nav-list { gap: 22px; }
    .nav-link { font-size: 12px; }
    .hero-characters { gap: 0; padding: 0 20px; }
    .char { height: 500px; }
    .centros-slider { grid-template-columns: repeat(3, 1fr); }
    .centros-slider .centro-card:last-child { display: none; }
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-container { display: none; }
    .centros-header { flex-direction: column; gap: 30px; }
    .centros-slider { grid-template-columns: repeat(2, 1fr); }
    .eventos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .social-card { min-width: 200px; }
    .lets-play { font-size: 54px; }
    .lets-play .accent { font-size: 64px; }
}

@media (max-width: 768px) {
    .header { padding: 16px 20px; }
    .header-inner { gap: 10px; }
    .logo-text { font-size: 26px; }
    .logo-sub { font-size: 8px; letter-spacing: 2px; }
    .header-right { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding-top: 80px; }
    .hero-characters { gap: 10px; min-height: 400px; }
    .char { height: 350px; }

    /* Hero footer bar: ocultar marquee en mobile para evitar overlap con SAN CRISTÓBAL / VENEZUELA */
    .hero-footer-bar {
        padding: 14px 24px;
        justify-content: center;
        gap: 24px;
        font-size: 10px;
    }
    .hero-marquee { display: none; }

    /* Hero inner: stack en mobile */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 20px 40px;
    }
    .hero-side { display: none; }
    .hero-side-right { display: flex; }
    .hero-terminal { margin: 0 auto; }

    .centros { padding: 60px 0; }
    .centros-slider { grid-template-columns: 1fr; }
    .centros-footer { flex-direction: column; gap: 20px; }
    .centros-address { flex-direction: column; gap: 8px; }

    .eventos { padding: 60px 0; }
    .eventos-tags { gap: 8px; }
    .tag-x { padding: 0 6px; }

    .video-box { height: 340px; }
    .video-overlay-text { font-size: 28px; }

    .comunidad-inner { flex-direction: column; min-height: auto; }
    .social-card {
        position: relative;
        top: auto; left: auto; right: auto; bottom: auto;
        margin-bottom: 12px;
        width: 100%;
    }
    .comunidad-center { margin: 40px 0; }
    .gamer-icon { width: 180px; height: 240px; }

    .footer { padding: 60px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }

    .partners-row { gap: 30px; justify-content: center; }
    .partner-logo { font-size: 14px; }
}

/* ============================================
   PROMOS SECTION
   ============================================ */
.promos-section {
    padding: 120px 0 80px;
    position: relative;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.promo-card {
    position: relative;
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(0, 184, 245, 0.2);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 184, 245, 0.25);
}

.promo-cover {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.promo-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 15, 0.95));
}

.promo-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 11px;
    padding: 6px 14px;
    letter-spacing: 1.5px;
    font-weight: 700;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
    z-index: 2;
}

.promo-platforms {
    position: absolute;
    bottom: 14px;
    left: 16px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.promo-plat-tag {
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 184, 245, 0.3);
}

.promo-body {
    padding: 26px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-name {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.1;
}

.promo-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
    min-height: 42px;
}

.promo-includes {
    list-style: none;
    padding: 14px 0 18px;
    border-top: 1px dashed rgba(0, 184, 245, 0.15);
    margin-bottom: 18px;
}

.promo-includes li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-secondary, var(--text));
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-includes li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
}

.promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.promo-price-wrap {
    display: flex;
    flex-direction: column;
}

.promo-price {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--accent);
    letter-spacing: -0.5px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 184, 245, 0.3);
}

.promo-duration {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

.promo-cta {
    padding: 12px 22px;
    background: rgba(0, 184, 245, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.promo-cta:hover {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(0, 184, 245, 0.4);
}

/* ============================================
   ESTACIONES SECTION
   ============================================ */
.estaciones {
    padding: 120px 0 100px;
    position: relative;
}

.estaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.estacion-card {
    position: relative;
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(0, 184, 245, 0.15);
    padding: 40px 32px 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.estacion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.estacion-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 184, 245, 0.18);
}

.estacion-card:hover::before {
    opacity: 1;
}

.estacion-card::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 184, 245, 0.12), transparent 70%);
    pointer-events: none;
    transition: all 0.4s;
}

.estacion-card:hover::after {
    background: radial-gradient(circle, rgba(0, 184, 245, 0.22), transparent 70%);
}

.estacion-badge {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 56px;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 184, 245, 0.2);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.estacion-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(0, 184, 245, 0.3);
    background: rgba(0, 184, 245, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.estacion-icon svg {
    width: 28px;
    height: 28px;
}

.estacion-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.estacion-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.estacion-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 184, 245, 0.1);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.estacion-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
    font-family: var(--font-mono);
    font-size: 11px;
}

.estacion-specs li:last-child {
    border-bottom: none;
}

.estacion-specs li span {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.estacion-specs li strong {
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.estacion-link {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    position: relative;
    z-index: 2;
    transition: letter-spacing 0.3s;
    align-self: flex-start;
}

.estacion-link:hover {
    letter-spacing: 3px;
}

/* ============================================
   JUEGOS SECTION
   ============================================ */
.juegos {
    padding: 120px 0 100px;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(0, 184, 245, 0.02), transparent);
}

.juegos-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 60px;
}

.juegos-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.juego-tab {
    background: rgba(18, 18, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.juego-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 245, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.juego-tab:hover {
    border-color: rgba(0, 184, 245, 0.4);
    transform: translateY(-4px);
}

.juego-tab:hover::before {
    opacity: 1;
}

.juego-tab.active {
    background: rgba(0, 184, 245, 0.12);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 184, 245, 0.2);
}

.juego-tab.active::before {
    opacity: 1;
}

.tab-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 184, 245, 0.25);
    background: rgba(0, 184, 245, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

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

.tab-label {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text);
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.tab-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.juego-tab.random-tab {
    background: linear-gradient(135deg, rgba(0, 184, 245, 0.15), rgba(100, 50, 200, 0.08));
    border-color: rgba(0, 184, 245, 0.3);
}

.juego-tab.random-tab:hover {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(0, 184, 245, 0.3);
}

/* Juegos grid */
.juegos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-height: 400px;
}

.juego-card {
    background: linear-gradient(180deg, rgba(18, 18, 28, 0.9), rgba(10, 10, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInCard 0.5s forwards;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.juego-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 184, 245, 0.15);
}

.juego-cover {
    position: relative;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.juego-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 40%);
}

.juego-platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border: 1px solid rgba(0, 184, 245, 0.3);
    z-index: 2;
}

.juego-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.juego-name {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.juego-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.juego-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 8px;
    background: rgba(0, 184, 245, 0.08);
    border: 1px solid rgba(0, 184, 245, 0.2);
    color: var(--accent);
    text-transform: uppercase;
}

.juego-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.juego-info .stars {
    color: var(--accent);
}

/* Placeholder covers using gradients for different games */
.cover-gen-1 { background: linear-gradient(135deg, #1a1a3e, #3d0066), radial-gradient(circle at 30% 40%, rgba(0, 184, 245, 0.3) 0%, transparent 40%); }
.cover-gen-2 { background: linear-gradient(135deg, #003d1a, #006633), radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.3) 0%, transparent 40%); }
.cover-gen-3 { background: linear-gradient(135deg, #1a0033, #0066cc), radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.3) 0%, transparent 40%); }
.cover-gen-4 { background: linear-gradient(135deg, #3d1a00, #cc3300), radial-gradient(circle at 40% 60%, rgba(255, 170, 0, 0.3) 0%, transparent 40%); }
.cover-gen-5 { background: linear-gradient(135deg, #330033, #cc0066), radial-gradient(circle at 60% 40%, rgba(255, 0, 170, 0.3) 0%, transparent 40%); }
.cover-gen-6 { background: linear-gradient(135deg, #0a3d3d, #006666), radial-gradient(circle at 30% 70%, rgba(0, 255, 200, 0.3) 0%, transparent 40%); }
.cover-gen-7 { background: linear-gradient(135deg, #3d0a0a, #660000), radial-gradient(circle at 50% 30%, rgba(255, 50, 50, 0.3) 0%, transparent 40%); }
.cover-gen-8 { background: linear-gradient(135deg, #0a0a3d, #000066), radial-gradient(circle at 40% 50%, rgba(100, 100, 255, 0.3) 0%, transparent 40%); }

/* Random modal */
.random-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.random-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.random-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(8px);
}

.random-dialog {
    position: relative;
    background: linear-gradient(160deg, #12121c, #0a0a14);
    border: 1px solid var(--accent);
    padding: 50px 40px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 80px rgba(0, 184, 245, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    animation: dialogSlide 0.4s ease;
}

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

.random-close {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 32px;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.3s;
}

.random-close:hover {
    color: var(--accent);
}

.random-header {
    text-align: center;
    margin-bottom: 30px;
}

.random-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.random-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text);
    letter-spacing: 1px;
}

.random-content {
    background: rgba(0, 184, 245, 0.05);
    border: 1px solid rgba(0, 184, 245, 0.2);
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 24px;
}

.random-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.1;
}

.random-platform {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.random-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.random-specs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.random-specs span {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 1px;
    padding: 4px 10px;
    background: rgba(0, 184, 245, 0.1);
    border: 1px solid rgba(0, 184, 245, 0.25);
}

.random-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.random-actions .btn-reservar,
.random-actions .btn-ghost {
    font-size: 11px;
    padding: 12px 20px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 120px 0 100px;
    position: relative;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(18, 18, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 14px;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

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

.faq-item.active {
    background: linear-gradient(135deg, rgba(0, 184, 245, 0.06), rgba(18, 18, 28, 0.8));
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    transition: all 0.3s;
}

.faq-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 30px;
}

.faq-q-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 184, 245, 0.3);
    background: rgba(0, 184, 245, 0.08);
    color: var(--accent);
    font-size: 22px;
    font-weight: 300;
    transition: all 0.4s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    color: #0a0a0f;
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 28px 24px 82px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   CTA / CONTACTO
   ============================================ */
.cta-section {
    padding: 100px 0;
    position: relative;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 28, 0.95), rgba(10, 10, 20, 0.95));
    border: 1px solid rgba(0, 184, 245, 0.25);
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    box-shadow: 0 0 80px rgba(0, 184, 245, 0.12);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 184, 245, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 245, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 184, 245, 0.2), transparent 70%);
    pointer-events: none;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 60px);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--text);
}

.cta-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 460px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(0, 184, 245, 0.05);
    border: 1px solid rgba(0, 184, 245, 0.15);
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.info-block svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-block div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-block strong {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
}

.info-block span {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1200px) {
    .estaciones-grid { grid-template-columns: repeat(2, 1fr); }
    .juegos-grid { grid-template-columns: repeat(3, 1fr); }
    .juegos-tabs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .estaciones { padding: 60px 0; }
    .estaciones-grid { grid-template-columns: 1fr; }

    .juegos { padding: 60px 0; }
    .juegos-tabs { grid-template-columns: 1fr; gap: 10px; }
    .juego-tab { flex-direction: row; justify-content: flex-start; padding: 16px 20px; }
    .juegos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .juego-name { font-size: 13px; }

    .faq-section { padding: 60px 0; }
    .faq-q-text { font-size: 13px; }
    .faq-question { padding: 18px 20px; gap: 14px; }
    .faq-answer p { padding: 0 20px 20px 58px; font-size: 14px; }

    .cta-section { padding: 60px 0; }
    .cta-box {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 40px;
    }

    .random-dialog { padding: 40px 24px 30px; }
    .random-name { font-size: 22px; }
}

@media (max-width: 480px) {
    .juegos-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESERVA MODAL
   ============================================ */
.reserva-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reserva-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.reserva-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.reserva-dialog {
    position: relative;
    background: linear-gradient(160deg, #12121c, #0a0a14);
    border: 1px solid var(--accent);
    width: 100%;
    max-width: 820px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 100px rgba(0, 184, 245, 0.25);
    clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
    animation: dialogSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.reserva-close {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    z-index: 5;
    transition: all 0.2s;
    line-height: 1;
}

.reserva-close:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

/* Header */
.reserva-header {
    padding: 34px 40px 24px;
    border-bottom: 1px solid var(--border);
}

.reserva-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.reserva-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.reserva-steps {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}

.reserva-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.reserva-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 120px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.step-lbl {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
}

.reserva-step.active .step-num {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 184, 245, 0.4);
}

.reserva-step.active .step-lbl { color: var(--accent); }

.reserva-step.done .step-num {
    background: rgba(0, 184, 245, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

/* Panels */
.reserva-panel {
    display: none;
    padding: 30px 40px;
    overflow-y: auto;
    flex: 1;
    min-height: 300px;
}

.reserva-panel.active { display: block; }

.reserva-panel h4 {
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Time slots scrollable */
.time-slots-section {
    margin-top: 22px;
}

.ts-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.time-slots-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255,255,255,0.05);
}

.time-slots-scroll::-webkit-scrollbar {
    height: 6px;
}

.time-slots-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}

.time-slots-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 184, 245, 0.4);
    border-radius: 3px;
}

.time-slots-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.time-slot {
    flex: 0 0 auto;
    min-width: 78px;
    padding: 14px 18px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    scroll-snap-align: start;
    cursor: pointer;
    text-align: center;
    position: relative;
}

.time-slot:hover:not(:disabled) {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 184, 245, 0.4);
}

.time-slot:disabled,
.time-slot.past {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
    color: var(--text-dim);
}

.time-slot .ts-period {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.time-slot.selected .ts-period { color: rgba(10, 10, 15, 0.7); }

/* Duration chips */
.duration-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dur-chip {
    padding: 12px 22px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    cursor: pointer;
}

.dur-chip:hover {
    border-color: rgba(0, 184, 245, 0.5);
}

.dur-chip.selected {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(0, 184, 245, 0.3);
}

/* Availability filters */
.availability-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.av-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: pointer;
}

.av-filter:hover {
    border-color: rgba(0, 184, 245, 0.4);
    color: var(--text);
}

.av-filter.active {
    background: rgba(0, 184, 245, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.av-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.av-dot.av-green { background: #27c93f; color: #27c93f; }
.av-dot.av-red { background: #ff5f56; color: #ff5f56; }
.av-dot.av-grey { background: var(--text-muted); color: var(--text-muted); box-shadow: none; }

.av-count {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 4px;
}

.av-filter.active .av-count {
    background: rgba(0, 184, 245, 0.2);
    color: var(--accent);
}

/* No stations message */
.no-stations-message {
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 95, 86, 0.05);
    border: 1px dashed rgba(255, 95, 86, 0.3);
    margin-top: 20px;
}

.no-stations-message svg {
    width: 48px;
    height: 48px;
    color: #ff5f56;
    margin-bottom: 14px;
}

.no-stations-message h5 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.no-stations-message p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Station card unavailable state */
.rs-card.unavailable {
    opacity: 0.55;
    cursor: not-allowed;
    background: rgba(255, 95, 86, 0.04);
    border-color: rgba(255, 95, 86, 0.2);
}

.rs-card.unavailable:hover {
    transform: none;
    border-color: rgba(255, 95, 86, 0.3);
}

.rs-card.unavailable::before {
    content: 'OCUPADA';
    position: absolute;
    top: 8px;
    right: 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    color: #ff5f56;
    background: rgba(255, 95, 86, 0.12);
    padding: 3px 8px;
    border: 1px solid rgba(255, 95, 86, 0.3);
    z-index: 2;
}

.rs-card.unavailable .rs-foot {
    border-top-color: rgba(255, 95, 86, 0.15);
}

.rs-busy-time {
    display: block;
    font-size: 10px;
    color: #ff5f56;
    margin-top: 6px;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

/* Platform tabs */
.reserva-platforms {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.rp-tab {
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.rp-tab:hover {
    border-color: rgba(0, 184, 245, 0.4);
    color: var(--text);
}

.rp-tab.active {
    background: rgba(0, 184, 245, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

/* Stations grid inside modal */
.reserva-stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 4px;
}

.rs-card {
    position: relative;
    background: var(--bg-3);
    border: 1px solid var(--border);
    padding: 16px 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.rs-card:hover {
    border-color: rgba(0, 184, 245, 0.5);
    transform: translateY(-2px);
}

.rs-card.selected {
    border-color: var(--accent);
    background: rgba(0, 184, 245, 0.08);
    box-shadow: 0 0 20px rgba(0, 184, 245, 0.2);
}

.rs-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--accent);
    font-weight: 900;
    font-size: 16px;
}

.rs-code {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 1px;
    background: rgba(0, 184, 245, 0.08);
    padding: 3px 8px;
    border: 1px solid rgba(0, 184, 245, 0.25);
    display: inline-block;
    margin-bottom: 8px;
}

.rs-name {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rs-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 28px;
}

.rs-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.rs-price {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
}

.rs-players {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
}

/* Form row */
.reserva-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full { grid-column: span 2; }

.form-field label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 184, 245, 0.1);
}

.form-field textarea { resize: vertical; font-family: var(--font-body); }

/* Summary box */
.reserva-summary-box {
    margin-top: 22px;
    padding: 18px 22px;
    background: rgba(0, 184, 245, 0.05);
    border: 1px solid rgba(0, 184, 245, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.sb-row strong { color: var(--text); font-weight: 700; }

.sb-row.sb-total {
    padding-top: 10px;
    border-top: 1px solid rgba(0, 184, 245, 0.15);
    font-size: 15px;
}

.sb-total strong { color: var(--accent); font-size: 22px; font-family: var(--font-display); }

.reserva-note {
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(0, 184, 245, 0.05);
    border-left: 3px solid var(--accent);
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* Success */
.reserva-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 245, 0.08);
    border-radius: 50%;
    animation: successPulse 2s infinite;
}

.success-icon svg {
    width: 60px;
    height: 60px;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 245, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 184, 245, 0); }
}

.reserva-success h4 {
    font-family: var(--font-display);
    font-size: 24px !important;
    color: var(--accent) !important;
    margin-bottom: 14px !important;
}

.reserva-success p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.reserva-code {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(0, 184, 245, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 22px;
    letter-spacing: 3px;
    margin: 14px 0;
    font-weight: 700;
}

.reserva-summary-final {
    margin-top: 24px;
    padding: 18px 22px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    text-align: left;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.reserva-summary-final strong { color: var(--text); }

/* Footer */
.reserva-footer {
    padding: 22px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.reserva-footer .spacer { flex: 1; }

.reserva-footer .btn-reservar:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading */
.reserva-loading {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
}

.reserva-loading[hidden],
.reserva-footer button[hidden] {
    display: none !important;
}

/* Banner de promoción activa dentro del modal */
.active-promo-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    margin: 0 40px;
    background: linear-gradient(135deg, rgba(0, 184, 245, 0.18), rgba(0, 184, 245, 0.06));
    border: 1px solid var(--accent);
    border-left: 4px solid var(--accent);
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.apb-icon {
    font-size: 26px;
    line-height: 1;
}

.apb-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.apb-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.apb-name {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.apb-price {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.apb-remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    transition: all 0.2s;
    line-height: 1;
    flex-shrink: 0;
    cursor: pointer;
}

.apb-remove:hover {
    color: #ff5f56;
    border-color: #ff5f56;
    background: rgba(255, 95, 86, 0.1);
}

/* Chips y filtros deshabilitados cuando hay promo */
.dur-chip:disabled,
.rp-tab:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

/* Promos selector dentro del modal (paso 1) */
.modal-promos-section {
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 184, 245, 0.18);
}

.modal-promos-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--accent);
    text-transform: uppercase;
}

.modal-promos-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
}

.modal-promos-scroll::-webkit-scrollbar { height: 6px; }
.modal-promos-scroll::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); }
.modal-promos-scroll::-webkit-scrollbar-thumb { background: rgba(0, 184, 245, 0.4); }

.mp-card {
    flex: 0 0 auto;
    min-width: 200px;
    padding: 14px 16px;
    background: rgba(0, 184, 245, 0.05);
    border: 1px solid rgba(0, 184, 245, 0.25);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.mp-card:hover {
    border-color: var(--accent);
    background: rgba(0, 184, 245, 0.1);
    transform: translateY(-2px);
}

.mp-card-name {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.mp-card-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.mp-card-price {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--accent);
    margin-top: 4px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 184, 245, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.reserva-error {
    margin-top: 16px;
    padding: 12px 18px;
    background: rgba(255, 95, 86, 0.1);
    border-left: 3px solid #ff5f56;
    color: #ffb3ae;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .reserva-header { padding: 24px 24px 20px; }
    .reserva-header h3 { font-size: 20px; }
    .reserva-steps { gap: 4px; }
    .step-lbl { font-size: 9px; }
    .reserva-panel { padding: 24px 24px; }
    .reserva-form-row { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
    .reserva-stations-grid { grid-template-columns: 1fr; max-height: 280px; }
    .reserva-footer { padding: 18px 24px; }
}

/* ============================================================
   V5 - SNACKS SECTION
   ============================================================ */
.snacks-section {
    padding: 100px 0 80px;
    position: relative;
}

.snacks-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.snack-tab {
    padding: 12px 24px;
    background: rgba(18, 18, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.snack-tab:hover {
    border-color: rgba(0, 184, 245, 0.4);
    color: var(--text);
}

.snack-tab.active {
    background: rgba(0, 184, 245, 0.12);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 184, 245, 0.2);
}

.snacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.snack-card {
    position: relative;
    background: linear-gradient(160deg, rgba(18, 18, 28, 0.9), rgba(10, 10, 15, 0.95));
    border: 1px solid rgba(0, 184, 245, 0.15);
    padding: 20px 16px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.snack-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 184, 245, 0.2);
}

.snack-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 184, 245, 0.1), transparent 70%);
    pointer-events: none;
}

.snack-image {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 184, 245, 0.06);
    border: 1px solid rgba(0, 184, 245, 0.15);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.snack-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.snack-emoji {
    font-size: 40px;
    line-height: 1;
}

.snack-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.snack-name {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.snack-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(0, 184, 245, 0.3);
}

.snack-card.snack-out {
    opacity: 0.45;
    filter: grayscale(0.5);
}

.snack-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 95, 86, 0.15);
    color: #ff5f56;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 95, 86, 0.4);
    z-index: 2;
}

.snacks-cta {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid rgba(0, 184, 245, 0.1);
    margin-top: 20px;
}

.snacks-cta p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Game card con imagen real */
.juego-cover.juego-cover-img {
    background-size: cover;
    background-position: center;
}

.juego-cover.juego-cover-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 40%);
}

.juego-cover.juego-cover-img .juego-platform-badge {
    z-index: 2;
}

/* ============================================================
   V5 - RESPONSIVE FIXES COMPLETOS
   ============================================================ */

/* Mobile menu: mostrar con clase .mobile-open en .nav-container */
body.menu-open { overflow: hidden; }

/* Banner promo activa: FORZAR layout horizontal + truncado */
.active-promo-banner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    flex-shrink: 0;
}
.active-promo-banner .apb-info {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}
.active-promo-banner .apb-info > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.active-promo-banner .apb-remove {
    flex: 0 0 auto;
}

/* Modal: flex column con footer siempre visible */
.reserva-dialog {
    display: flex !important;
    flex-direction: column !important;
    max-width: min(820px, calc(100vw - 16px));
    max-height: 95vh;
}
.reserva-header { flex: 0 0 auto; }
.reserva-panel {
    flex: 1 1 auto;
    min-height: 0 !important;
    overflow-y: auto;
}
.reserva-footer { flex: 0 0 auto; }

/* Pantallas chicas (notebooks pequeños + tablets landscape) */
@media (max-height: 800px), (max-width: 1100px) {
    .reserva-modal { padding: 10px; }
    .reserva-dialog {
        max-height: 96vh;
        clip-path: none;
    }
    .reserva-header { padding: 18px 26px 14px; }
    .reserva-header h3 { font-size: 19px; margin-bottom: 14px; }
    .reserva-steps { gap: 4px; }
    .step-num { width: 30px; height: 30px; font-size: 12px; }
    .step-lbl { font-size: 9px; }
    .reserva-panel { padding: 18px 26px; }
    .reserva-footer { padding: 14px 26px; }
    .active-promo-banner { margin: 0 26px; padding: 10px 14px; }
    .modal-promos-section { margin-bottom: 16px; padding-bottom: 14px; }
    .mp-card { min-width: 170px; padding: 12px 14px; }
    .reserva-stations-grid { max-height: 260px; }
}

/* Nest Hub y pantallas landscape muy bajas */
@media (max-height: 650px) {
    .reserva-modal { padding: 6px; }
    .reserva-dialog { max-height: 98vh; }
    .reserva-header { padding: 14px 22px 10px; }
    .reserva-header h3 { font-size: 17px; margin-bottom: 10px; }
    .reserva-steps { gap: 2px; }
    .step-num { width: 26px; height: 26px; font-size: 11px; }
    .step-lbl { font-size: 8px; }
    .reserva-panel h4 { font-size: 13px; margin-bottom: 14px; }
    .modal-promos-section { display: none; }
    .active-promo-banner { margin: 0 22px; padding: 8px 12px; gap: 8px; }
    .apb-icon { font-size: 20px; }
    .apb-name { font-size: 12px; }
    .apb-label, .apb-price { font-size: 9px; }
    .reserva-panel { padding: 14px 22px; }
    .reserva-footer { padding: 12px 22px; }
    .time-slot { min-width: 70px; padding: 10px 14px; font-size: 13px; }
    .dur-chip { padding: 10px 16px; font-size: 13px; }
}

/* Móvil estricto (≤ 600px) - modal full-screen */
@media (max-width: 600px) {
    .reserva-modal { padding: 0; align-items: stretch; }
    .reserva-dialog {
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        width: 100%;
        clip-path: none;
    }
    .reserva-header { padding: 16px 18px 12px; }
    .reserva-header h3 { font-size: 17px; margin-bottom: 12px; }
    .step-num { width: 26px; height: 26px; font-size: 11px; }
    .step-lbl { font-size: 8px; }
    .reserva-panel { padding: 14px 18px; }
    .reserva-form-row { grid-template-columns: 1fr; gap: 10px; }
    .duration-chips { gap: 6px; }
    .dur-chip { padding: 10px 14px; font-size: 13px; flex: 0 0 auto; }
    .time-slots-scroll { gap: 6px; }
    .time-slot { min-width: 66px; padding: 10px 14px; }
    .reserva-footer { padding: 12px 18px; gap: 8px; }
    .reserva-footer .btn-reservar,
    .reserva-footer .btn-ghost {
        padding: 12px 16px;
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    .active-promo-banner { margin: 0 18px; padding: 10px 12px; gap: 10px; }
    .apb-icon { font-size: 20px; }
    .apb-name { font-size: 13px; }
    .apb-label, .apb-price { font-size: 9px; }
    .modal-promos-scroll .mp-card { min-width: 150px; padding: 10px 12px; }
    .mp-card-name { font-size: 11px; }
    .mp-card-price { font-size: 16px; }
}

/* ============================================================
   V5 - HEADER MÓVIL FIX (iPhone, etc)
   ============================================================ */
@media (max-width: 900px) {
    .header {
        padding: 14px 18px !important;
        position: fixed;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .header-inner {
        display: flex !important;
        grid-template-columns: none !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .nav-container {
        display: none;
    }
    .nav-container.mobile-open {
        display: flex !important;
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid var(--accent);
        padding: 18px;
        z-index: 99;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        border-radius: 8px;
    }
    .nav-container.mobile-open .nav-list {
        flex-direction: column !important;
        gap: 2px;
        align-items: stretch;
        width: 100%;
    }
    .nav-container.mobile-open .nav-link {
        display: block;
        padding: 14px 16px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
        width: 100%;
    }
    .nav-container.mobile-open .nav-link:last-child {
        border-bottom: none;
    }
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 10px;
        cursor: pointer;
        background: transparent;
        border: none;
        z-index: 100;
    }
    .menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--accent);
        transition: all 0.3s;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .header-right { display: none; }
    .logo-text { font-size: 24px; }
    .logo-sub { font-size: 8px; letter-spacing: 2.5px; }
}

/* ============================================================
   V5 - PROMOS SECTION MOBILE FIX
   ============================================================ */
@media (max-width: 600px) {
    .promos-section { padding: 60px 0 40px; }
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .promo-card {
        clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }
    .promo-cover { height: 110px; }
    .promo-body { padding: 22px 22px 22px; }
    .promo-name { font-size: 17px; }
    .promo-price { font-size: 26px; }
    .promo-footer { flex-wrap: wrap; gap: 12px; }
    .promo-cta { width: 100%; text-align: center; padding: 12px; }
    .promo-includes li { font-size: 12px; }
}

/* ============================================================
   V5 - SECCIONES OVERFLOW FIX (Estaciones, Juegos, Snacks)
   ============================================================ */
@media (max-width: 900px) {
    .centros-header {
        flex-direction: column !important;
        gap: 20px;
        align-items: flex-start;
    }
    .centros-title-wrap {
        flex-direction: column !important;
        gap: 16px;
        width: 100%;
    }
    .centros-title { font-size: clamp(44px, 10vw, 80px) !important; }
    .ghost-title { font-size: inherit; }
    .centros-subtitle {
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 16px !important;
        margin-top: 0 !important;
        width: 100%;
    }
    .lets-play {
        font-size: 44px !important;
        text-align: left !important;
        align-self: flex-start;
    }
    .lets-play .accent { font-size: 56px !important; }
    .estaciones-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
    .snacks-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .snack-image { width: 70px; height: 70px; }
    .snack-emoji { font-size: 32px; }
    .snack-name { font-size: 12px; }
    .snack-price { font-size: 20px; }
}

/* Sections padding reduce en móvil */
@media (max-width: 600px) {
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero-stats { gap: 24px; }
    .hstat-num { font-size: 26px; }
    .hstat-lbl { font-size: 9px; }
    .snacks-section { padding: 50px 0 30px; }
    .snacks-tabs { gap: 6px; margin: 28px 0 20px; }
    .snack-tab { padding: 10px 16px; font-size: 11px; }
}
