/* PlaySpace — mobile-first design system */

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

:root {
  --bg: #030308;
  --bg-2: #08081a;
  --bg-card: rgba(10, 10, 20, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --pink: #d600a1;
  --purple: #8f39ff;
  --cyan: #00d8ff;
  --blue: #4d9fff;
  --yellow: #e8ff00;
  --green: #00ff88;
  --orange: #ff8c42;
  --white: #ffffff;
  --muted: #a8a8c8;
  --text: #ffffff;
  --font-display: "Exo 2", system-ui, sans-serif;
  --font-ui: "Exo 2", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --header-h: 64px;
  --container: min(1120px, 100% - 2rem);
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --glow-pink: 0 0 20px rgba(214, 0, 161, 0.5), 0 0 40px rgba(214, 0, 161, 0.2);
  --glow-cyan: 0 0 20px rgba(0, 216, 255, 0.5), 0 0 40px rgba(0, 216, 255, 0.2);
  --glow-yellow: 0 0 12px rgba(232, 255, 0, 0.55), 0 0 28px rgba(232, 255, 0, 0.25);
  --glow-green: 0 0 16px rgba(0, 255, 136, 0.45);
  --neon-border: rgba(0, 216, 255, 0.45);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before { display: none; }

/* Arcade atmosphere (reserva.playspace.cl) */
.arcade-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(214, 0, 161, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(0, 216, 255, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, rgba(232, 255, 0, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 55%, rgba(143, 57, 255, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, #030308 0%, #08081a 50%, #030308 100%);
  animation: bg-neon-pulse 8s ease-in-out infinite alternate;
}

@keyframes bg-neon-pulse {
  0% { filter: brightness(1) saturate(1); }
  100% { filter: brightness(1.08) saturate(1.15); }
}

.arcade-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 216, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 0, 161, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

.arcade-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(214, 0, 161, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0, 216, 255, 0.1) 0%, transparent 25%);
  animation: orb-float 12s ease-in-out infinite alternate;
}

@keyframes orb-float {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.crt-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

.crt-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 70%, rgba(0, 0, 0, 0.22) 100%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

main {
  position: relative;
  z-index: 1;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff1fb8);
  color: var(--white);
  box-shadow: var(--glow-pink);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 0 24px rgba(214, 0, 161, 0.7), 0 0 48px rgba(214, 0, 161, 0.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(0, 216, 255, 0.1);
  border: 1px solid rgba(0, 216, 255, 0.55);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 216, 255, 0.2), inset 0 0 20px rgba(0, 216, 255, 0.06);
  text-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
}
.btn-secondary:hover {
  box-shadow: 0 0 24px rgba(0, 216, 255, 0.45), inset 0 0 24px rgba(0, 216, 255, 0.1);
  border-color: var(--cyan);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}
.btn-ghost:hover {
  border-color: rgba(232, 255, 0, 0.45);
  box-shadow: 0 0 20px rgba(232, 255, 0, 0.15);
  color: var(--yellow);
}
.btn-lg { min-height: 52px; padding: 0.85rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(3, 3, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 216, 255, 0.15);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 216, 255, 0.12);
}

.header-brand-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--yellow), var(--pink));
  background-size: 200% 100%;
  animation: brand-line-shift 4s linear infinite;
}

@keyframes brand-line-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: clamp(34px, 9vw, 48px);
  width: auto;
  max-width: min(180px, 46vw);
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 216, 255, 0.4)) drop-shadow(0 0 18px rgba(214, 0, 161, 0.25));
}

.nav-desktop {
  display: none;
  margin-left: auto;
  gap: 1.5rem;
}
.nav-desktop a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-desktop a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 216, 255, 0.6);
}

.btn-header { display: none; margin-left: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1rem 2rem;
  background: rgba(7, 7, 18, 0.97);
  backdrop-filter: blur(16px);
  overflow-y: auto;
}
.nav-mobile[hidden] { display: none !important; }
.nav-mobile a {
  display: block;
  padding: 1rem;
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 1rem; }

/* Hero — fondo full-bleed + texto encima */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-backdrop img,
.hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: hero-pan 22s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 8, 0.92) 0%, rgba(3, 3, 8, 0.72) 42%, rgba(3, 3, 8, 0.45) 100%),
    linear-gradient(180deg, rgba(3, 3, 8, 0.55) 0%, transparent 28%, rgba(3, 3, 8, 0.88) 100%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 75% 25%, rgba(214, 0, 161, 0.18), transparent 42%),
    radial-gradient(circle at 15% 75%, rgba(0, 216, 255, 0.12), transparent 38%);
  animation: hero-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-glow {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}
@keyframes hero-pan {
  from { transform: scale(1.06); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 42rem;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 14px rgba(0, 216, 255, 0.7);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 9vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.glitch {
  position: relative;
  color: var(--white);
  filter: drop-shadow(0 0 18px rgba(0, 216, 255, 0.35)) drop-shadow(0 0 36px rgba(214, 0, 161, 0.2));
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--cyan);
  animation: glitch-1 3s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: 2px 0 var(--pink);
  animation: glitch-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
  0%, 90%, 100% { clip-path: inset(0 0 95% 0); transform: translate(0); }
  92% { clip-path: inset(30% 0 40% 0); transform: translate(-3px, 1px); }
  94% { clip-path: inset(60% 0 10% 0); transform: translate(3px, -1px); }
}

@keyframes glitch-2 {
  0%, 88%, 100% { clip-path: inset(95% 0 0 0); transform: translate(0); }
  90% { clip-path: inset(10% 0 60% 0); transform: translate(2px, 1px); }
  92% { clip-path: inset(40% 0 30% 0); transform: translate(-2px, -1px); }
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}
.hero-actions .btn {
  flex: 0 1 auto;
}
.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-width: 6rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(0, 216, 255, 0.3);
  border-radius: 12px;
  background: rgba(3, 3, 8, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(0, 216, 255, 0.12), inset 0 0 12px rgba(0, 216, 255, 0.04);
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--yellow);
  line-height: 1;
  text-shadow: var(--glow-yellow);
}
.hero-stats span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.section-dark {
  background: var(--bg-2);
  box-shadow: inset 0 1px 0 rgba(0, 216, 255, 0.08), inset 0 -1px 0 rgba(214, 0, 161, 0.08);
}
.section-accent {
  background: linear-gradient(180deg, rgba(214, 0, 161, 0.14) 0%, rgba(0, 216, 255, 0.04) 50%, var(--bg) 100%);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(214, 0, 161, 0.6);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(214, 0, 161, 0.35);
  border-radius: 999px;
  background: rgba(214, 0, 161, 0.08);
  box-shadow: 0 0 16px rgba(214, 0, 161, 0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(0, 216, 255, 0.25), 0 0 40px rgba(214, 0, 161, 0.12);
}
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head-left { text-align: left; }
.section-desc {
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  font-size: 1rem;
}

/* Experience cards */
.exp-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.exp-card {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(12, 16, 40, 0.95), rgba(6, 8, 16, 0.98));
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 216, 255, 0.3);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.exp-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 216, 255, 0.15);
}
.exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.exp-card:hover .exp-media img { transform: scale(1.05); }
.exp-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3, 3, 8, 0.75) 100%);
  pointer-events: none;
}
.exp-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--yellow));
  background-size: 200% 100%;
  animation: brand-line-shift 3s linear infinite;
  opacity: 1;
}
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(0, 216, 255, 0.03);
  transition: box-shadow 0.25s;
}
.exp-card:hover {
  border-color: rgba(0, 216, 255, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 216, 255, 0.2), 0 0 48px rgba(214, 0, 161, 0.1);
}
.exp-card:hover::after {
  box-shadow: inset 0 0 40px rgba(0, 216, 255, 0.06);
}
.exp-featured {
  border-color: rgba(214, 0, 161, 0.45);
  background: linear-gradient(145deg, rgba(214, 0, 161, 0.12), rgba(12, 16, 40, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(214, 0, 161, 0.15);
}
.exp-body h3 {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.exp-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.85rem; flex: 1; }
.exp-icon { display: none; }
.exp-link {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(0, 216, 255, 0.4);
  transition: text-shadow 0.2s, color 0.2s;
}
.exp-link:hover {
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
}

/* Series art crop — centro del póster, sin títulos del juego */
.series-art {
  position: relative;
  overflow: hidden;
  background: #030308;
}
.series-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--series-art-pos, center 40%);
  transform: scale(var(--series-art-scale, 1.58));
  transform-origin: var(--series-art-pos, center 40%);
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.world-beyond .series-art::before,
.world-survive .series-art::before {
  background:
    linear-gradient(180deg, rgba(3, 3, 8, 0.98) 0%, rgba(3, 3, 8, 0.7) 16%, transparent 24%, transparent 72%, rgba(3, 3, 8, 0.92) 100%),
    radial-gradient(ellipse 88% 68% at 50% 42%, transparent 18%, rgba(3, 3, 8, 0.5) 100%);
}
.world-card:hover .series-art > img {
  transform: scale(calc(var(--series-art-scale, 1.58) + 0.1));
  filter: saturate(1.18) contrast(1.08);
}
.series-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 3, 8, 0.95) 0%, transparent 20%, transparent 75%, rgba(3, 3, 8, 0.92) 100%),
    radial-gradient(ellipse 88% 68% at 50% 42%, transparent 18%, rgba(3, 3, 8, 0.5) 100%);
}
.series-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035) 0,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}
.world-park .series-art { box-shadow: inset 0 0 70px rgba(0, 255, 136, 0.14); }
.world-escape .series-art { box-shadow: inset 0 0 70px rgba(0, 216, 255, 0.14); }
.world-venture .series-art { box-shadow: inset 0 0 70px rgba(77, 159, 255, 0.14); }
.world-beyond .series-art { box-shadow: inset 0 0 70px rgba(214, 0, 161, 0.14); }
.world-survive .series-art { box-shadow: inset 0 0 70px rgba(255, 140, 66, 0.14); }

/* Worlds scroll */
.worlds-scroll {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.worlds-scroll::-webkit-scrollbar { display: none; }
.world-card {
  flex: 0 0 min(68vw, 200px);
  scroll-snap-align: start;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.world-card-media {
  aspect-ratio: 2 / 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.world-card-body {
  padding: 0.85rem 1rem 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}
.world-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.25rem;
}
.world-card-body p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.35;
}
.world-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.world-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(0, 216, 255, 0.5);
  box-shadow: 0 0 24px rgba(0, 216, 255, 0.2);
}
.world-card span:not(.world-card-media):not(.world-card-body):not(.world-card-name) {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.35rem;
}
.world-card p:not(.world-card-body p) { font-size: 0.85rem; color: var(--muted); }
.world-park .world-card-name,
.world-park span:not(.world-card-media):not(.world-card-body) { color: var(--green); text-shadow: var(--glow-green); }
.world-escape .world-card-name,
.world-escape span:not(.world-card-media):not(.world-card-body) { color: var(--cyan); text-shadow: 0 0 14px rgba(0, 216, 255, 0.6); }
.world-venture .world-card-name,
.world-venture span:not(.world-card-media):not(.world-card-body) { color: var(--blue); text-shadow: 0 0 14px rgba(77, 159, 255, 0.6); }
.world-beyond .world-card-name,
.world-beyond span:not(.world-card-media):not(.world-card-body) { color: var(--pink); text-shadow: 0 0 14px rgba(214, 0, 161, 0.6); }
.world-survive .world-card-name,
.world-survive span:not(.world-card-media):not(.world-card-body) { color: var(--orange); text-shadow: 0 0 14px rgba(255, 140, 66, 0.6); }
.world-park:hover { border-color: rgba(0, 255, 136, 0.45); box-shadow: 0 0 24px rgba(0, 255, 136, 0.18); }
.world-escape:hover { border-color: rgba(0, 216, 255, 0.5); }
.world-venture:hover { border-color: rgba(77, 159, 255, 0.5); box-shadow: 0 0 24px rgba(77, 159, 255, 0.18); }
.world-beyond:hover { border-color: rgba(214, 0, 161, 0.5); box-shadow: 0 0 24px rgba(214, 0, 161, 0.18); }
.world-survive:hover { border-color: rgba(255, 140, 66, 0.5); box-shadow: 0 0 24px rgba(255, 140, 66, 0.18); }

/* World modal */
.world-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.world-modal[hidden] { display: none; }
.world-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 8, 0.82);
  backdrop-filter: blur(6px);
}
.world-modal-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(88vh, 720px);
  overflow: auto;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 255, 0.35);
  background: linear-gradient(165deg, rgba(12, 12, 24, 0.98), rgba(3, 3, 8, 0.98));
  box-shadow: 0 0 40px rgba(0, 216, 255, 0.15);
}
.world-modal-hero {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius) var(--radius) 0 0;
}
.world-modal-body {
  padding: 0 1.5rem 1.5rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 3;
}
.world-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.world-modal-close:hover { background: rgba(255, 255, 255, 0.14); }
.world-modal-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}
.world-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
}
.world-modal-tagline { color: var(--muted); margin: 0 0 1rem; font-size: 0.95rem; }
.world-modal-desc { margin: 0 0 0.75rem; line-height: 1.55; }
.world-modal-age { margin: 0 0 1.25rem; font-size: 0.9rem; color: var(--muted); }
.world-modal-games-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.65rem;
}
.world-modal-games {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.world-modal-games a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cyan);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.world-modal-games a:hover {
  background: rgba(0, 216, 255, 0.1);
  border-color: rgba(0, 216, 255, 0.35);
}
.world-modal-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.world-modal-panel.world-park .world-modal-title { color: var(--green); }
.world-modal-panel.world-escape .world-modal-title { color: var(--cyan); }
.world-modal-panel.world-venture .world-modal-title { color: var(--blue); }
.world-modal-panel.world-beyond .world-modal-title { color: var(--pink); }
.world-modal-panel.world-survive .world-modal-title { color: var(--orange); }

/* Catalog series banner */
.catalog-series-banner {
  margin-bottom: 2rem;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 216, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.catalog-series-hero {
  aspect-ratio: 21 / 9;
  max-height: 280px;
}
.catalog-series-inner {
  padding: 0 1.5rem 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}
.catalog-series-back {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}
.catalog-series-back:hover { color: var(--cyan); }
.catalog-series-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}
.catalog-series-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
}
.catalog-series-lead { color: var(--muted); margin: 0 0 0.75rem; }
.catalog-series-desc { margin: 0 0 0.65rem; line-height: 1.55; max-width: 62ch; }
.catalog-series-age { margin: 0; font-size: 0.9rem; color: var(--muted); }
.catalog-series-banner.world-park .catalog-series-title { color: var(--green); }
.catalog-series-banner.world-escape .catalog-series-title { color: var(--cyan); }
.catalog-series-banner.world-venture .catalog-series-title { color: var(--blue); }
.catalog-series-banner.world-beyond .catalog-series-title { color: var(--pink); }
.catalog-series-banner.world-survive .catalog-series-title { color: var(--orange); }

/* Prices */
.price-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: 320px;
  margin-inline: auto;
}
.price-toggle-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.price-toggle-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 0 16px rgba(214, 0, 161, 0.45);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.price-card {
  background: linear-gradient(180deg, #0c1028 0%, rgba(10, 10, 20, 0.95) 100%);
  border: 1px solid rgba(0, 216, 255, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover {
  border-color: rgba(0, 216, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 216, 255, 0.18);
}
.price-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(214, 0, 161, 0.35);
}
.theme-blue .price-card-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.theme-green .price-card-icon { background: linear-gradient(135deg, #02b764, var(--green)); }
.theme-orange .price-card-icon { background: linear-gradient(135deg, var(--pink), var(--orange)); }
.theme-cyan .price-card-icon { background: linear-gradient(135deg, var(--cyan), var(--blue)); }

.price-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(0, 216, 255, 0.12);
  background: linear-gradient(90deg, rgba(214, 0, 161, 0.06), transparent);
}

.price-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.price-card-header p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.price-card-body { padding: 0.75rem 1rem 1rem; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.65rem;
  border-radius: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-row:last-child { border-bottom: none; }
.price-row.recommended {
  background: rgba(0, 234, 255, 0.06);
  border: 1px solid rgba(0, 234, 255, 0.15);
}
.price-row-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.price-row-detail { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.price-row-prices { text-align: right; flex-shrink: 0; }
.price-old {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
}
.price-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--bg);
  margin-left: 6px;
  vertical-align: middle;
}

.racing-group {
  padding: 0.65rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.racing-group-title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--green);
}
.racing-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}
.racing-line strong { color: var(--yellow); font-family: var(--font-display); }

/* Birthday / plan cards (reserva.playspace.cl) */
.birthday-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.plan-card-showcase {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0c1028 0%, #060810 100%);
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 1px rgba(214, 0, 161, 0.2);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.plan-card-showcase:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 216, 255, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(0, 216, 255, 0.25), 0 0 48px rgba(214, 0, 161, 0.12);
}

.plan-card-showcase.recommended {
  border-color: rgba(232, 255, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(232, 255, 0, 0.12);
}

.plan-card-head {
  padding: 1.25rem 1.25rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 216, 255, 0.12);
  background: linear-gradient(180deg, rgba(214, 0, 161, 0.08) 0%, transparent 100%);
}

.plan-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--yellow);
  line-height: 1.2;
  text-shadow: var(--glow-yellow);
}

.plan-price-tiers {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-price-tier {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-price-tier-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  line-height: 1.3;
}

.plan-price-tier-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.plan-price-tier.is-active .plan-price-tier-value {
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
}

.plan-block--diffs {
  background: linear-gradient(180deg, rgba(214, 0, 161, 0.06) 0%, transparent 100%);
}

.plan-block-title {
  margin: 0;
  padding: 0.85rem 1.25rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--yellow);
  text-shadow: 0 0 10px rgba(232, 255, 0, 0.2);
}

.plan-key-diffs {
  --plan-key-label-width: 4.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0 1.25rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(214, 0, 161, 0.14) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(232, 255, 0, 0.1) 100%
  );
  border-top: 1px solid rgba(232, 255, 0, 0.12);
  border-bottom: 1px solid rgba(232, 255, 0, 0.12);
}

.plan-key-diff {
  display: grid;
  grid-template-columns: var(--plan-key-label-width) minmax(0, 1fr);
  column-gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-key-diff-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cyan);
  line-height: 1.25;
}

.plan-key-diff-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.35;
}

.plan-card-footer {
  margin-top: auto;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

.btn-plan-reserve { width: 100%; }

.plan-pay-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.birthday-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* Gallery */
.gallery-cta {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 216, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 28px rgba(0, 216, 255, 0.1), inset 0 0 32px rgba(214, 0, 161, 0.04);
}
.gallery-cta p { color: var(--muted); margin-bottom: 1.25rem; }

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.review-card {
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 216, 255, 0.2);
  border-radius: var(--radius);
  border-left: 3px solid var(--pink);
  box-shadow: 0 0 20px rgba(214, 0, 161, 0.1), inset 0 0 24px rgba(0, 216, 255, 0.03);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.review-card:hover {
  border-color: rgba(0, 216, 255, 0.35);
  box-shadow: 0 0 28px rgba(0, 216, 255, 0.15), inset 0 0 30px rgba(0, 216, 255, 0.05);
}
.review-card p { font-size: 0.95rem; margin-bottom: 0.75rem; font-style: italic; }
.review-card footer {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 216, 255, 0.4);
}

/* Location */
.location-grid { display: grid; gap: 1.5rem; }
.location-address p { margin-bottom: 0.35rem; font-size: 1.05rem; }
.location-hours {
  list-style: none;
  margin: 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.location-hours li { margin-bottom: 0.35rem; }
.location-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 216, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 216, 255, 0.12);
  min-height: 260px;
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; border: 0; min-height: 260px; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 calc(2rem + var(--safe-bottom) + 72px);
  border-top: 1px solid rgba(0, 216, 255, 0.25);
  background: var(--bg-2);
  box-shadow: 0 -4px 32px rgba(0, 216, 255, 0.06);
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(0, 216, 255, 0.3));
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--cyan);
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--cyan);
  background: rgba(0,234,255,0.08);
}
.footer-contact {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.footer-contact a {
  color: var(--cyan);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

.nav-desktop a[aria-current="page"],
.nav-mobile a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0, 216, 255, 0.65);
}

/* Inner pages */
.page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2rem) 0 2rem;
  border-bottom: 1px solid rgba(0, 216, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(214, 0, 161, 0.12) 0%, rgba(0, 216, 255, 0.04) 50%, transparent 100%);
  box-shadow: 0 4px 32px rgba(0, 216, 255, 0.06);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 24px rgba(0, 216, 255, 0.3), 0 0 48px rgba(214, 0, 161, 0.15);
}

.page-lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb span::before { content: "›"; margin-right: 0.35rem; color: var(--pink); }

.content-narrow { max-width: 720px; margin-inline: auto; }
.content-narrow p { color: var(--muted); margin-bottom: 1rem; }

.section-cta { text-align: center; margin-top: 1.5rem; }

/* Visit dual — walk-in vs cumpleaños */
.visit-dual {
  display: grid;
  gap: 1.25rem;
}
.visit-dual-compact {
  gap: 1rem;
}
.visit-card-media-compact {
  aspect-ratio: 16 / 9;
}
.visit-card-body p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (min-width: 768px) {
  .visit-dual { grid-template-columns: 1fr 1fr; }
}
.visit-card {
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 216, 255, 0.2);
  background: linear-gradient(145deg, rgba(12, 16, 40, 0.95), rgba(6, 8, 16, 0.98));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.visit-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.visit-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.visit-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 8, 16, 0.85) 100%);
  pointer-events: none;
}
.visit-card-primary .visit-card-media::after {
  background: linear-gradient(180deg, transparent 40%, rgba(12, 8, 20, 0.88) 100%);
}
.visit-card:hover .visit-card-media img { transform: scale(1.05); }
.visit-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.visit-card-primary {
  border-color: rgba(214, 0, 161, 0.45);
  background: linear-gradient(145deg, rgba(214, 0, 161, 0.12), rgba(12, 16, 40, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(214, 0, 161, 0.12);
}
.visit-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.visit-card-primary .visit-card-tag { color: var(--pink); }
.visit-card h3 {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.visit-card-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.visit-card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.visit-card-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.visit-card-primary .visit-card-list li::before { color: var(--pink); }
.visit-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.exp-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.35rem;
}

.promo-banner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(0, 216, 255, 0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(214, 0, 161, 0.1), rgba(0, 0, 0, 0.5), rgba(0, 216, 255, 0.08));
  box-shadow: 0 0 32px rgba(214, 0, 161, 0.15), 0 0 48px rgba(0, 216, 255, 0.08), inset 0 0 40px rgba(0, 216, 255, 0.03);
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0;
}
.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.feature-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--pink);
}

.exp-card h3 a { color: inherit; }
.exp-card h3 a:hover { color: var(--cyan); }

.faq-list { display: grid; gap: 1rem; }
.faq-item {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.faq-item dt {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--yellow);
}
.faq-item dd { color: var(--muted); font-size: 0.95rem; }
.faq-item a { color: var(--cyan); }

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-card {
  padding: 1.5rem;
  border: 1px solid rgba(0, 216, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 20px rgba(0, 216, 255, 0.08);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.contact-card:hover {
  border-color: rgba(0, 216, 255, 0.5);
  box-shadow: 0 0 28px rgba(0, 216, 255, 0.18);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
}
.contact-card p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 216, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 20px rgba(0, 216, 255, 0.08);
}
.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.form-field {
  display: grid;
  gap: 0.35rem;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--yellow);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 216, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 216, 255, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 8rem; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions { margin-top: 0.25rem; }
.form-status {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.form-status.is-success { color: #7dffb3; }
.form-status.is-error { color: #ff8a8a; }

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.catalog-filter-btn {
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.catalog-filter-btn.active,
.catalog-filter-btn:hover {
  background: rgba(0, 216, 255, 0.12);
  border-color: rgba(0, 216, 255, 0.35);
  color: var(--cyan);
}

.catalog-category {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.catalog-category-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.catalog-category-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.catalog-games {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.game-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.game-card:hover {
  border-color: rgba(0, 216, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 216, 255, 0.12);
}
.game-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.game-card-media {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}
.game-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.game-card:hover .game-card-media img { transform: scale(1.04); }
.game-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.game-card-body h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.game-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-list {
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  list-style: none;
}
.catalog-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 0.85rem;
  position: relative;
}
.catalog-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* Photo gallery */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.photo-grid-home { grid-template-columns: 1fr; }
.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 216, 255, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 216, 255, 0.08);
  background: #000;
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  background: linear-gradient(180deg, transparent, rgba(3, 3, 8, 0.92));
  text-shadow: var(--glow-yellow);
}
.photo-card-lg { grid-column: span 2; }
.photo-card-lg img { aspect-ratio: 16 / 10; }

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 900;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fab-pulse 2.5s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 0 32px rgba(37, 211, 102, 0.7), 0 8px 32px rgba(37, 211, 102, 0.55); }
}
.fab-whatsapp:hover { transform: scale(1.08); }

/* Ficha de juego */
.product-detail {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.product-detail-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 216, 255, 0.08);
}
.product-detail-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.product-description {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.product-category-link {
  color: var(--muted);
  font-size: 0.95rem;
}
.product-category-link a {
  color: var(--cyan);
  font-weight: 600;
}
.service-detail .product-detail-media,
.service-detail .product-detail-media img {
  aspect-ratio: 16 / 10;
}

/* Tablet+ */
@media (min-width: 640px) {
  .hero-stats {
    gap: 1.5rem 2rem;
  }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-featured { grid-column: span 2; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid-home { grid-template-columns: repeat(2, 1fr); }
  .photo-card-lg { grid-column: span 2; }
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: none; }
  .nav-desktop { display: flex; margin-left: auto; margin-right: 0.25rem; }
  .btn-header { display: inline-flex; margin-left: 0.5rem; }
  .exp-featured { grid-column: span 1; }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: minmax(280px, 360px) 1fr; gap: 2.5rem; }
}

@media (min-width: 900px) {
  .birthday-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .hero { padding-bottom: 5rem; }
  .hero-content { max-width: 44rem; }
  .section { padding: 5rem 0; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.birthday-section { grid-column: span 2; }
}

@media (min-width: 1100px) {
  .header-brand-line { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .arcade-bg,
  .arcade-bg::before,
  .arcade-bg::after,
  .crt-overlay,
  .hero-grid,
  .hero-backdrop img,
  .hero-backdrop video,
  .header-brand-line,
  .fab-whatsapp,
  .exp-card::before,
  .glitch::before,
  .glitch::after {
    animation: none !important;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
