/* casumo-es.co — paleta y tipografía tomadas de www.casumo.es y del logotipo de marca.
   Violeta #4c00c2 y #3b038e proceden del CSS renderado del sitio oficial;
   #140036, #1b0044, #3c0082, #ffc83b y #e2f9ff proceden del SVG del logotipo. */

:root {
  --ink: #140036;
  --ink-2: #1b0044;
  --surface: #24075c;
  --surface-2: #2f0d72;
  --violet: #4c00c2;
  --violet-deep: #3b038e;
  --gold: #ffc83b;
  --gold-dark: #d49410;
  --gold-soft: #fff1a8;
  --aqua: #e2f9ff;
  --text: #f3eeff;
  --text-dim: #c3b3e6;
  --line: #3a1b73;
  --slate: #798291;
  --info: #2781ea;
  --shell: 1180px;
  --rail: 268px;
  --pad: clamp(16px, 4vw, 34px);
  --radius: 14px;
  --radius-lg: 26px;
  --font-body: "Circular Pro", Figtree, -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Circular Pro", Figtree, -apple-system, system-ui, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- cabecera ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 0, 54, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.brandmark:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  text-decoration: none;
}
.brandmark img {
  width: auto;
  height: 36px;
  max-width: 160px;
  display: block;
}

.mainnav { margin-left: auto; }
.mainnav ul { display: flex; flex-wrap: wrap; gap: 4px 18px; list-style: none; margin: 0; padding: 0; }
.mainnav a { color: var(--text-dim); font-size: 15px; font-weight: 500; }
.mainnav a:hover, .mainnav a[aria-current="page"] { color: var(--gold); text-decoration: none; }

/* ---------- botón hamburguesa y menú drawer ---------- */

.burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  margin-left: auto;
  transition: background 0.15s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.18s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 0, 26, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  z-index: 100;
  background: linear-gradient(180deg, #1b0044 0%, #12002f 100%);
  border-left: 1px solid var(--violet);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer__close {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.drawer__close:hover {
  color: #fff;
  transform: scale(1.1);
}

.drawer__nav {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 14px;
}

.drawer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.drawer__nav a {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.drawer__nav a:hover {
  background: rgba(76, 0, 194, 0.3);
  color: var(--gold);
  text-decoration: none;
  border-color: rgba(76, 0, 194, 0.5);
}

.drawer__nav a[aria-current="page"] {
  background: rgba(255, 200, 59, 0.14);
  color: var(--gold);
  border-color: rgba(255, 200, 59, 0.4);
  font-weight: 700;
}

.drawer__foot {
  padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(20, 0, 54, 0.6);
  display: grid;
  gap: 10px;
}

.drawer__legal {
  margin: 0;
  font-size: 12px;
  text-align: center;
  color: var(--slate);
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

/* ---------- banner de portada ---------- */

.banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 26px;
  background: linear-gradient(105deg, var(--ink-2) 0%, var(--ink-2) 38%, var(--violet-deep) 100%);
  border: 1px solid var(--line);
}

.banner__art {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.95;
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}

.banner__body {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 5vw, 54px);
  max-width: 640px;
}

.banner__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 200, 59, 0.4);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 16px;
}

.banner__offer {
  font-family: var(--font-head);
  font-size: clamp(27px, 4.6vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}

.banner__offer em { font-style: normal; color: var(--gold); }
.banner__terms { color: var(--text-dim); font-size: 15px; margin: 0 0 22px; }

/* ---------- botones ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.btn--play {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 42%, var(--gold-dark) 100%);
  color: #2a1500;
  box-shadow: 0 12px 30px rgba(255, 200, 59, 0.24);
}

.btn--play:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 16px 36px rgba(255, 200, 59, 0.32); }
.btn--wide { width: 100%; }

/* ---------- rejilla principal ---------- */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--rail);
  gap: 46px;
  align-items: start;
  margin-top: 44px;
}

.rail { position: sticky; top: 92px; display: grid; gap: 20px; }

.rail__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.rail__label { font-size: 15px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-dim); margin: 0 0 12px; }
.rail__card ol { margin: 0; padding-left: 18px; font-size: 15px; display: grid; gap: 7px; }
.rail__card ul { margin: 0; padding-left: 18px; font-size: 15px; display: grid; gap: 7px; }
.rail__card a { color: var(--text); }
.rail__card a:hover { color: var(--gold); }

.rail__offer { background: linear-gradient(160deg, var(--violet) 0%, var(--violet-deep) 100%); border-color: var(--violet); text-align: center; }
.rail__offer p { margin: 0 0 14px; font-size: 15px; color: #efe6ff; }
.rail__offer strong { display: block; font-size: 21px; font-family: var(--font-head); color: var(--gold); margin-bottom: 6px; }

/* ---------- contenido ---------- */

article h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.4vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #fff;
}

article h2 {
  font-family: var(--font-head);
  font-size: clamp(23px, 2.9vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 52px 0 14px;
  color: #fff;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

article h3 {
  font-family: var(--font-head);
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 30px 0 10px;
  color: var(--gold-soft);
}

article p { margin: 0 0 17px; }
article ul, article ol { margin: 0 0 20px; padding-left: 22px; }
article li { margin-bottom: 8px; }
article strong { color: #fff; }

.lede { font-size: 19px; line-height: 1.62; color: #e9e0ff; }

.answer {
  background: linear-gradient(140deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--violet);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 0 26px;
}

.answer p:last-child { margin-bottom: 0; }

.note {
  background: var(--ink-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--text-dim);
}

.note strong { color: var(--gold-soft); }

/* ---------- tablas ---------- */

.tablewrap { overflow-x: auto; margin: 0 0 26px; border: 1px solid var(--line); border-radius: var(--radius); }

table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 520px; }
caption { caption-side: top; text-align: left; padding: 14px 18px 0; font-size: 14px; color: var(--text-dim); }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--violet-deep); color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
tbody tr:nth-child(even) { background: rgba(76, 0, 194, 0.13); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- pasos ---------- */

.steps { list-style: none; counter-reset: s; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.steps li { counter-increment: s; position: relative; padding: 15px 18px 15px 58px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin: 0; }
.steps li::before {
  content: counter(s);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #2a1500;
  font-weight: 700;
  font-size: 15px;
}

/* ---------- rejilla de juegos / slot cards ---------- */

.featured-strip {
  margin-top: 34px;
  margin-bottom: 12px;
}

.featured-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.featured-strip__title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.featured-strip__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.featured-strip__link:hover {
  color: #fff;
  text-decoration: underline;
  transform: translateX(2px);
}

.games-grid,
.games {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin: 0 0 34px;
}

.featured-strip .games-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .featured-strip .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.game-card,
.game {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(36, 7, 92, 0.85) 0%, rgba(20, 0, 54, 0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.22s ease;
}

.game-card:hover,
.game:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 200, 59, 0.55);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45), 0 0 24px rgba(76, 0, 194, 0.4);
  text-decoration: none;
}

.game-card__media,
.game__media {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ink-2);
}

.game-card img,
.game img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover img,
.game:hover img {
  transform: scale(1.06);
}

.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 0, 54, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(20, 0, 54, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 42%, var(--gold-dark) 100%);
  color: #2a1500;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 200, 59, 0.4);
  transform: scale(0.9);
  transition: transform 0.18s ease;
}

.game-card__play::before {
  content: "▶";
  font-size: 10px;
}

.game-card:hover .game-card__play {
  transform: scale(1);
}

.game-card__body,
.game figcaption {
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-dim);
  flex: 1 1 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card__title,
.game figcaption b {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.game-card__desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .games-grid,
  .games {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .game-card__body,
  .game figcaption {
    padding: 10px 10px 12px;
  }
  .game-card__title,
  .game figcaption b {
    font-size: 14px;
  }
  .game-card__desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .game-card__badge {
    font-size: 10px;
    padding: 2px 7px;
  }
}

/* ---------- CTA en bloque ---------- */

.ctablock {
  background: linear-gradient(120deg, var(--violet) 0%, var(--violet-deep) 60%, var(--ink-2) 100%);
  border: 1px solid var(--violet);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 34px);
  margin: 34px 0;
  display: grid;
  gap: 16px;
  justify-items: start;
}

.ctablock__title { font-family: var(--font-head); font-weight: 700; font-size: 25px; line-height: 1.2; letter-spacing: -0.02em; color: #fff; margin: 0; }
.ctablock p { margin: 0; color: #efe6ff; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 10px; margin: 0 0 28px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 18px; }
.faq summary { cursor: pointer; padding: 15px 0; font-weight: 600; color: #fff; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 21px; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 0 16px; color: var(--text-dim); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- enlaces internos ---------- */

.crosslinks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin: 0 0 30px; }
.crosslinks a { display: block; background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--violet); border-radius: var(--radius); padding: 15px 17px; color: var(--text); }
.crosslinks a:hover { border-left-color: var(--gold); text-decoration: none; }
.crosslinks b { display: block; color: #fff; margin-bottom: 3px; }
.crosslinks span { font-size: 14.5px; color: var(--text-dim); }

/* ---------- confianza y aviso ---------- */

.trustbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin: 30px 0; }
.trustbar div { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 15px 17px; font-size: 14.5px; color: var(--text-dim); }
.trustbar b { display: block; color: var(--gold-soft); margin-bottom: 3px; font-size: 15px; }

.disclosure { font-size: 14.5px; color: var(--slate); border-top: 1px solid var(--line); padding-top: 20px; margin-top: 40px; }
.disclosure a { color: var(--text-dim); }

/* ---------- pie ---------- */

.sitefoot { border-top: 1px solid var(--line); margin-top: 56px; padding: 34px 0 20px; background: var(--ink-2); }
.sitefoot__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; }
.foot__label { font-size: 14px; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-dim); margin: 0 0 10px; }
.sitefoot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: 15px; }
.sitefoot a { color: var(--text-dim); }
.sitefoot a:hover { color: var(--gold); }
.sitefoot__legal { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--slate); }
.age { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); font-weight: 700; font-size: 13px; margin-right: 10px; vertical-align: middle; }

.stickybar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(20, 0, 54, 0.96);
  border-top: 1px solid var(--violet);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
}

.stickybar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stickybar__text {
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--text-dim);
  margin: 0;
}

.stickybar__text b {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-right: 8px;
}

.stickybar__text span {
  display: inline;
}

.stickybar .btn {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .rail { position: static; }
  .banner__art { width: 100%; opacity: 0.28; mask-image: none; -webkit-mask-image: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; padding-bottom: 74px; }
  .shell { padding-inline: 14px; }

  .stickybar {
    display: block;
  }

  /* Navigation & Burger */
  .topbar__inner {
    min-height: 58px;
  }
  .brandmark img {
    height: 32px;
  }
  .mainnav {
    display: none;
  }
  .burger {
    display: flex;
  }

  /* Banner mobile adaptation */
  .banner {
    border-radius: 18px;
    margin-top: 14px;
  }
  .banner__body {
    padding: 20px 16px 22px;
  }
  .banner__eyebrow {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }
  .banner__offer {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .banner__terms {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .banner .btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 15.5px;
  }

  /* Article typography */
  article h1 { font-size: clamp(24px, 5.5vw, 30px); line-height: 1.16; margin-bottom: 14px; }
  article h2 { font-size: clamp(20px, 4.5vw, 24px); margin-top: 36px; padding-top: 18px; }
  article h3 { font-size: 18px; margin-top: 24px; }
  .lede { font-size: 16.5px; }
  .answer { padding: 16px 16px; border-radius: 12px; }
  .note { padding: 14px 16px; border-radius: 12px; font-size: 14.5px; }

  /* CTAs & steps */
  .ctablock { padding: 20px 16px; border-radius: 18px; gap: 12px; }
  .ctablock__title { font-size: 21px; }
  .ctablock .btn { width: 100%; font-size: 15.5px; padding: 13px 20px; }
  .steps li { padding: 12px 14px 12px 48px; font-size: 14.5px; }
  .steps li::before { left: 12px; top: 11px; width: 25px; height: 25px; font-size: 13px; }

  /* Crosslinks & Trust */
  .crosslinks { grid-template-columns: 1fr; gap: 10px; }
  .trustbar { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trustbar div { padding: 12px 14px; font-size: 13.5px; }
  .sitefoot__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .featured-strip {
    margin-top: 22px;
    margin-bottom: 8px;
  }
  .featured-strip__head {
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
  }
  .featured-strip__title {
    font-size: 18px;
  }
  .featured-strip__link {
    font-size: 12.5px;
  }

  .games-grid,
  .games,
  .featured-strip .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .game-card,
  .game {
    border-radius: 12px;
  }
  .game-card:active,
  .game:active {
    transform: scale(0.97);
  }
  .game-card__body,
  .game figcaption {
    padding: 8px 10px 10px;
  }
  .game-card__title,
  .game figcaption b {
    font-size: 13.5px;
    margin-bottom: 3px;
  }
  .game-card__desc {
    font-size: 11.5px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }
  .game-card__badge {
    top: 6px;
    left: 6px;
    font-size: 9.5px;
    padding: 2px 7px;
    letter-spacing: 0.02em;
  }

  /* Stickybar mobile layout */
  .stickybar {
    padding: 7px 0 calc(7px + env(safe-area-inset-bottom));
  }
  .stickybar__inner {
    gap: 8px;
  }
  .stickybar__text {
    font-size: 11.5px;
    line-height: 1.2;
  }
  .stickybar__text b {
    display: block;
    font-size: 13px;
    margin-right: 0;
  }
  .stickybar__text span {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
  }
  .stickybar .btn {
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .trustbar { grid-template-columns: 1fr; }
  .sitefoot__grid { grid-template-columns: 1fr; }
  .brandmark img { height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .game-card, .game, .brandmark { transition: none; }
}
