/* ===== Variables & Reset ===== */
:root {
  --bg:        #05060f;
  --bg-2:      #080a1a;
  --panel:     #0c1024;
  --panel-2:   #0e1330;
  --border:    rgba(150, 120, 255, 0.14);
  --border-2:  rgba(150, 120, 255, 0.28);
  --text:      #ece8ff;
  --muted:     #948cb8;
  /* Paleta de marca Sukami: morado (principal) + verde neón (acento).
     Los nombres --blue/--cyan se mantienen por compatibilidad pero ahora son morado/verde. */
  --blue:      #7c3aed;
  --blue-2:    #9b5cff;
  --cyan:      #4ade4e;
  --purple:    #9b5cff;
  --purple-2:  #b14dff;
  --green:     #4ade4e;
  --green-2:   #6ef06e;
  --star:      #ffc24b;
  --radius:    16px;
  --maxw:      1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  background-image:
    radial-gradient(900px 500px at 80% -5%, rgba(124,58,237,0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 30%, rgba(155,92,255,0.08), transparent 55%);
}

h1, h2, h3, .brand__text, .eyebrow, .kicker, .stars { font-family: 'Orbitron', sans-serif; letter-spacing: .04em; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}
.btn--lg { padding: 16px 32px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color: #fff;
  box-shadow: 0 8px 26px rgba(124,58,237,0.45);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124,58,237,0.6); }
.btn--purple {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  color: #fff;
  box-shadow: 0 8px 26px rgba(155,92,255,0.5);
}
.btn--purple:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(155,92,255,0.65); }
.btn--ghost {
  background: rgba(255,255,255,0.02);
  border-color: var(--border-2);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,6,15,0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__icon { color: var(--blue-2); display: grid; place-items: center; }
.brand__text { font-size: 20px; font-weight: 800; }
.brand__logo { height: 48px; width: auto; display: block; }
.brand__logo--footer { height: 84px; }
/* Wordmark de texto en el menú */
.brand--text { display: inline-flex; align-items: baseline; gap: 8px; }
.brand__name { font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 23px; letter-spacing: .06em; color: #fff; line-height: 1; }
.brand__uy { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .22em; color: #4ade4e; text-shadow: 0 0 12px rgba(74,222,78,0.5); line-height: 1; }
@media (max-width: 560px) { .brand__name { font-size: 19px; } .brand__uy { font-size: 10px; letter-spacing: .15em; } }

/* Video del hero */
.console-frame--video video { display: block; width: 100%; max-height: 500px; object-fit: cover; background: #05060f; }

/* Galería de videos */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery__item { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 14px; border: 1px solid var(--border-2); cursor: pointer; background: #05060f; transition: transform .2s ease, box-shadow .25s ease; }
.gallery__item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(155,92,255,0.3); }
.gallery__item.is-playing { box-shadow: 0 0 0 2px var(--purple), 0 18px 44px rgba(155,92,255,0.45); }
.gallery__hint { text-align: center; color: var(--muted); font-size: 13px; margin-top: 16px; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .gallery { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }
.brand__text strong { color: var(--blue-2); font-weight: 800; }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--muted); padding: 6px 0; position: relative;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--blue-2); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--blue-2); box-shadow: 0 0 10px var(--blue-2);
}
.nav__cta-mobile { display: none; }

.nav__actions { display: flex; align-items: center; gap: 22px; }
.link-login { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.link-login:hover { color: var(--text); }

/* Hamburger button */
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; width: 36px; height: 36px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 60; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; padding: 70px 0 60px;
  background:
    linear-gradient(90deg, rgba(5,6,15,0.95) 0%, rgba(5,6,15,0.78) 45%, rgba(5,6,15,0.55) 100%),
    linear-gradient(180deg, rgba(5,6,15,0.45), rgba(5,6,15,0.92)),
    url("https://images.unsplash.com/photo-1601042879364-f3947d3f9c16?w=1600&q=75&fm=jpg&fit=crop") center/cover no-repeat;
}
/* Hero con video de fondo a pantalla completa */
.hero--video { background: #05060f; padding: 90px 0 60px; min-height: 84vh; display: flex; flex-direction: column; justify-content: center; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; filter: brightness(1.18) saturate(1.08); }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,6,15,0.82) 0%, rgba(5,6,15,0.45) 38%, rgba(5,6,15,0.12) 72%, rgba(5,6,15,0) 100%),
    linear-gradient(180deg, rgba(5,6,15,0.1) 0%, rgba(5,6,15,0) 35%, rgba(5,6,15,0.55) 100%); }
.hero > .container { position: relative; z-index: 2; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(600px 400px at 70% 35%, rgba(74,222,78,0.18), transparent 60%);
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero--video .hero__inner { grid-template-columns: 1fr; max-width: 720px; }

.eyebrow { color: var(--blue-2); font-size: 13px; font-weight: 600; letter-spacing: .25em; margin-bottom: 18px; }
.hero__title { font-size: clamp(40px, 6vw, 76px); font-weight: 900; line-height: 1.02; letter-spacing: .02em; }
.grad {
  background: linear-gradient(100deg, var(--cyan), var(--blue-2) 40%, var(--purple-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--muted); font-size: 18px; max-width: 460px; margin: 22px 0 32px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.avatars { display: flex; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -10px; background: linear-gradient(135deg, #3a4170, #5a6ab0);
}
.avatar:first-child { margin-left: 0; }
.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; }
.stars .half { opacity: .4; }
.social-proof__text p { font-size: 13px; color: var(--muted); }
.social-proof__text strong { color: var(--text); }

/* Hero visual (real console photo) */
.hero__visual { display: grid; place-items: center; min-height: 420px; position: relative; }
.console-frame {
  position: relative; width: 100%; max-width: 360px; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 34px 90px rgba(124,58,237,0.4), 0 0 70px rgba(155,92,255,0.28);
}
.console-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
  box-shadow: inset 0 0 60px rgba(74,222,78,0.18);
}
.console-frame img { display: block; width: 100%; height: auto; max-height: 480px; object-fit: cover; }

/* ===== Features bar ===== */
.features-scroll { overflow: visible; }
.features {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin-top: 50px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--blue-2); background: rgba(124,58,237,0.12); border: 1px solid var(--border-2);
}
.feature h3 { font-size: 13px; letter-spacing: .06em; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--muted); }

/* ===== Zone checker ===== */
.zone-check { max-width: 520px; margin: 0 auto; }
.zone-check__input { display: flex; gap: 10px; }
.zone-check__input input { flex: 1; padding: 14px 16px; border-radius: 12px; font-size: 15px;
  background: var(--panel); border: 1px solid var(--border-2); color: var(--text); }
.zone-check__input input:focus { border-color: var(--blue-2); outline: none;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18); }
.zone-check__suggestions { list-style: none; margin-top: 4px; border-radius: 12px; overflow: hidden;
  background: var(--panel-2); border: 1px solid var(--border-2); }
.zone-check__suggestions:empty { display: none; }
.zone-check__suggestions li { padding: 12px 16px; font-size: 14px; color: var(--text); cursor: pointer;
  border-bottom: 1px solid var(--border); transition: background .15s; }
.zone-check__suggestions li:last-child { border-bottom: none; }
.zone-check__suggestions li:hover { background: rgba(124,58,237,0.12); }
.zone-check__result { margin-top: 16px; font-size: 17px; font-weight: 600; min-height: 24px; text-align: center;
  padding: 14px 20px; border-radius: 12px; line-height: 1.5; }
.zone-check__result:empty { display: none; }
.zone-check__result.ok { color: #5fd07a; background: rgba(95,208,122,0.1); border: 1px solid rgba(95,208,122,0.25); }
.zone-check__result.ok a { color: var(--blue-2); font-weight: 700; text-decoration: underline; }
.zone-check__result.bad { color: #ff6b6b; background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.25); }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.kicker { text-align: center; color: var(--blue-2); font-size: 12px; letter-spacing: .25em; margin-bottom: 12px; }
.section__title { text-align: center; font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
.section__rule { width: 70px; height: 3px; margin: 18px auto 56px; border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple-2)); box-shadow: 0 0 14px rgba(74,222,78,0.6); }

/* ===== Plans ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.plans__note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 30px; max-width: 640px; margin-left: auto; margin-right: auto; }
.plans__note strong { color: var(--text); }
.plan {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 28px;
}
.plan--featured {
  border-color: var(--purple); margin-top: -14px;
  box-shadow: 0 0 0 1px rgba(155,92,255,0.4), 0 24px 60px rgba(155,92,255,0.22);
  background: linear-gradient(180deg, #120d2e, #0a0a1e);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--purple-2), var(--purple)); color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: 11px; letter-spacing: .12em; font-weight: 700;
  padding: 6px 18px; border-radius: 20px; box-shadow: 0 6px 18px rgba(155,92,255,0.5);
}
.plan__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.plan__icon {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  color: var(--blue-2); background: rgba(124,58,237,0.12); border: 1px solid var(--border-2);
}
.plan__icon--purple { color: var(--purple-2); background: rgba(155,92,255,0.14); border-color: rgba(155,92,255,0.3); }
.plan__head h3 { font-size: 18px; letter-spacing: .05em; }
.plan__price { font-family: 'Orbitron', sans-serif; font-size: 34px; font-weight: 800; margin-bottom: 22px; }
.plan__price span { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--muted); }
.plan__features { list-style: none; margin-bottom: 26px; display: grid; gap: 13px; }
.plan__features li { position: relative; padding-left: 28px; font-size: 14px; color: #c3c9e6; }
.plan__features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--cyan); font-weight: 700;
}
.plan--featured .plan__features li::before { color: var(--purple-2); }

/* ===== Steps ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative; text-align: center;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: 16px; padding: 36px 22px;
}
.step:not(:last-child)::after {
  content: "›"; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  color: var(--blue-2); font-size: 28px; font-weight: 700; z-index: 2;
}
.step__icon {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  color: var(--blue-2); background: rgba(124,58,237,0.1); border: 1px solid var(--border-2);
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
}
.step h3 { font-size: 14px; letter-spacing: .05em; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); }

/* ===== Games ===== */
/* ===== Game cards ===== */
.game-card {
  position: relative; display: block; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: linear-gradient(180deg, var(--panel), var(--bg-2));
  color: var(--text); text-decoration: none;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.game-card img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .35s ease; }
.game-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: 0 18px 44px rgba(124,58,237,0.35); }
.game-card:hover img { transform: scale(1.06); }
.game-card__score {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 12px;
  padding: 4px 9px; border-radius: 8px; color: #061018;
  background: linear-gradient(180deg, #8ef0a8, #3fd07a); box-shadow: 0 4px 14px rgba(63,208,122,0.45);
}
.game-card__body { display: block; padding: 12px 14px 14px; }
.game-card__title { display: block; font-weight: 600; font-size: 14px; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__meta { display: block; font-size: 12px; color: var(--muted); margin-top: 4px; }

.games--grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 24px; }
.games--grid .pcard { width: 100%; }

/* ===== Eventos ===== */
.evento-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 8px 0 34px; }
.evento-perk { text-align: center; background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--border); border-radius: 14px; padding: 22px 16px; }
.evento-perk span { font-size: 30px; display: block; margin-bottom: 8px; }
.evento-perk h4 { font-family: 'Orbitron', sans-serif; font-size: 15px; margin: 0 0 6px; }
.evento-perk p { color: var(--muted); font-size: 13.5px; margin: 0; }
@media (max-width: 620px) { .evento-perks { grid-template-columns: 1fr; } }

/* ===== Juegos comprados (próximamente) ===== */
.comprados-soon { text-align: center; max-width: 560px; margin: 30px auto 0; padding: 44px 24px;
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--border-2); border-radius: 18px; }
.comprados-soon__icon { font-size: 46px; display: block; margin-bottom: 12px; }
.comprados-soon h3 { font-family: 'Orbitron', sans-serif; font-size: 22px; margin: 0 0 8px; }
.comprados-soon p { color: var(--muted); margin: 0 0 22px; }

/* ===== Featured Game — banner premium ===== */
.fg { position: relative; border-radius: 22px; overflow: hidden; min-height: 420px;
  --shape: polygon(0% 4%, 3% 0%, 97% 0%, 100% 4%, 100% 96%, 97% 100%, 3% 100%, 0% 96%);
  clip-path: var(--shape); }
.fg__bg { position: absolute; inset: 0; z-index: 0; }
.fg__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.32) saturate(1.1); transition: filter .6s ease; }
.fg:hover .fg__bg img { filter: brightness(.4) saturate(1.2); }
.fg__frame { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 5; pointer-events: none;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--acc) 80%, transparent)); }
.fg__frame polygon { fill: none; stroke: var(--acc); stroke-width: 2.5px; vector-effect: non-scaling-stroke; stroke-linejoin: round; }
.fg__shine { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, color-mix(in srgb, var(--acc) 10%, transparent) 45%,
    color-mix(in srgb, var(--acc) 5%, transparent) 55%, transparent 60%);
  background-size: 300% 100%; animation: fgShine 4s ease-in-out infinite; }
@keyframes fgShine { 0%,100% { background-position: 200% 0; } 50% { background-position: -50% 0; } }
.fg__inner { position: relative; z-index: 3; display: grid; grid-template-columns: 220px 1fr; gap: 36px;
  align-items: center; padding: 40px 44px;
  background: linear-gradient(135deg, rgba(5,6,15,0.7) 0%, rgba(5,6,15,0.4) 100%); }
.fg__cover { position: relative; display: block; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4;
  border: 2px solid color-mix(in srgb, var(--acc) 55%, transparent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px color-mix(in srgb, var(--acc) 25%, transparent);
  transition: transform .4s ease, box-shadow .4s ease; }
.fg__cover:hover { transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 55px rgba(0,0,0,0.7), 0 0 45px color-mix(in srgb, var(--acc) 35%, transparent); }
.fg__cover img { width: 100%; height: 100%; object-fit: cover; }
.fg__rating { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 12.5px; color: #fff; padding: 5px 11px;
  border-radius: 20px; background: rgba(5,6,15,0.75); border: 1px solid color-mix(in srgb, var(--acc) 55%, transparent); }
.fg__rating svg { color: var(--acc); }
.fg__badge { display: inline-block; font-family: 'Orbitron', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--acc); padding: 6px 14px; border-radius: 20px;
  background: color-mix(in srgb, var(--acc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
  animation: fgPulse 2.5s ease-in-out infinite alternate; }
@keyframes fgPulse { 0% { box-shadow: 0 0 0 0 transparent; } 100% { box-shadow: 0 0 18px color-mix(in srgb, var(--acc) 35%, transparent); } }
.fg__title { font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 900;
  margin: 14px 0 12px; line-height: 1.05; text-shadow: 0 2px 20px rgba(0,0,0,0.7); }
.fg__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.fg__meta > span:first-child { color: var(--muted); font-weight: 600; font-size: 14px; margin-right: 4px; }
.fg__desc { color: #c3c9e6; font-size: 15.5px; line-height: 1.7; margin-bottom: 22px; max-width: 560px; }
.fg__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .fg { min-height: 0; }
  .fg__inner { grid-template-columns: 1fr; gap: 22px; padding: 28px 22px; text-align: center; }
  .fg__cover { max-width: 200px; margin: 0 auto; }
  .fg__meta, .fg__cta { justify-content: center; }
}

/* ===== Cards premium + carrusel automático (home) ===== */
.marquee { overflow: hidden; padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
/* track en una sola capa GPU (translate3d) + duración larga = movimiento muy suave */
.marquee__track { display: flex; gap: 24px; width: max-content; animation: marquee 110s linear infinite; will-change: transform; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.pcard { position: relative; flex: 0 0 auto; width: 250px; aspect-ratio: 3 / 4; text-decoration: none;
  --shape: polygon(0% 6%, 6% 0%, 94% 0%, 100% 6%, 100% 40%, 95% 45%, 95% 55%, 100% 60%, 100% 94%, 94% 100%, 6% 100%, 0% 94%);
  transition: transform .3s ease; }
.pcard:hover { transform: translateY(-8px) scale(1.025); }
/* imagen + contenido recortados a la forma */
.pcard__media { position: absolute; inset: 0; clip-path: var(--shape); overflow: hidden;
  filter: drop-shadow(0 0 13px color-mix(in srgb, var(--acc) 50%, transparent)) drop-shadow(0 7px 15px rgba(0,0,0,0.55)); }
.pcard__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .55s ease; }
.pcard:hover .pcard__img { transform: scale(1.07); }
.pcard__media::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,6,15,0) 35%, rgba(5,6,15,0.5) 62%, rgba(5,6,15,0.95) 100%); }
/* marco SVG: borde continuo que sigue la forma, en el color del juego, con glow neón */
.pcard__frame { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 6; pointer-events: none; overflow: visible;
  filter: drop-shadow(0 0 5px color-mix(in srgb, var(--acc) 75%, transparent)); }
.pcard__frame polygon { fill: none; stroke: var(--acc); stroke-width: 3px; vector-effect: non-scaling-stroke; stroke-linejoin: round; }
.pcard__rating { position: absolute; top: 12px; left: 12px; z-index: 3; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 12.5px; color: #fff; padding: 5px 11px; border-radius: 20px;
  background: rgba(5,6,15,0.72); border: 1px solid color-mix(in srgb, var(--acc) 55%, transparent); }
.pcard__rating svg { color: var(--acc); }
.pcard__fav { position: absolute; bottom: 14px; right: 14px; z-index: 3; color: var(--acc); }
.pcard__body { position: absolute; left: 14px; right: 48px; bottom: 14px; z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ptag { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; padding: 4px 9px; border-radius: 20px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.14); }
.pcard__title { font-family: 'Orbitron', sans-serif; font-weight: 800; font-size: 18px; color: #fff; line-height: 1.15; letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 560px) { .pcard { width: 180px; } .marquee__track { gap: 16px; } }

/* ===== Carousel ===== */
.section--tight { padding-bottom: 40px; }
.center { text-align: center; margin-top: 36px; }
.carousel { margin: 0 0 38px; }
.carousel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 14px; }
.carousel__title { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: .04em; }
.carousel__nav { display: flex; align-items: center; gap: 8px; }
.carousel__more { font-size: 13px; color: var(--blue-2); font-weight: 600; margin-right: 6px; white-space: nowrap; }
.carousel__more:hover { text-decoration: underline; }
.carousel__arrow {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 20px; line-height: 1;
  color: var(--text); background: rgba(255,255,255,0.04); border: 1px solid var(--border-2);
  transition: background .2s ease, transform .15s ease;
}
.carousel__arrow:hover { background: rgba(124,58,237,0.2); transform: scale(1.08); }
.carousel__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 12px; scrollbar-width: thin; scrollbar-color: var(--blue) transparent;
}
.carousel__track > .game-card, .carousel__track > .pcard { scroll-snap-align: start; }
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.4); border-radius: 8px; }

/* ===== Catalog filters ===== */
.catalog__controls { display: flex; justify-content: center; margin-bottom: 22px; }
.catalog__search {
  width: 100%; max-width: 460px; padding: 13px 18px; border-radius: 12px; font-size: 15px;
  color: var(--text); background: var(--panel); border: 1px solid var(--border-2); outline: none;
}
.catalog__search:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(124,58,237,0.2); }
.catalog__search::placeholder { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.chip {
  padding: 8px 16px; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--muted); background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  transition: all .18s ease;
}
.chip:hover { color: var(--text); border-color: var(--border-2); }
.chip--active { color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--blue)); border-color: transparent; }
.catalog__empty { text-align: center; color: var(--muted); padding: 40px 0; }
.catalog__count { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 22px; letter-spacing: .03em; }
.catalog__results .games--grid { margin-top: 4px; }

/* ===== Reserva: asistente por pasos ===== */
.wsteps { list-style: none; display: flex; justify-content: space-between; gap: 6px; margin: 0 0 34px; padding: 0; counter-reset: none; }
.wstep { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); text-align: center; position: relative; }
.wstep span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--muted); }
.wstep::before { content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px; background: var(--border); z-index: -1; }
.wstep:first-child::before { display: none; }
.wstep.is-active span { background: linear-gradient(180deg, var(--blue-2), var(--blue)); border-color: transparent; color: #fff; }
.wstep.is-active { color: var(--text); }
.wstep.is-done span { background: rgba(95,208,122,0.2); border-color: #5fd07a; color: #5fd07a; }
.wstep.is-done::before, .wstep.is-active::before { background: var(--blue); }
.wizard__nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 26px; }
.wizard__nav .btn--primary, .wizard__nav .btn--purple { margin-left: auto; }
.wizard__nav--top { margin-top: 0; margin-bottom: 18px; }
.horario-pick { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.chip-horario { flex: 1; min-width: 120px; max-width: 180px; padding: 16px 14px; border-radius: 12px; cursor: pointer;
  font-weight: 700; font-size: 15px; color: var(--text); background: var(--panel); border: 2px solid var(--border-2);
  text-align: center; transition: border-color .15s, background .15s; }
.chip-horario em { display: block; font-size: 12px; font-style: normal; color: var(--muted); margin-top: 4px; font-weight: 500; }
.chip-horario:hover { border-color: var(--purple); background: rgba(155,92,255,0.08); }
.chip-horario.is-on { background: linear-gradient(180deg, var(--purple-2), var(--purple)); border-color: transparent; color: #fff; }
.chip-horario.is-on em { color: rgba(255,255,255,0.8); }
.horario-hint { text-align: center; font-size: 12px; color: var(--muted); margin-top: 6px; }
.retiro-aviso { background: rgba(255,194,75,0.1); border: 2px solid var(--yellow); border-radius: 12px;
  padding: 18px 20px; margin-bottom: 18px; }
.retiro-aviso strong { color: var(--yellow); font-size: 16px; display: block; margin-bottom: 6px; }
.retiro-aviso p { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.retiro-aviso p strong { display: inline; font-size: inherit; color: var(--text); }
.pago-pick { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.chip-pago { flex: 1; min-width: 160px; max-width: 240px; padding: 18px 16px; border-radius: 12px; cursor: pointer;
  font-weight: 700; font-size: 15px; color: var(--text); background: var(--panel); border: 2px solid var(--border-2);
  text-align: center; transition: border-color .15s, background .15s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.chip-pago:hover { border-color: var(--purple); background: rgba(155,92,255,0.08); }
.chip-pago.is-on { background: linear-gradient(180deg, var(--purple-2), var(--purple)); border-color: transparent; color: #fff; }
.req { color: #ff6b6b; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #c3c9e6; margin: 18px 0; cursor: pointer; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--purple); }
.resumen { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; margin-top: 8px; }
.resumen h4 { font-family: 'Orbitron', sans-serif; font-size: 14px; margin: 0 0 10px; }
.resumen div { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.resumen div:last-child { border-bottom: none; }
.resumen span { color: var(--muted); }

/* Selector de días + precio */
.daypick-box { text-align: center; }
.daypick { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 4px 0 14px; }
.chip-day { padding: 11px 20px; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 14px;
  color: var(--text); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.chip-day em { display: block; font-size: 9.5px; font-style: normal; color: var(--cyan); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.chip-day:hover { border-color: var(--border-2); }
.chip-day.is-on { background: linear-gradient(180deg, var(--purple-2), var(--purple)); border-color: transparent; color: #fff; }
.chip-day.is-on em { color: #ffe9ff; }
.stepper { display: inline-flex; align-items: center; gap: 18px; margin: 0 auto 10px; padding: 7px 14px; border-radius: 12px; background: var(--panel); border: 1px solid var(--border-2); }
.stepper button { width: 36px; height: 36px; border-radius: 8px; font-size: 22px; cursor: pointer; color: #fff; line-height: 1; background: rgba(124,58,237,0.2); border: 1px solid var(--border-2); }
.stepper button:hover { background: rgba(124,58,237,0.45); }
.stepper b { font-size: 18px; }
.precio-total { font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 800; color: var(--text); margin: 4px 0 0; }
.addr-hint { font-size: 12.5px; color: var(--muted); margin: 8px 0 0; line-height: 1.5; }
.addr-hint strong { color: var(--blue-2); }

/* Calendario de disponibilidad */
.cal { background: var(--panel); border: 1px solid var(--border-2); border-radius: 14px; padding: 14px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-weight: 700; font-family: 'Orbitron', sans-serif; font-size: 15px; }
.cal__nav { width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 18px; color: var(--text); background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); }
.cal__nav:hover { background: rgba(124,58,237,0.2); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal__dow { text-align: center; font-size: 11px; color: var(--muted); padding-bottom: 4px; }
.cal__day { aspect-ratio: 1; border-radius: 8px; border: 1px solid transparent; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text); }
.cal__day.is-free { background: rgba(95,208,122,0.14); border-color: rgba(95,208,122,0.35); color: #bff3cd; }
.cal__day.is-free:hover { background: rgba(95,208,122,0.3); }
.cal__day.is-full { background: rgba(255,107,107,0.13); border-color: rgba(255,107,107,0.3); color: #ff9b9b; cursor: not-allowed; }
.cal__day.is-past { background: transparent; color: #3a4060; cursor: not-allowed; }
.cal__day.is-sel { background: linear-gradient(180deg, var(--purple-2), var(--purple)); border-color: transparent; color: #fff; box-shadow: 0 4px 14px rgba(155,92,255,0.4); }
.cal__day.is-preview { background: rgba(155,92,255,0.28); border-color: rgba(155,92,255,0.5); color: #fff; }
.cal__legend { display: flex; gap: 18px; justify-content: center; font-size: 12px; color: var(--muted); margin: 12px 0 0; }
.cal__legend .dot { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 5px; vertical-align: middle; }
.dot--free { background: rgba(95,208,122,0.6); }
.dot--full { background: rgba(255,107,107,0.6); }
.cal__sel { text-align: center; color: var(--blue-2); font-weight: 600; font-size: 14px; margin: 12px 0 0; }

/* ===== Reserva ===== */
.reserva__intro { text-align: center; color: var(--muted); margin-top: 30px; line-height: 1.6; }
.reserva__intro strong { color: var(--text); }
.reserva { display: grid; gap: 22px; }
.reserva .field { display: grid; gap: 8px; }
.reserva label { font-size: 13px; font-weight: 600; color: #c3c9e6; }
.reserva input[type=text], .reserva input[type=tel], .reserva input[type=email], .reserva input[type=date], .reserva input[type=file], .reserva input[type=number], .reserva select {
  width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 15px;
  color: var(--text); background: var(--panel); border: 1px solid var(--border-2); outline: none;
}
.reserva input:focus { border-color: var(--blue-2); box-shadow: 0 0 0 3px rgba(124,58,237,0.18); }
.reserva input[type=file] { padding: 10px 12px; color: var(--muted); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); cursor: pointer; font-weight: 600; font-size: 14px; }
.opt:has(input:checked) { border-color: var(--purple); background: rgba(155,92,255,0.14); }
.addr { display: flex; gap: 10px; }
.addr input { flex: 1; }
.addr .btn { white-space: nowrap; }
/* Autocompletado de direcciones (tipo Google Maps) */
.ac { position: relative; }
.ac__list { position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 30; margin: 0; padding: 6px; list-style: none;
  background: var(--panel-2); border: 1px solid var(--border-2); border-radius: 10px; max-height: 260px; overflow-y: auto; box-shadow: 0 14px 34px rgba(0,0,0,0.55); }
.ac__list li { padding: 11px 12px; border-radius: 8px; cursor: pointer; font-size: 14px; line-height: 1.35; }
.ac__list li:hover { background: rgba(124,58,237,0.18); }
.ac__list .ac__empty { color: var(--muted); cursor: default; }
.ac__list .ac__empty:hover { background: none; }
.reserva__map { margin-top: 6px; }
.zona-result { border-radius: 12px; text-align: center; margin-bottom: 12px; }
.zona-result:empty { display: none; }
.zona-result strong { display: block; font-size: 18px; margin-bottom: 4px; }
.zona-result span { font-size: 14px; opacity: .85; }
.zona-result.zona-ok { padding: 18px 20px; background: rgba(95,208,122,0.1); border: 1px solid rgba(95,208,122,0.3); color: #5fd07a; }
.zona-result.zona-bad { padding: 18px 20px; background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3); color: #ff6b6b; }
.reserva__map { height: 320px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border-2); }
.reserva__result { text-align: center; font-size: 15px; margin: 0; }
.reserva__result.ok { color: #5fd07a; }
.reserva__result.bad { color: #ff6b6b; }
@media (max-width: 620px) { .grid2 { grid-template-columns: 1fr; } .addr { flex-direction: column; } }

/* ===== Pager (paginación catálogo) ===== */
.pager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 44px; }
.pager__num, .pager__btn {
  min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); transition: all .18s ease;
}
.pager__num:hover, .pager__btn:hover { border-color: var(--border-2); background: rgba(124,58,237,0.16); }
.pager__num.is-current { color: #fff; background: linear-gradient(180deg, var(--blue-2), var(--blue)); border-color: transparent; box-shadow: 0 6px 18px rgba(124,58,237,0.4); }
.pager__btn { font-size: 20px; }
.pager__btn.is-disabled { opacity: .35; pointer-events: none; }
.pager__gap { color: var(--muted); padding: 0 2px; }
@media (max-width: 560px) { .pager__num, .pager__btn { min-width: 36px; height: 36px; padding: 0 9px; } }

/* ===== Breadcrumbs ===== */
.crumbs { padding-top: 30px; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--blue-2); }
.crumbs a:hover { text-decoration: underline; }

/* ===== Game detail ===== */
.game { padding: 30px 0 80px; }
.game__inner { display: grid; grid-template-columns: 360px 1fr; gap: 44px; align-items: start; margin-top: 18px; }
.game__cover { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--border-2);
  box-shadow: 0 30px 70px rgba(124,58,237,0.3); }
.game__cover img { display: block; width: 100%; height: auto; }
.game__score { top: 14px; right: 14px; font-size: 15px; padding: 6px 12px; }
.game__title { font-family: 'Orbitron', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.05; }
.game__tagline { color: var(--blue-2); font-weight: 600; margin: 12px 0 20px; }
.game__desc { color: #c3c9e6; font-size: 15.5px; line-height: 1.7; margin-bottom: 18px; }
.game__desc--lead { color: var(--text); font-size: 16.5px; font-weight: 500; }
.game__facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 30px; margin-bottom: 30px; }
.game__facts dt { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.game__facts dd { font-size: 14.5px; margin-top: 3px; }
.game__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 40px 0; }
.shots img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); }

@media (max-width: 760px) {
  .game__inner { grid-template-columns: 1fr; gap: 26px; }
  .game__cover { max-width: 320px; margin: 0 auto; }
  .shots { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FAQ ===== */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px;
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--blue-2); font-size: 22px; font-weight: 400; }
.faq__item[open] summary::after { content: "−"; }
.faq__item p { color: var(--muted); font-size: 14px; padding: 0 0 18px; }

/* ===== CTA final ===== */
.cta-final {
  margin: 40px auto 90px; max-width: var(--maxw);
}
.cta-final__inner {
  text-align: center; padding: 64px 24px; border-radius: 24px;
  border: 1px solid var(--border-2);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(124,58,237,0.25), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--bg-2));
}
.cta-final h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; }
.cta-final p { color: var(--muted); margin-bottom: 28px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 40px 0 0; }
.footer__credit { border-top: 1px solid rgba(255,255,255,0.05); padding: 16px; text-align: center; margin-top: 30px; }
.footer__credit p { font-size: 12px; color: #6b7280; }
.footer__credit a { color: #d1d5db; font-weight: 600; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer__links { display: flex; flex-wrap: wrap; gap: 16px 26px; justify-content: center; }
.footer__links a { color: var(--muted); font-size: 14px; }
.footer__links a:hover { color: var(--text); }
.footer__social { display: flex; gap: 14px; justify-content: center; margin: 12px 0 4px; }
.footer__social a { color: var(--muted); transition: color .15s; }
.footer__social a:hover { color: var(--purple); }
.footer__legal { color: #5a6088; font-size: 12px; max-width: 600px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 320px; order: -1; }
  .features-scroll { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan--featured { margin-top: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .games--grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  /* Hamburger menu */
  .nav__burger { display: flex; }
  .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0 !important; right: 0 !important; bottom: 0;
    width: 100vw !important; height: calc(100vh - 72px); height: calc(100dvh - 72px);
    background: var(--bg); padding: 32px 24px; z-index: 9999; overflow-y: auto;
    transform: translateX(110vw); visibility: hidden; transition: transform .35s ease, visibility 0s .35s;
  }
  .nav__links.is-open { transform: translateX(0); visibility: visible; transition: transform .35s ease, visibility 0s 0s; }
  .nav__links a { font-size: 17px; padding: 18px 0; border-bottom: 1px solid var(--border);
    color: var(--text); letter-spacing: .06em; }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta-mobile { display: inline-flex !important; margin-top: 20px; justify-content: center; border-bottom: none !important; }
  .nav__cta-desktop { display: none; }
  .nav__actions .link-login { display: none; }
}
@media (max-width: 560px) {
  .features .feature { min-width: 160px; flex-direction: column; text-align: center; align-items: center; }
  .zone-check__input { flex-direction: column; }
  .zone-check__input .btn { width: 100%; justify-content: center; }
  .steps { grid-template-columns: 1fr; }
  .games--grid { grid-template-columns: repeat(2, 1fr); }
  .carousel__track { grid-auto-columns: minmax(160px, 70%); }
  .hero__title { font-size: clamp(28px, 8vw, 40px); }
  .hero__sub { font-size: 14px; }
  .section__title { font-size: clamp(20px, 6vw, 32px); }
  .btn--lg { padding: 14px 24px; font-size: 13px; }
  .footer__inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer__links { justify-content: center; }
}
