/* ==========================================================================
   Beef Casino Review — global stylesheet
   ========================================================================== */

:root {
  --bg:            #0e1116;
  --bg-elev:       #12161d;
  --bg-card:       #171c24;
  --bg-card-hover: #1e242e;
  --border:        #242b36;
  --border-soft:   #1c222b;

  --accent:        #3be081;
  --accent-hover:  #2fce72;
  --accent-ink:    #0b0f14;
  --warm-1:        #f5a524;
  --warm-2:        #e8562a;

  --text:          #ffffff;
  --text-soft:     #c3cad4;
  --text-muted:    #8d97a5;

  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --wrap: 1180px;
  --header-h: 64px;

  --font: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

/* --- reset ---------------------------------------------------------------- */

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  color: var(--text);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 6vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.05rem); margin-top: 2.2em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); margin-top: 1.8em; }
h4 { font-size: 1.1rem; margin-top: 1.5em; }
h5 { font-size: 1rem; margin-top: 1.3em; color: var(--text-soft); }

p { margin: 0 0 1.1em; }
strong { color: var(--text); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }

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

/* --- header --------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 17, 22, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 104px; height: 32px; object-fit: contain; }
.brand .brand-sub {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-muted); border-left: 1px solid var(--border); padding-left: 10px;
}

.nav { margin-left: auto; }
.nav ul {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  display: block; padding: 8px 12px; border-radius: var(--r-md);
  color: var(--text-soft); font-size: .84rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.nav a:hover { background: var(--bg-card); color: var(--text); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: var(--r-md);
  font-weight: 700; font-size: .88rem; letter-spacing: .02em;
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-ghost { color: var(--text); border-color: var(--border); background: transparent; }
.btn-ghost:hover { background: var(--bg-card); border-color: #333c4a; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.burger {
  display: none; width: 42px; height: 42px; padding: 0;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--r-md); cursor: pointer;
}
.burger span {
  display: block; width: 18px; height: 2px; background: var(--text);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }

/* --- page shell ----------------------------------------------------------- */

main { padding-bottom: 56px; }

.page-head { padding: 34px 0 6px; }
.page-head h1 { margin-bottom: .35em; }
.page-kicker {
  display: inline-block; margin-bottom: 14px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--warm-1);
}

/* --- media ---------------------------------------------------------------- */

.media {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 0 8px;
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--wide { aspect-ratio: 21 / 9; }
.media--square { aspect-ratio: 1 / 1; }

figure { margin: 30px 0; }
figcaption {
  font-size: .86rem; color: var(--text-muted); padding-top: 8px;
}

/* --- hero ----------------------------------------------------------------- */

.hero {
  display: grid; gap: 24px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  margin: 6px 0 34px;
}
.hero-media { margin: 0; }
.hero-media figcaption { padding-top: 8px; }

.hero-offer {
  background: linear-gradient(150deg, #1c1418, var(--bg-elev) 60%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.hero-offer .offer-label {
  display: inline-block; margin-bottom: 10px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--warm-1);
}
.hero-offer .offer-value {
  display: block; color: var(--text); font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2rem); line-height: 1.15; margin-bottom: 4px;
}
.hero-offer .offer-sub { display: block; color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }

.offer-facts { list-style: none; margin: 0 0 18px; padding: 0; }
.offer-facts li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0; border-top: 1px solid var(--border-soft);
  font-size: .92rem;
}
.offer-facts li:first-child { border-top: 0; }
.offer-facts b { color: var(--text); font-weight: 600; text-align: right; }

.offer-note {
  margin: 10px 0 0; font-size: .76rem; color: var(--text-muted); line-height: 1.5;
}

.score {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px;
}
.score .score-value { font-size: 1.9rem; font-weight: 800; color: var(--accent); line-height: 1; }
.score .score-max { font-size: .9rem; color: var(--text-muted); }

/* --- pros and cons -------------------------------------------------------- */

.proscons {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
}
.proscons > div {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
}
.proscons h3 { margin: 0 0 12px; font-size: 1.05rem; }
.proscons ul { list-style: none; margin: 0; padding: 0; }
.proscons li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: .94rem; }
.proscons li:last-child { margin-bottom: 0; }
.proscons li::before {
  position: absolute; left: 0; top: 0; font-weight: 700;
}
.pros li::before { content: "+"; color: var(--accent); }
.cons li::before { content: "\2212"; color: var(--warm-2); }

/* --- CTA banner ----------------------------------------------------------- */

.cta-banner {
  display: block; position: relative;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, #1b1013, #171c24 55%);
  margin: 26px 0 34px;
}
.cta-banner:hover { text-decoration: none; border-color: #3a2a20; }
.cta-banner .media { aspect-ratio: 32 / 9; border: 0; border-radius: 0; margin: 0; }
.cta-banner-body {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}
.cta-banner-text { flex: 1 1 260px; min-width: 0; }
.cta-banner-text b { display: block; color: var(--text); font-size: 1.15rem; line-height: 1.3; }
.cta-banner-text span { font-size: .87rem; color: var(--text-muted); }

.cta-row { margin: 30px 0; }
.cta-row--pair { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--pair .btn { flex: 1 1 200px; }

/* --- download buttons ----------------------------------------------------- */

.download-row {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin: 26px 0;
}
.btn-store {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: var(--r-lg);
  background: var(--accent); color: var(--accent-ink);
  border: 1px solid transparent;
  transition: background .15s ease;
}
.btn-store:hover { background: var(--accent-hover); text-decoration: none; }
.btn-store img { width: 30px; height: 30px; flex: 0 0 auto; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.btn-store .store-small { font-size: .74rem; font-weight: 600; opacity: .75; }
.btn-store .store-big { font-size: 1.12rem; font-weight: 800; }
.btn-store--ghost {
  background: var(--bg-card); color: var(--text); border-color: var(--border);
}
.btn-store--ghost:hover { background: var(--bg-card-hover); }

@media (max-width: 560px) {
  .download-row { grid-template-columns: 1fr; }
}

/* --- games grid ----------------------------------------------------------- */

.games-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  margin: 22px 0 10px;
}
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.game-card .media { aspect-ratio: 1 / 1; border: 0; border-radius: 0; margin: 0; }
.game-card figcaption, .game-card .game-meta {
  padding: 10px 12px 12px;
}
.game-link { display: block; color: inherit; }
.game-link:hover { text-decoration: none; }
.game-card:hover { border-color: #3a4453; background: var(--bg-card-hover); }
.game-card:hover .game-title { color: var(--accent); }
.game-card .game-title {
  display: block; color: var(--text); font-weight: 600; font-size: .92rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.game-card .game-provider { font-size: .78rem; color: var(--text-muted); }

/* --- review screenshots --------------------------------------------------- */

.review {
  display: grid; gap: 20px;
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  margin: 26px 0 34px;
}
.review-shot {
  margin: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; background: #f7f7f6;
}
.review-shot img { width: 100%; height: auto; display: block; }
.review-shot figcaption { padding: 8px 12px 10px; color: var(--text-muted); font-size: .82rem; }

.review-note {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
}
.review-note h3 { margin: 0 0 4px; font-size: 1.05rem; }
.review-note .review-meta {
  display: block; margin-bottom: 12px;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted);
}
.review-note p { font-size: .94rem; }
.review-note p:last-child { margin-bottom: 0; }

.stars { display: inline-flex; gap: 3px; vertical-align: middle; margin-right: 8px; }
.stars i {
  width: 14px; height: 14px; border-radius: 2px; background: #3a4453; font-style: normal;
}
.stars i.on { background: var(--accent); }
.stars--bad i.on { background: var(--warm-2); }
.stars--mid i.on { background: var(--warm-1); }

/* --- bonus cards ---------------------------------------------------------- */

.bonus-cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0;
}
.bonus-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.bonus-card .media {
  aspect-ratio: 4 / 5; border: 0; border-radius: 0; margin: 0;
  background: linear-gradient(160deg, #1d151a, #12161d);
}
.bonus-card .media img { object-fit: contain; }
.bonus-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.bonus-card-body h3 { margin: 0 0 4px; font-size: 1.05rem; }
.bonus-card-body .bonus-claim {
  display: block; color: var(--accent); font-weight: 700; font-size: 1.25rem; margin-bottom: 2px;
}
.bonus-card-body .bonus-cond { display: block; color: var(--text-muted); font-size: .85rem; margin-bottom: 12px; }

.bonus-terms { list-style: none; margin: 0 0 16px; padding: 0; font-size: .88rem; }
.bonus-terms li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 7px 0; border-top: 1px solid var(--border-soft); margin: 0;
}
.bonus-terms li:first-child { border-top: 0; }
.bonus-terms b { color: var(--text); font-weight: 600; text-align: right; }
.bonus-card .btn { margin-top: auto; }

/* --- promo tiles ---------------------------------------------------------- */

.promo-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0;
}
.promo-card {
  margin: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.promo-card .media { aspect-ratio: 20 / 13; border: 0; border-radius: 0; margin: 0; }
.promo-card figcaption { padding: 12px 14px 14px; color: var(--text-soft); font-size: .88rem; }
.promo-card b { display: block; color: var(--text); font-size: .98rem; margin-bottom: 3px; }

/* --- split (image + text) -------------------------------------------------- */

.split {
  display: grid; gap: 22px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin: 26px 0;
}
.split figure { margin: 0; }
.split p:last-child { margin-bottom: 0; }

/* --- payment icons -------------------------------------------------------- */

.pay-grid {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  margin: 20px 0;
}
.pay-tile {
  display: flex; align-items: center; justify-content: center;
  height: 56px; padding: 10px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md);
}
.pay-tile img { max-height: 26px; width: auto; object-fit: contain; }

/* --- sticky mobile CTA ---------------------------------------------------- */

.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 17, 22, .96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.sticky-cta .btn { width: 100%; }
.sticky-cta small {
  display: block; text-align: center; color: var(--text-muted);
  font-size: .72rem; margin-top: 6px;
}

/* --- providers grid ------------------------------------------------------- */

.providers-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  margin: 22px 0;
}
.provider-tile {
  display: flex; align-items: center; justify-content: center;
  height: 78px; padding: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.provider-tile img { max-height: 40px; width: auto; object-fit: contain; }

/* --- tables --------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  margin: 22px 0;
}
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 460px; }
caption {
  text-align: left; padding: 14px 16px 0; color: var(--text-muted); font-size: .85rem;
}
th, td { padding: 13px 16px; text-align: left; vertical-align: top; }
thead th {
  background: var(--bg-elev); color: var(--text);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 1px solid var(--border);
}
tbody tr + tr td { border-top: 1px solid var(--border-soft); }
tbody th { color: var(--text); font-weight: 600; width: 34%; }

/* --- TOC ------------------------------------------------------------------ */

.toc {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px; margin: 30px 0;
}
.toc h2 { margin: 0 0 12px; font-size: 1.1rem; }
.toc ol {
  margin: 0; padding: 0 0 0 20px;
  columns: 2; column-gap: 30px;
}
.toc li { margin: 0 0 7px; break-inside: avoid; }
.toc a { color: var(--text-soft); font-size: .94rem; }
.toc a:hover { color: var(--accent); }

/* --- callout & lists ------------------------------------------------------ */

.note {
  border-left: 3px solid var(--warm-1);
  background: var(--bg-elev);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px; margin: 24px 0;
  font-size: .95rem;
}
.note p:last-child { margin-bottom: 0; }

.list-clean { list-style: none; margin: 18px 0; padding: 0; }
.list-clean li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
}
.list-clean li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

ul, ol { padding-left: 22px; }
li { margin-bottom: 8px; }

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

.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg-card); padding: 18px 20px; margin-bottom: 12px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.faq-item p:last-child { margin-bottom: 0; }

/* --- author box ----------------------------------------------------------- */

.author-box {
  display: grid; gap: 18px;
  grid-template-columns: 96px 1fr;
  align-items: start;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 24px; margin: 44px 0 0;
}
.author-box .author-photo {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
}
.author-box .author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-box h2 { margin: 0 0 2px; font-size: 1.15rem; }
.author-box .author-role {
  display: block; margin-bottom: 10px;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--warm-1);
}
.author-box p { font-size: .93rem; margin-bottom: .8em; }
.author-box p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .author-box { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .author-box .author-photo { width: 72px; height: 72px; }
}

/* --- updated stamp -------------------------------------------------------- */

.updated {
  margin: 40px 0 0; padding-top: 18px; border-top: 1px solid var(--border);
  font-size: .87rem; color: var(--text-muted);
}

/* --- footer --------------------------------------------------------------- */

.site-footer {
  background: var(--bg-elev); border-top: 1px solid var(--border);
  padding: 40px 0 28px; margin-top: 40px;
  font-size: .9rem;
}
.footer-providers {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  padding-bottom: 26px; margin-bottom: 26px; border-bottom: 1px solid var(--border);
}
.footer-providers span { color: var(--text-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-providers img { height: 24px; width: auto; opacity: .65; }

.footer-cols {
  display: grid; gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 28px;
}
.footer-cols h3 {
  margin: 0 0 12px; font-size: .78rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-muted); font-weight: 700;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 8px; }
.footer-cols a { color: var(--text-soft); }
.footer-cols a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: .83rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.footer-brand img { width: 92px; height: 28px; object-fit: contain; }

.socials { display: flex; gap: 10px; }
.socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
}
.socials img { width: 18px; height: 18px; opacity: .8; }

.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--warm-2); color: var(--warm-2);
  font-weight: 800; font-size: .8rem; flex: 0 0 auto;
}
.footer-legal { flex: 1 1 100%; line-height: 1.6; }

/* --- breadcrumbs ---------------------------------------------------------- */

.crumbs { padding: 18px 0 0; font-size: .84rem; color: var(--text-muted); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--border); }
.crumbs a { color: var(--text-muted); }

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .burger { display: inline-flex; order: 3; margin-left: 10px; }
  .header-actions { order: 2; margin-left: auto; }
  .nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--bg-elev); border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px; margin: 0;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 12px 10px; }
  .header-actions .btn { padding: 9px 14px; font-size: .8rem; }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 18px; }
  .proscons { grid-template-columns: 1fr; }
  .review { grid-template-columns: 1fr; gap: 14px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 86px; }
  .split { grid-template-columns: 1fr; gap: 16px; }
  .cta-banner-body { flex-direction: column; align-items: stretch; text-align: left; gap: 14px; }
  .cta-banner-text { flex: 0 0 auto; }
  .cta-banner-body .btn { width: 100%; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bonus-cards { grid-template-columns: 1fr; }
  .promo-card figcaption { padding: 10px 12px 12px; font-size: .82rem; }
  .toc ol { columns: 1; }
  .cta-banner .media { aspect-ratio: 16 / 9; }
  .brand .brand-sub { display: none; }
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .header-actions .btn-ghost { display: none; }
  .providers-grid { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); }
  .provider-tile { height: 64px; }
}

@media (max-width: 380px) {
  .brand img { width: 84px; height: 26px; }
  .header-actions .btn { padding: 9px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* --- portrait / contain media --------------------------------------------- */

.media--portrait { aspect-ratio: 3 / 4; }
.media--tall { aspect-ratio: 1 / 2; }
.media--contain { background: #0b0f14; }
.media--contain img { object-fit: contain; }
