/* =============================================================
   INDIDE — styles.css
   Arquetipo: Mouse-Reactive Gradient · paleta del logo INDIDE
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
@property --mx {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 30%;
}
@property --my {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 35%;
}

:root {
  --bg:      #0a0a0f;
  --bg-2:    #13100b;
  --ink:     #f2ebda;
  --mute:    #a89f8d;
  --accent:  #f6b21b;
  --accent-2:#ff8c3b;
  --g1: #f6b21b;
  --g2: #ff6e28;
  --g3: #3a6ea5;
  --g4: #ffd166;
  --line: rgba(242, 235, 218, 0.12);

  --sans: "Inter", system-ui, sans-serif;
  --display: "Silkscreen", "JetBrains Mono", monospace;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --pixel: "Silkscreen", "JetBrains Mono", monospace;
  --pixel-cream: #f2ebda;
  --pixel-gold: #f6b21b;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-gap: clamp(5rem, 12vh, 9rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.02; letter-spacing: -0.02em; }
ul { list-style: none; padding: 0; }
dl, dt, dd { margin: 0; }

::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: 0.6rem 1rem;
  background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--pixel);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

section { padding: var(--section-gap) var(--gutter); }

.section-head { margin-bottom: clamp(2rem, 6vh, 3.5rem); }

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-top: 0.6rem;
}

.invert-hover {
  display: inline-block;
  padding: 0 0.12em;
  margin-inline: -0.12em;
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.invert-hover:hover {
  background-color: var(--ink);
  color: var(--bg);
}

/* Defensa: elementos con reveal + split nunca invisibles */
.reveal[data-split] { opacity: 1; transform: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   3b. Splash INDIDE GAMES (doble red de seguridad)
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--bg);
  /* Seguridad CSS: se oculta solo a los 4.5s aunque el JS falle */
  animation: splashOut 0.55s var(--ease-out) 4.5s forwards;
}
.splash.is-out {
  /* La salida pisa la animación de seguridad y corre ya */
  animation: splashOut 0.55s var(--ease-out) 0s forwards;
}
@keyframes splashOut {
  to { opacity: 0; visibility: hidden; }
}

.splash-inner {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  padding: 0 1.5rem;
}
.splash-name {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: clamp(2.4rem, 10vw, 5rem);
  color: var(--pixel-cream);
  letter-spacing: 0.04em;
  line-height: 1;
}
.splash-bar {
  position: relative;
  width: min(100%, 460px);
  justify-self: stretch;
  height: 4px;
  background: rgba(246, 178, 27, 0.22);
}
.splash-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--pixel-gold);
  animation: splashLoad 1.15s steps(12, end) 0.15s forwards;
}
.splash-bar b {
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 18px;
  height: 12px;
  background: var(--pixel-gold);
  border: 2px solid #2a2118;
  box-shadow: inset -4px 0 0 #3a6ea5;
}
@keyframes splashLoad {
  to { width: 100%; }
}
.splash-sub {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: clamp(0.85rem, 2.6vw, 1.15rem);
  color: var(--pixel-gold);
  letter-spacing: 0.65em;
  margin-right: -0.65em;
}

/* =============================================================
   4. Botones
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--pixel);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.95em 1.5em;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), background-color 0.3s var(--ease-out),
              color 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(1px, 1px); }

.btn-primary {
  background: var(--accent);
  color: #241a05;
  box-shadow: 4px 4px 0 rgba(246, 178, 27, 0.28);
}
.btn-primary:hover {
  background: #ffc63f;
  box-shadow: 6px 6px 0 rgba(246, 178, 27, 0.32);
}

.btn-ghost {
  border: 2px solid var(--line);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(242, 235, 218, 0.07);
}
.btn-ghost:hover {
  border-color: var(--ink);
  box-shadow: 6px 6px 0 rgba(242, 235, 218, 0.1);
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d92c2c;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem var(--gutter);
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 15, 0.82);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(12px)) {
  .nav.is-scrolled {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}
.nav-logo img { width: 34px; height: 34px; border-radius: 6px; image-rendering: pixelated; }
.nav-name {
  font-family: var(--pixel);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-links { display: none; gap: 1.8rem; }
.nav-links a {
  position: relative;
  font-family: var(--pixel);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--mute);
  transition: color 0.3s var(--ease-out);
  padding-block: 0.3rem;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta { display: none; }

.nav-burger {
  display: grid;
  gap: 6px;
  padding: 0.6rem;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
body.nav-open .nav-burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.nav-open .nav-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* Menú móvil desplegado */
@media (max-width: 959px) {
  body.nav-open .nav {
    background: var(--bg);
    border-bottom-color: var(--line);
  }
  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    background: var(--bg);
  }
  body.nav-open .nav-links a {
    font-family: var(--pixel);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
  }
  body.nav-open { overflow: hidden; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem var(--gutter) 5rem;
  isolation: isolate;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle 680px at var(--mx, 30%) var(--my, 35%),
      rgba(246, 178, 27, 0.4) 0%, rgba(246, 178, 27, 0.15) 34%, transparent 66%),
    radial-gradient(circle 820px at calc(var(--mx, 30%) + 22%) calc(var(--my, 35%) - 14%),
      rgba(255, 110, 40, 0.34) 0%, rgba(255, 110, 40, 0.13) 36%, transparent 68%),
    radial-gradient(circle 740px at calc(var(--mx, 30%) - 18%) calc(var(--my, 35%) + 20%),
      rgba(58, 110, 165, 0.32) 0%, rgba(58, 110, 165, 0.13) 36%, transparent 68%),
    var(--bg);
  opacity: 0.85;
}

/* Sin ratón (móvil): el gradiente deriva solo, lento */
@media (hover: none) {
  .hero-gradient {
    animation: gradientDrift 16s ease-in-out infinite alternate;
  }
}
@keyframes gradientDrift {
  from { --mx: 22%; --my: 30%; transform: scale(1); }
  to   { --mx: 74%; --my: 62%; transform: scale(1.12); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(10, 10, 15, 0.85) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.55) 0%, transparent 35%, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

.hero-inner { max-width: 900px; }

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3.2rem, 13vw, 9.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 auto;
  max-width: 10ch;
  transition: color 0.35s var(--ease-out), text-shadow 0.35s var(--ease-out);
}
.hero-title:hover {
  color: var(--accent);
  text-shadow: 0 0 60px rgba(246, 178, 27, 0.45);
}

.hero-bar {
  position: relative;
  display: block;
  width: min(74%, 560px);
  height: 4px;
  margin: 1.4rem auto 0;
  background: var(--pixel-gold);
}
.hero-bar i {
  position: absolute;
  inset: 0 0 0 auto;
  width: 28%;
  background: rgba(246, 178, 27, 0.35);
}
.hero-bar b {
  position: absolute;
  right: 0;
  bottom: 7px;
  width: 18px;
  height: 12px;
  background: var(--pixel-gold);
  border: 2px solid #2a2118;
  box-shadow: inset -4px 0 0 #3a6ea5;
}

.hero-brandline {
  font-family: var(--pixel);
  font-weight: 400;
  font-size: clamp(0.72rem, 2vw, 0.95rem);
  letter-spacing: 0.42em;
  margin: 1.3rem 0 0;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-sub {
  margin: 1.5rem auto 2.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--mute);
  max-width: 34ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.6rem;
}
.hero-scroll-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--ink), transparent);
  animation: scrollHint 2.2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* =============================================================
   7. Manifiesto
   ============================================================= */
.manifesto {
  display: grid;
  place-items: center;
  text-align: center;
}
.manifesto-text {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.5;
  max-width: 32ch;
}
.manifesto-text strong { font-weight: 500; color: var(--accent); }

/* =============================================================
   8. Torre Hotel
   ============================================================= */
.game { background: var(--bg-2); border-block: 1px solid var(--line); }

.game-keyart {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}
.game-keyart img {
  width: 100%;
  will-change: transform;
  max-height: min(56vh, 600px);
  object-fit: cover;
  object-position: center 42%;
}
.game-tagline {
  font-family: var(--pixel);
  font-size: clamp(0.6rem, 1.4vw, 0.8rem);
  color: var(--pixel-gold);
  padding-top: 1rem;
  text-align: right;
  letter-spacing: 0.1em;
}

.game-body {
  display: grid;
  gap: 2rem;
  margin: 2.5rem 0 3.5rem;
  max-width: 900px;
}
.game-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink);
  max-width: 58ch;
}
.game-desc strong { color: var(--accent); }

.game-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.game-chips li {
  font-family: var(--pixel);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  padding: 0.6em 1em;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--mute);
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.game-chips li:hover { border-color: var(--accent); color: var(--ink); }

.game-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.btn-store {
  background: var(--accent);
  color: #241a05;
  box-shadow: 4px 4px 0 rgba(246, 178, 27, 0.28);
}
.btn-store:hover {
  background: #ffc63f;
  box-shadow: 6px 6px 0 rgba(246, 178, 27, 0.32);
}
.btn-store.is-soon {
  background: none;
  color: var(--mute);
  border: 2px dashed rgba(246, 178, 27, 0.45);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.chip-status {
  font-family: var(--pixel);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(246, 178, 27, 0.4);
  border-radius: 2px;
  padding: 0.6em 1em;
}

/* Carrusel de móviles */
.phones { position: relative; }
.phones-track {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  overflow-x: auto;
  overflow-y: visible;
  padding-block: 1rem 1.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
  cursor: grab;
}
.phones-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}
.phone {
  flex: 0 0 auto;
  width: clamp(200px, 24vw, 260px);
  scroll-snap-align: center;
}
.phone-frame {
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out);
}
.phone-frame img { border-radius: 24px; width: 100%; }
.phone:hover .phone-frame {
  transform: translateY(-8px);
  border-color: rgba(246, 178, 27, 0.55);
  box-shadow: 0 24px 60px -18px rgba(246, 178, 27, 0.35);
}
.phone figcaption {
  font-family: var(--pixel);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-align: center;
  padding-top: 0.85rem;
}
.phones-hint {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--mute);
  text-align: center;
  margin-top: 0.4rem;
}
@media (min-width: 1280px) { .phones-hint { display: none; } }

/* =============================================================
   9. Stats
   ============================================================= */
.stats { padding-block: clamp(4rem, 10vh, 7rem); }
.stats-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}
.stat { text-align: center; }
.stat dt {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.stat dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-unit {
  font-size: 0.3em;
  font-weight: 500;
  color: var(--accent);
  margin-left: 0.4em;
  letter-spacing: 0.05em;
}
@media (min-width: 720px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   10. Directos
   ============================================================= */
.live-rows { border-top: 1px solid var(--line); }
.live-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.4rem, 3.5vh, 2.2rem) 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out),
              padding 0.35s var(--ease-out);
}
.live-row-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 2.7rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.live-row-handle {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--mute);
  transition: color 0.35s var(--ease-out);
}
.live-row-arrow {
  font-family: var(--display);
  font-size: 1.6rem;
  transform: translateX(0);
  transition: transform 0.35s var(--ease-out);
}
.live-row:hover {
  background: var(--ink);
  color: var(--bg);
  padding-inline: 1.2rem;
}
.live-row:hover .live-row-handle { color: var(--bg); }
.live-row:hover .live-row-arrow { transform: translateX(8px); }

.live-note {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--mute);
}

/* =============================================================
   11. Sobre mí
   ============================================================= */
.about { background: var(--bg-2); border-block: 1px solid var(--line); }
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  max-width: 1100px;
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 420px;
  background:
    radial-gradient(85% 70% at 50% 32%, rgba(255, 118, 38, 0.22) 0%, transparent 72%),
    var(--bg);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.about-photo:hover img { transform: scale(1.05); }
.about-text {
  display: grid;
  gap: 1.2rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--mute);
  max-width: 52ch;
}
.about-text p:first-child { color: var(--ink); }
.about-coords {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--accent-2);
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: 4rem; }
}

/* =============================================================
   12. Contacto
   ============================================================= */
.contact {
  text-align: center;
  padding-block: clamp(6rem, 16vh, 11rem);
}
.contact-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.5vw, 3.8rem);
  margin: 0.9rem 0 2rem;
}
.contact-mail {
  position: relative;
  display: inline-block;
  font-family: var(--pixel);
  font-weight: 400;
  font-size: clamp(1rem, 3.4vw, 2.2rem);
  letter-spacing: 0.02em;
  color: var(--accent);
  padding-bottom: 0.18em;
  overflow-wrap: anywhere;
}
.contact-mail::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.contact-mail:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.contact-note {
  margin-top: 1.8rem;
  color: var(--mute);
  font-size: 0.95rem;
}

/* =============================================================
   13. Footer
   ============================================================= */
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem var(--gutter) 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.88rem;
}
.footer-mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =============================================================
   14. Reduced motion — solo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
  .live-dot { animation: none; }
  .hero-gradient { animation: none; }
  /* Tilts, hovers, fades y count-ups se mantienen */
}

/* =============================================================
   15. TORRE HOTEL — landing del juego (subdominio)
   ============================================================= */
.game-hero { min-height: auto; padding-top: 8rem; padding-bottom: 4rem; }
.game-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.game-hero-text { text-align: center; }
.game-hero .hero-title {
  font-size: clamp(2.8rem, 11vw, 7rem);
  max-width: none;
  line-height: 1;
}
.game-hero .hero-bar { margin-inline: auto; }
.game-hero .hero-sub { margin-inline: auto; }
.game-platforms {
  font-family: var(--pixel);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-top: 1.4rem;
}
.game-hero-art {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(246, 178, 27, 0.3);
}
.game-hero-art img { width: 100%; }

@media (min-width: 960px) {
  .game-hero-grid { grid-template-columns: 5fr 7fr; gap: 3.5rem; }
  .game-hero-text { text-align: left; }
  .game-hero .hero-bar { margin-inline: 0; }
  .game-hero .hero-sub { margin-inline: 0; }
}

/* Cómo se juega */
.game-how { background: var(--bg-2); border-block: 1px solid var(--line); }
.game-lead {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  max-width: 40ch;
  color: var(--ink);
  margin-bottom: 3rem;
}
.pillars {
  display: grid;
  gap: 2rem;
}
.pillar { border-top: 2px solid var(--line); padding-top: 1.2rem; }
.pillar-num {
  font-family: var(--pixel);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0.8rem 0 0.6rem;
}
.pillar p { color: var(--mute); max-width: 34ch; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }

/* Criaturas */
.creatures-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}
.creature {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.creature:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 178, 27, 0.5);
  box-shadow: 0 20px 50px -20px rgba(246, 178, 27, 0.35);
}
.creature-shot { aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg); }
.creature-shot img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.creature figcaption { display: block; padding: 1rem 1.1rem 1.2rem; }
.creature-name {
  display: block;
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.creature-desc { display: block; font-size: 0.9rem; color: var(--mute); }
@media (min-width: 560px) { .creatures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .creatures-grid { grid-template-columns: repeat(3, 1fr); } }

/* Capturas */
.game-shots { background: var(--bg-2); border-block: 1px solid var(--line); }

/* Descargar */
.download { text-align: center; padding-block: clamp(5rem, 13vh, 9rem); }
.download-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0.9rem 0 1.4rem;
}
.download-note {
  color: var(--mute);
  max-width: 46ch;
  margin: 0 auto 2.4rem;
}
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.footer-link { color: var(--accent); }
.footer-link:hover { text-decoration: underline; }
