/* =====================================================================
   Slingo Casino — Sistema de diseño (estilo slingocasino.es)
   Lienzo claro (#eeeeee), texto azul marino, acentos rojo / amarillo /
   turquesa. Tipografía Montserrat (hasta 900). Botones tipo píldora.
   ===================================================================== */

:root {
  --navy:      #00072d;   /* banners oscuros, hero */
  --ink:       #02072d;   /* texto principal */
  --red:       #ff3250;   /* CTA principal */
  --red-dark:  #e62742;
  --yellow:    #ffbb00;   /* footer, CTA secundario */
  --yellow-dk: #e6a800;
  --teal:      #09afbd;   /* títulos de sección */
  --teal-dark: #078592;

  --bg:        #eeeeee;   /* lienzo */
  --bg-2:      #ffffff;
  --surface:   #ffffff;
  --surface-2: #f4f4f6;
  --line:      #dcdce2;
  --line-dark: #c7c7d0;

  --text:   #02072d;
  --muted:  #5a6075;
  --faint:  #8a90a3;

  --green:  #1aa471;

  --radius:    16px;
  --radius-sm: 10px;
  --pill:      500px;
  --shadow:    0 10px 28px rgba(0,7,45,.10);
  --shadow-lg: 0 18px 50px rgba(0,7,45,.16);
  --maxw:      1200px;
  --ff:        "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3 { font-family: var(--ff); color: var(--ink); margin: .2em 0 .4em; line-height: 1.12; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; }
h3 { font-size: 1.2rem; font-weight: 800; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; font-weight: 500; }

/* ----- Botones (píldora) ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .8em 1.6em; border-radius: var(--pill); border: 2px solid transparent;
  font: inherit; font-weight: 800; line-height: 1; cursor: pointer; transition: .16s ease;
  background: var(--surface-2); color: var(--ink); text-decoration: none; text-transform: none;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); color: #fff; }
.btn--gold { background: var(--yellow); color: var(--navy); }
.btn--gold:hover { background: var(--yellow-dk); color: var(--navy); }
.btn--ghost { background: transparent; border-color: var(--red); color: var(--red); }
.btn--ghost:hover { background: var(--red); color: #fff; }
.btn--danger { background: transparent; border-color: var(--red); color: var(--red); }
.btn--danger:hover { background: var(--red); color: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: .55em 1.1em; font-size: .9rem; border-width: 2px; }
.btn--lg { padding: 1em 2.2em; font-size: 1.08rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ----- Avisos / barras superiores ------------------------------------- */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.82);
  font-size: .82rem; text-align: center; padding: 8px 12px;
}
.topbar a { color: var(--yellow); }
.topbar a:hover { color: #fff; }
.topbar__age {
  display: inline-block; background: var(--red); color: #fff; font-weight: 800;
  border-radius: 6px; padding: 0 6px; margin-right: 6px; font-size: .76rem;
}
.game-warning {
  background: #fff3f4; border-bottom: 1px solid #ffd2d8; color: #b3122b;
  text-align: center; padding: 9px 12px; font-size: .9rem; font-weight: 700;
}
.game-warning a { color: var(--red); text-decoration: underline; }

/* ----- Header ---------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--bg);
  border-bottom: 1px solid var(--line); }
.site-header__row { display: flex; align-items: center; gap: 18px; min-height: 70px; }
.brand { flex: 0 0 auto; }
.brand img { width: 150px; height: auto; }
.main-nav { display: flex; gap: 26px; margin-left: 16px; flex: 1; }
.main-nav a { color: var(--ink); font-weight: 700; font-size: .98rem; padding: 4px 0; }
.main-nav a:hover, .main-nav a.is-active { color: var(--red); }
.site-header__cta { display: flex; align-items: center; gap: 10px; }
.balance-chip { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--pill);
  padding: .45em .85em; font-size: .85rem; font-weight: 700; white-space: nowrap; color: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ----- Hero (banner oscuro) -------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(900px 420px at 85% 0%, rgba(255,50,80,.35), transparent 60%),
              radial-gradient(700px 420px at 0% 100%, rgba(9,175,189,.30), transparent 55%),
              var(--navy);
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 64px 0 72px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--yellow); }
.hero .lead { color: rgba(255,255,255,.85); }
.hero__badges { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 22px; }
.hero__badges img { height: 48px; }
.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.chip { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: var(--pill);
  padding: .45em .95em; font-size: .85rem; color: #fff; font-weight: 600; }
.chip strong { color: var(--yellow); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero__panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-lg); color: var(--ink);
}
.hero__panel h3 { margin-top: 0; color: var(--teal); }
.hero__panel .muted { color: var(--muted); }

/* ----- Tarjetas / rejillas -------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 600px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; transition: .16s ease; box-shadow: var(--shadow);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card h3 { margin-top: 0; }

/* ----- Tarjeta de juego ----------------------------------------------- */
.game-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.game-card__thumb {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.35rem; color: #fff; text-transform: uppercase; letter-spacing: .5px;
  position: relative; text-align: center; padding: 12px;
}
.thumb--slots     { background: linear-gradient(135deg, #ff3250, #b3122b); }
.thumb--ruleta    { background: linear-gradient(135deg, #09afbd, #056b75); }
.thumb--blackjack { background: linear-gradient(135deg, #2a3a8c, #00072d); }
.game-card__thumb.has-cover { padding: 0; }
.game-card__thumb.has-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-card__rtp {
  position: absolute; top: 10px; right: 10px; background: var(--yellow); color: var(--navy);
  font-size: .72rem; padding: 3px 9px; border-radius: var(--pill); font-weight: 800; z-index: 1;
}
.game-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.game-card__body h3 { font-size: 1.05rem; margin: 0 0 6px; }
.game-card__tag { color: var(--muted); font-size: .88rem; flex: 1; }
.game-card__meta { display: flex; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.game-card__actions { display: flex; gap: 8px; margin-top: 12px; }
.tag { font-size: .72rem; background: var(--surface-2); border: 1px solid var(--line); padding: 3px 9px; border-radius: var(--pill); color: var(--muted); font-weight: 600; }

/* ----- Sección de bonos ----------------------------------------------- */
.bonus { display: flex; gap: 16px; align-items: flex-start; }
.bonus__icon { font-size: 1.8rem; }

/* ----- Filtros --------------------------------------------------------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 30px; }
.filter-btn { background: #fff; border: 2px solid var(--line); color: var(--ink);
  padding: .5em 1.2em; border-radius: var(--pill); cursor: pointer; font: inherit; font-weight: 700; font-size: .9rem; transition: .15s; }
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* ----- Formularios ----------------------------------------------------- */
.form { max-width: 480px; margin: 0 auto; }
.form--wide { max-width: 720px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8em .95em; background: #fff; border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm); color: var(--ink); font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,50,80,.15);
}
.field small { color: var(--faint); font-size: .8rem; }
.field--check { display: flex; gap: 10px; align-items: flex-start; }
.field--check input { width: auto; margin-top: 4px; accent-color: var(--red); }
.field--check label { font-weight: 500; font-size: .88rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert { padding: 13px 17px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .92rem; border: 1px solid transparent; }
.alert--error { background: #fff3f4; border-color: #ffd2d8; color: #b3122b; }
.alert--ok    { background: #e9f9f1; border-color: #b6ead2; color: #11724f; }
.alert--info  { background: #e7f7f9; border-color: #b5e7ec; color: #0a6f7a; }

/* ----- Tablas ---------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { padding: 11px 15px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.data th { background: var(--surface-2); color: var(--muted); font-weight: 700; }
table.data tr:last-child td { border-bottom: 0; }
.pos { color: var(--green); font-weight: 700; }
.neg { color: var(--red); font-weight: 700; }

/* ----- Cuenta / pestañas ---------------------------------------------- */
.account-grid { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
.account-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 88px; }
.account-nav a { padding: .75em 1em; border-radius: var(--radius-sm); color: var(--ink); font-weight: 700; }
.account-nav a:hover, .account-nav a.is-active { background: #fff; color: var(--red); box-shadow: var(--shadow); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.stat .n { font-size: 1.7rem; font-weight: 900; color: var(--teal); }
.stat .l { color: var(--faint); font-size: .82rem; font-weight: 600; }

/* ----- Contenido legal / artículos ------------------------------------ */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { margin-top: 2em; padding-top: .5em; border-top: 1px solid var(--line); color: var(--teal); }
.legal h3 { margin-top: 1.6em; color: var(--ink); }
.legal ul, .legal ol { padding-left: 1.3em; }
.legal li { margin-bottom: .45em; }
.legal .toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); }
.legal .toc ol { margin: 0; }
.legal time { color: var(--faint); font-size: .9rem; }
.legal table.data th, .legal table.data td { white-space: normal; }

/* ----- Demo de juego --------------------------------------------------- */
.demo-stage {
  background: var(--navy); color: #fff;
  border: 1px solid var(--navy); border-radius: var(--radius); padding: 30px; text-align: center;
}
.demo-stage h3 { color: #fff; }
.demo-stage .muted { color: rgba(255,255,255,.7); }
.demo-stage .stat { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.demo-stage .stat .n { color: var(--yellow); }
.demo-stage .stat .l { color: rgba(255,255,255,.6); }
.demo-balance { display: flex; gap: 18px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.demo-balance .stat { min-width: 130px; }
.demo-reels { display: flex; gap: 14px; justify-content: center; margin: 24px 0; }
.reel {
  width: 84px; height: 84px; background: #fff; border: 3px solid var(--yellow);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
}
.reel.spinning { animation: reelspin .4s linear infinite; }
@keyframes reelspin { 0%{transform:translateY(-4px)} 50%{transform:translateY(4px)} 100%{transform:translateY(-4px)} }
.roulette-wheel {
  width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 18px;
  background: conic-gradient(#09afbd 0 10deg,#ff3250 10deg 20deg,#00072d 20deg 30deg,#ff3250 30deg 40deg,#00072d 40deg 50deg,#ff3250 50deg 60deg,#00072d 60deg 70deg);
  border: 6px solid var(--yellow); position: relative; transition: transform 3s cubic-bezier(.2,.8,.2,1);
}
.roulette-num { font-size: 2.6rem; font-weight: 900; color: var(--yellow); min-height: 1.2em; }
.demo-controls { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center; }
.demo-msg { min-height: 1.5em; font-weight: 700; margin-top: 16px; }
.demo-note { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 20px; }

/* ----- Modales / banners flotantes ------------------------------------ */
.age-gate, .cookie-prefs {
  position: fixed; inset: 0; z-index: 100; background: rgba(0,7,45,.7);
  display: flex; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(3px);
}
.age-gate__box, .cookie-prefs__box {
  background: #fff; border-radius: var(--radius);
  padding: 34px; max-width: 460px; text-align: center; box-shadow: var(--shadow-lg);
}
.age-gate__box img { margin: 0 auto 14px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; margin: 20px 0 10px; flex-wrap: wrap; }
.age-gate__legal { font-size: .8rem; color: var(--faint); }
.cookie-prefs__box { text-align: left; max-width: 520px; }
.cookie-row { display: flex; justify-content: space-between; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line); }
.cookie-row input { width: 20px; height: 20px; accent-color: var(--red); }
.cookie-prefs__actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px; display: flex; gap: 18px;
  align-items: center; justify-content: space-between; flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto;
}
.cookie-banner__text { flex: 1 1 320px; }
.cookie-banner__text p { margin: 5px 0 0; font-size: .85rem; color: var(--muted); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.rg-reminder {
  position: fixed; right: 16px; bottom: 16px; z-index: 95; max-width: 320px;
  background: #fff; border: 2px solid var(--red); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px 20px;
}
.rg-reminder div { display: flex; gap: 8px; margin-top: 10px; }

/* ----- Modal de acceso ------------------------------------------------- */
.auth-modal { position: fixed; inset: 0; z-index: 110; background: rgba(0,7,45,.72);
  display: flex; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(3px); }
.auth-modal__box { background: #fff; border-radius: var(--radius); overflow: hidden; width: 100%;
  max-width: 880px; box-shadow: var(--shadow-lg); }
.auth-modal__bar { background: var(--navy); color: rgba(255,255,255,.85); font-size: .85rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; }
.auth-modal__bar a { color: var(--yellow); }
.auth-modal__close { background: var(--red); color: #fff; border: 0; width: 30px; height: 30px;
  border-radius: 8px; font-size: 1.2rem; line-height: 1; cursor: pointer; flex: 0 0 auto; }
.auth-modal__grid { display: grid; grid-template-columns: 1fr; }
.auth-modal__form { padding: 30px 32px; }
.auth-modal__form h2 { font-size: 1.5rem; margin: 0 0 20px; }
.auth-modal__alt { margin-top: 14px; font-size: .92rem; }
.auth-modal__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.auth-modal__legal { font-size: .82rem; color: var(--muted); }
.auth-modal__seals { display: flex; gap: 8px; align-items: center; }
.auth-modal__promo { display: none; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #ff4d8d 0%, #ff3250 45%, #09afbd 100%); }
.auth-modal__brand { position: absolute; top: 22px; left: 0; right: 0; text-align: center; z-index: 2;
  color: #fff; font-weight: 900; font-size: 2.2rem; letter-spacing: -1px; text-transform: lowercase; }
.auth-modal__host { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  max-width: 112%; height: 92%; object-fit: contain; object-position: bottom; }
.auth-modal__stamp { position: absolute; right: 18px; bottom: 28px; z-index: 3;
  background: #fff; color: var(--red); font-weight: 900; text-transform: uppercase; text-align: center;
  font-size: .9rem; line-height: 1.05; padding: 10px 14px; border-radius: 12px; transform: rotate(-8deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.25); }
@media (min-width: 720px) {
  .auth-modal__grid { grid-template-columns: 1.05fr .95fr; }
  .auth-modal__promo { display: block; min-height: 440px; }
}

/* ----- Footer (amarillo) ----------------------------------------------- */
.site-footer { background: var(--yellow); color: var(--navy); padding: 56px 0 28px; margin-top: 48px; font-size: .9rem; }
.footer-logo { margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.site-footer address { font-style: normal; color: rgba(0,7,45,.78); margin-bottom: 12px; }
.footer-reg { color: rgba(0,7,45,.78); }
.footer-licenses { list-style: none; padding: 0; margin: 0; color: rgba(0,7,45,.7); font-size: .82rem; }
.footer-licenses strong { color: var(--navy); }
.site-footer h3 { font-size: 1rem; color: var(--navy); margin: 0 0 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; }
.footer-links { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: var(--navy); font-weight: 600; }
.footer-links a:hover { color: var(--red); }
.footer-rg { color: rgba(0,7,45,.78); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin: 16px 0;
  background: var(--navy); padding: 16px 18px; border-radius: var(--radius); }
.footer-badges img { height: 50px; width: auto; }
.footer-secure { color: var(--teal-dark); font-size: .82rem; font-weight: 700; }
.footer-payments { border-top: 1px solid rgba(0,7,45,.2); margin-top: 32px; padding-top: 22px; text-align: center; }
.footer-payments__label { display: block; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; font-size: .8rem; margin-bottom: 12px; color: var(--navy); }
.footer-payments__row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; }
.footer-payments__row img { height: 26px; width: auto; background: var(--navy); border-radius: 6px; padding: 8px 12px; }
.footer-bottom { border-top: 1px solid rgba(0,7,45,.2); margin-top: 24px; padding-top: 20px; text-align: center; color: rgba(0,7,45,.7); font-size: .82rem; }

/* ----- Misc ------------------------------------------------------------ */
.badge-licenses { display: flex; gap: 8px; flex-wrap: wrap; }
.note-box { background: #fff; border-left: 4px solid var(--teal); border-radius: var(--radius-sm);
  padding: 18px 20px; margin: 20px 0; box-shadow: var(--shadow); }
.note-box--warn { border-left-color: var(--red); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--red); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); z-index: 200; }
hr.sep { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
details summary { color: var(--ink); }

/* ===== Componentes estilo slingocasino.es ============================= */
.section--alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.t-teal { color: var(--teal); }

/* Promo bar */
.promo-bar { background: var(--navy); color: #fff; font-size: .88rem; }
.promo-bar__row { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 9px 0; flex-wrap: wrap; }
.promo-bar strong { color: var(--yellow); }

/* Hero banner */
.hero-banner { position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1000px 480px at 88% 10%, rgba(255,50,80,.4), transparent 60%),
              radial-gradient(760px 480px at 5% 110%, rgba(9,175,189,.32), transparent 55%), var(--navy); }
.hero-banner__inner { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 56px 0 64px; align-items: center; }
.hero-banner__kicker { display: inline-block; background: var(--red); color: #fff; font-weight: 800; font-size: .8rem;
  padding: .4em .9em; border-radius: var(--pill); text-transform: uppercase; letter-spacing: .5px; }
.hero-banner h1 { color: #fff; margin: .35em 0 .25em; text-transform: uppercase; }
.hero-banner h1 .accent { color: var(--yellow); }
.hero-banner p { color: rgba(255,255,255,.85); max-width: 48ch; }
.hero-banner__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 18px; }
.hero-banner__ghost { border-color: #fff; color: #fff; }
.hero-banner__ghost:hover { background: #fff; color: var(--navy); }
.hero-banner__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-banner__art { display: flex; justify-content: center; }
.hero-banner__art img { width: 100%; max-width: 480px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-banner__art-ph { width: 100%; max-width: 460px; aspect-ratio: 16/10; border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,.35); background: rgba(255,255,255,.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.hero-banner__art-tag { font-weight: 800; color: var(--yellow); font-size: 1.05rem; }
.hero-banner__art-ph small { color: rgba(255,255,255,.6); }
.hero-banner__dots { display: flex; gap: 8px; justify-content: center; padding-bottom: 22px; }
.hero-banner__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); }
.hero-banner__dots .is-active { background: var(--yellow); width: 26px; border-radius: 6px; }

/* Hero slider (banner a pantalla completa) */
.hero-slider { position: relative; background: var(--navy); min-height: 460px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center right;
  display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .6s ease;
  padding: 56px 0; }
.hero-slide.is-active { opacity: 1; visibility: visible; position: relative; }
.hero-slide::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,7,45,.96) 0%, rgba(0,7,45,.82) 38%, rgba(0,7,45,.45) 62%, rgba(0,7,45,.15) 100%); }
.hero-slide .container { position: relative; z-index: 1; }
.hero-slide__copy { max-width: 560px; color: #fff; }
.hero-slide__copy h1 { color: #fff; text-transform: uppercase; margin: .3em 0 .25em; }
.hero-slide__copy h1 .accent { color: var(--yellow); }
.hero-slide__copy p { color: rgba(255,255,255,.88); max-width: 46ch; }
.hero-slide__copy .hero-banner__cta { margin: 22px 0 18px; }
.hero-slider__dots { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 2;
  display: flex; gap: 8px; justify-content: center; }
.hero-slider__dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); padding: 0; transition: .2s; }
.hero-slider__dots button.is-active { background: var(--yellow); width: 28px; border-radius: 6px; }

/* Filas de juegos */
.cat { padding: 26px 0 6px; }
.cat__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.cat__head h2 { font-size: 1.5rem; margin: 0; }
.cat__count { color: var(--muted); font-weight: 700; font-size: 1rem; }
.cat__all { color: var(--red); font-weight: 800; font-size: .9rem; white-space: nowrap; }
.cat__row { display: grid; grid-auto-flow: column; grid-auto-columns: 168px;
  gap: 14px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
@media (max-width: 600px) { .cat__row { grid-auto-columns: 140px; } }
.cat__row::-webkit-scrollbar { height: 8px; }
.cat__row::-webkit-scrollbar-thumb { background: var(--line-dark); border-radius: 4px; }
.game-tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start; box-shadow: var(--shadow); background: var(--navy); aspect-ratio: 1; }
.game-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.game-tile:hover img { transform: scale(1.06); }
.game-tile__overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,7,45,.55); opacity: 0; transition: opacity .2s ease; }
.game-tile:hover .game-tile__overlay { opacity: 1; }
.game-tile__play { background: var(--yellow); color: var(--navy); font-weight: 800; padding: .55em 1.3em;
  border-radius: var(--pill); font-size: .9rem; }
.game-tile__name { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px;
  font-size: .78rem; font-weight: 700; color: #fff; background: linear-gradient(to top, rgba(0,7,45,.92), transparent);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Split (texto + media) */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.split__media--badges { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: center;
  background: var(--navy); border: 1px solid var(--navy); border-radius: var(--radius); padding: 28px; }
.split__media--badges img { width: auto; height: 72px; border-radius: 0; box-shadow: none; }
.split__media--badges p { color: rgba(255,255,255,.85); }

/* Feature card (imagen + texto) */
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: .16s ease; }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.feature-card__body { padding: 18px 20px 22px; }
.feature-card__body h3 { margin: 0 0 6px; }

/* Placeholder de imagen (pendiente de Midjourney) */
.media-ph { aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; text-align: center; color: var(--navy);
  background: linear-gradient(135deg, #eef1f6, #e3e7ef); border-bottom: 1px solid var(--line);
  position: relative; }
.media-ph::after { content: ""; position: absolute; inset: 10px; border: 2px dashed rgba(0,7,45,.22); border-radius: 10px; }
.media-ph span { font-weight: 800; color: var(--red); font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; position: relative; }
.media-ph small { color: var(--muted); font-size: .74rem; position: relative; }
.media-ph--wide { aspect-ratio: 16/9; border: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: var(--radius); }

/* Stats oscuro */
.stats-dark { background: var(--navy); color: #fff; padding: 64px 0; }
.stats-dark h2 { color: #fff; }
.stats-dark__sub { color: rgba(255,255,255,.7); max-width: 60ch; margin: 0 auto 36px; }
.stats-dark__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.stats-dark__item { text-align: center; padding: 0 12px; }
.stats-dark__big { font-size: 3.4rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 10px; }
.stats-dark__item h3 { color: #fff; margin: 0 0 6px; }
.stats-dark__item p { color: rgba(255,255,255,.72); margin: 0; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px 36px; margin-top: 24px; }
.faq-item { display: flex; gap: 16px; align-items: flex-start; }
.faq-item__n { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff;
  font-weight: 900; display: flex; align-items: center; justify-content: center; }
.faq-item h3 { margin: 2px 0 4px; font-size: 1.05rem; }

/* ----- Responsive ------------------------------------------------------ */
@media (min-width: 760px) {
  .split { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .hero__grid { grid-template-columns: 1.3fr 1fr; }
  .hero-banner__inner { grid-template-columns: 1.15fr .85fr; }
}
@media (max-width: 859px) {
  .nav-toggle { display: flex; order: 3; margin-left: auto; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 20px;
    gap: 4px; display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); }
  .site-header__cta .btn--ghost { display: none; }
  .account-grid { grid-template-columns: 1fr; }
  .account-nav { position: static; flex-direction: row; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}
