/* ===========================================================
   Apex Games Review — UK licensed casino comparison
   =========================================================== */

:root {
  --navy-950: #0f1829;
  --navy-900: #1a2744;
  --navy-800: #243560;
  --navy-700: #314a78;
  --navy-50:  #eef2f9;
  --coral-500: #f47068;
  --coral-600: #e0554d;
  --amber-400: #f9c784;
  --ink:       #1c2333;
  --ink-soft:  #5a6478;
  --line:      #dde3ef;
  --cream:     #faf8f5;
  --cream-2:   #f3f0eb;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, .07);
  --shadow-md: 0 12px 32px rgba(26, 39, 68, .12);
  --shadow-lg: 0 20px 50px rgba(26, 39, 68, .18);
  --radius:    14px;
  --radius-lg: 20px;
  --maxw: 1200px;
  --ease: cubic-bezier(.25, .8, .25, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--ink);
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 780px; }

.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 12px;
}
.label--light { color: var(--amber-400); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy-900);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .94rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 2px; }
.btn--primary { --bg: var(--coral-500); --fg: #fff; }
.btn--primary:hover { background: var(--coral-600); }
.btn--navy { --bg: var(--navy-900); }
.btn--navy:hover { background: var(--navy-800); }
.btn--amber { --bg: var(--amber-400); --fg: var(--navy-950); }
.btn--amber:hover { filter: brightness(.95); }
.btn--outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn--outline:hover { background: var(--navy-900); color: #fff; }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--ghost { background: var(--navy-50); border-color: var(--line); color: var(--navy-800); }
.btn--ghost:hover { background: var(--line); }
.btn--small { padding: 8px 16px; font-size: .84rem; }

.tag {
  display: inline-flex; align-items: center;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: 5px 10px; border-radius: 6px; text-transform: uppercase;
}
.tag--soft { background: var(--navy-50); color: var(--navy-700); }

/* ---------- Disclosure bar ---------- */
.disclosure-bar { background: var(--navy-950); color: #a8b4cc; }
.disclosure-bar__inner {
  display: flex; align-items: center; gap: 16px;
  padding-block: 10px; font-size: .8rem;
}
.disclosure-bar__age {
  flex: none; background: var(--coral-500); color: #fff;
  font-weight: 800; font-size: .7rem; padding: 4px 10px; border-radius: 4px;
}
.disclosure-bar__text { margin: 0; flex: 1; }
.disclosure-bar__text strong { color: #fff; }
.disclosure-bar__link { flex: none; color: var(--amber-400); font-weight: 600; }
.disclosure-bar__link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--line);
  position: sticky; top: 0; z-index: 40;
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; gap: 20px;
  padding-block: 14px;
}
.site-header__nav { margin-left: auto; }

.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo__icon { display: inline-flex; }
.logo__icon svg { display: block; border-radius: 10px; }
.logo__copy { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: "Libre Baskerville", serif;
  font-weight: 700; font-size: 1.35rem;
  color: var(--navy-900); letter-spacing: -.03em;
}
.logo__sub { font-size: .7rem; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  padding-block: 6px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--navy-900); border-color: var(--coral-500); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.menu-btn span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: .25s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-bottom: 2px solid var(--line);
}
.mobile-menu a { padding: 14px 24px; border-top: 1px solid var(--line); font-weight: 500; }
.mobile-menu.open { display: flex; }

/* ---------- Hero (panel left, content right) ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 5% 90%, rgba(244,112,104,.12), transparent 55%),
    linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  padding-block: clamp(40px, 6vw, 80px);
}
.hero__layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 56px;
  align-items: center;
}
.hero__sidebar {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #c5d0e4;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--coral-500);
}
.hero__sidebar h2 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.quick-facts { list-style: none; margin: 0 0 20px; padding: 0; }
.quick-facts li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.quick-facts li:last-child { border-bottom: 0; }
.quick-facts strong { color: var(--amber-400); font-weight: 600; }
.hero__sidebar-note { font-size: .78rem; color: rgba(197,208,228,.65); margin: 0; }

.hero__main h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: 16px; }
.hero__intro { font-size: 1.08rem; color: var(--ink-soft); max-width: 580px; margin-bottom: 26px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__stats {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.hero__stats li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.hero__stats strong {
  display: block; font-family: "Libre Baskerville", serif;
  font-size: 1.5rem; color: var(--navy-900); margin-bottom: 2px;
}
.hero__stats span { font-size: .78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Regulator ribbon ---------- */
.reg-ribbon {
  background: var(--navy-50);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.reg-ribbon__track {
  display: flex; align-items: center; gap: 40px;
  padding-block: 20px; flex-wrap: wrap; justify-content: center;
}
.reg-ribbon__title {
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: .1em; margin: 0;
}
.reg-ribbon__logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.reg-ribbon__logos img { max-height: 36px; width: auto; opacity: .75; filter: grayscale(.4); transition: .25s; }
.reg-ribbon__logos img:hover { opacity: 1; filter: grayscale(0); }
.reg-ribbon__logos img.logo-ukgc { filter: invert(1) grayscale(.4); }
.reg-ribbon__logos img.logo-ukgc:hover { filter: invert(1) grayscale(0); }

/* ---------- Sections ---------- */
.block { padding-block: clamp(52px, 7vw, 88px); }
.block--alt { background: var(--white); }
.block--navy { background: linear-gradient(145deg, var(--navy-950), var(--navy-900)); color: #c5d0e4; }

.block__header { margin-bottom: 40px; }
.block__header h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.block__header--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.block__header--center { text-align: center; max-width: 700px; margin-inline: auto; }
.block__header--light h2 { color: #fff; }
.block__desc { color: var(--ink-soft); max-width: 520px; margin: 12px 0 0; font-size: .98rem; }
.block__desc--center { margin-inline: auto; }
.block__desc--light { color: rgba(197,208,228,.85); }

/* ---------- Brand rows (horizontal operator layout) ---------- */
.brand-list { display: flex; flex-direction: column; gap: 16px; }
.brand-row {
  display: grid;
  grid-template-columns: 72px 140px 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.brand-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244,112,104,.4);
}
.brand-row__pos {
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--coral-500); text-align: center;
}
.brand-row__logo {
  height: 72px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px; background: var(--cream);
  border: 1px solid var(--line);
}
.brand-row__logo img { max-height: 52px; width: auto; object-fit: contain; }
.brand-row__logo--dark { background: var(--navy-900); border-color: var(--navy-800); }
.brand-row__body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.brand-row__body p { margin: 0 0 8px; font-size: .88rem; color: var(--ink-soft); }
.brand-row__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.brand-row__tags span {
  font-size: .72rem; font-weight: 600; color: var(--navy-700);
  background: var(--navy-50); padding: 3px 8px; border-radius: 4px;
}
.brand-row__score { text-align: center; min-width: 80px; }
.brand-row__score-val { font-weight: 700; font-size: 1.1rem; color: var(--navy-900); }
.brand-row__cta { min-width: 160px; }
.brand-row__cta .btn { width: 100%; }
.brand-row__fine { grid-column: 2 / -1; font-size: .7rem; color: var(--ink-soft); margin: 0; text-align: right; }

.stars {
  --rating: 5;
  --pct: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: .9rem;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
}
.stars::before { content: "★★★★★"; color: var(--line); }
.stars::after {
  content: "★★★★★";
  color: var(--amber-400);
  position: absolute; left: 0; top: 0;
  width: var(--pct); overflow: hidden; white-space: nowrap;
}

/* ---------- Method timeline ---------- */
.method-timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 720px; margin-inline: auto;
  position: relative;
}
.method-timeline::before {
  content: "";
  position: absolute; left: 28px; top: 24px; bottom: 24px;
  width: 2px; background: var(--line);
}
.method-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; padding: 20px 0;
}
.method-step__dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--coral-500);
  display: flex; align-items: center; justify-content: center;
  font-family: "Libre Baskerville", serif;
  font-weight: 700; font-size: 1.1rem; color: var(--coral-500);
  position: relative; z-index: 1;
}
.method-step__content {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
}
.method-step__content h3 { font-size: 1.08rem; margin-bottom: 6px; }
.method-step__content p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------- Genre tiles ---------- */
.genre-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.genre-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  border-top: 3px solid var(--coral-500);
}
.genre-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.genre-tile__text h3 { font-size: 1.05rem; margin-bottom: 6px; }
.genre-tile__text p { margin: 0; font-size: .86rem; color: var(--ink-soft); }
.genre-tile__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--navy-50); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Promo cards ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.promo-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  transition: background .2s;
}
.promo-card:hover { background: rgba(255,255,255,.1); }
.promo-card__logo img {
  max-height: 36px; width: auto;
  background: #fff; border-radius: 8px; padding: 6px 10px;
}
.promo-card__logo img.promo-card__logo-dark { background: var(--navy-950); }
.promo-card__info h3 { color: #fff; font-size: 1rem; margin-bottom: 4px; font-family: "DM Sans", sans-serif; font-weight: 600; }
.promo-card__info p { margin: 0; font-size: .86rem; color: rgba(197,208,228,.8); }
.promo-card__wager {
  text-align: center; font-weight: 700;
  color: var(--amber-400); font-size: .9rem;
}
.promo-card__wager small { display: block; font-size: .68rem; color: rgba(197,208,228,.6); font-weight: 500; }
.promo-disclaimer { margin: 20px 0 0; font-size: .78rem; color: rgba(197,208,228,.65); }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin: 0;
  display: flex; flex-direction: column;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__stars { margin-bottom: 10px; }
.review-card blockquote {
  margin: 0 0 14px; font-size: .88rem; line-height: 1.55;
  flex: 1; font-style: italic; color: var(--ink);
}
.review-card__who {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.review-card__who img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--coral-500);
}
.review-card__who span { display: flex; flex-direction: column; line-height: 1.25; }
.review-card__who strong { font-size: .84rem; }
.review-card__who small { color: var(--ink-soft); font-size: .74rem; }

/* ---------- Regulator badges ---------- */
.reg-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reg-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, border-color .25s;
  display: flex; flex-direction: column; align-items: center;
}
.reg-badge:hover { transform: translateY(-3px); border-color: var(--coral-500); }
.reg-badge__img {
  height: 56px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.reg-badge__img img { max-height: 36px; width: auto; }
.reg-badge__img img.logo-ukgc { filter: invert(1); }
.reg-badge h3 { font-size: 1rem; margin-bottom: 6px; }
.reg-badge p { margin: 0; font-size: .82rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--coral-500); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 16px 20px; font-weight: 600; font-size: .96rem;
  display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "›"; font-size: 1.2rem; color: var(--coral-500);
  transform: rotate(90deg); transition: transform .25s;
}
.faq__item[open] summary::after { transform: rotate(-90deg); }
.faq__answer { padding: 0 20px 18px; }
.faq__answer p { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.faq__answer a { color: var(--navy-700); font-weight: 600; text-decoration: underline; }

/* ---------- Safer gambling ---------- */
.safety-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safety-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.safety-panel h2 { font-size: 1.5rem; margin-bottom: 12px; }
.safety-panel h3 { font-size: 1.15rem; margin: 8px 0 10px; }
.safety-panel p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 12px; }
.safety-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 8px; }
.safety-list li {
  padding-left: 22px; position: relative;
  font-size: .88rem; color: var(--ink-soft);
}
.safety-list li::before {
  content: "•"; position: absolute; left: 4px;
  color: var(--coral-500); font-weight: 700;
}
.safety-panel__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.safety-panel--accent {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-950));
  color: #c5d0e4; border-color: transparent;
}
.safety-panel--accent h3 { color: #fff; }
.safety-panel--accent p { color: rgba(197,208,228,.85); }
.safety-panel--accent .tag--soft { background: rgba(244,112,104,.2); color: var(--coral-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #8fa0bc; }
.site-footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px; padding-block: 48px 36px;
}
.logo--footer .logo__name { color: #fff; }
.site-footer__blurb { font-size: .86rem; margin: 14px 0; max-width: 300px; color: #6d7f9a; }
.age-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 2px solid var(--coral-500); color: var(--coral-500);
  font-weight: 800; font-size: .82rem;
}
.footer-col h4 {
  color: #fff; font-family: "DM Sans", sans-serif;
  font-size: .74rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 14px;
}
.footer-col a { display: block; font-size: .88rem; color: #8fa0bc; padding: 4px 0; }
.footer-col a:hover { color: var(--amber-400); }
.footer-col p { font-size: .8rem; color: #6d7f9a; margin: 0; }
.site-footer__base {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 18px;
}
.site-footer__base-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.site-footer__base-inner p { margin: 0; font-size: .78rem; color: #5d6f8a; }
.site-footer__tagline { color: var(--amber-400); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 24, 41, .82);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-gate[hidden] { display: none; }
.age-gate__box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 440px; width: 100%; padding: 36px 32px;
  text-align: center; box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--coral-500);
}
.age-gate__icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: var(--navy-900); color: var(--coral-500);
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.age-gate__box h2 { font-size: 1.5rem; margin-bottom: 10px; }
.age-gate__box > p { color: var(--ink-soft); font-size: .92rem; margin: 0 0 22px; }
.age-gate__btns { display: flex; flex-direction: column; gap: 10px; }
.age-gate__fine { font-size: .76rem; color: var(--ink-soft); margin: 18px 0 0; }
.age-gate__fine a { color: var(--navy-700); text-decoration: underline; }

/* ---------- Cookie banner ---------- */
.cookie-bar {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%);
  z-index: 90; width: min(920px, calc(100% - 28px));
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--coral-500);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar__content {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 20px; flex-wrap: wrap;
}
.cookie-bar__content p { margin: 0; flex: 1; min-width: 220px; font-size: .84rem; color: var(--ink-soft); }
.cookie-bar__content a { color: var(--navy-700); text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: 8px; }

/* ---------- Legal pages ---------- */
.legal-page { padding-block: 48px 80px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page .legal-updated { color: var(--ink-soft); font-size: .88rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: .94rem; }
.legal-page ul { padding-left: 20px; }
.legal-page a { color: var(--navy-700); text-decoration: underline; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__sidebar { order: 2; }
  .genre-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-badges { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .brand-row {
    grid-template-columns: 48px 1fr;
    gap: 12px 16px;
  }
  .brand-row__pos { grid-row: 1; }
  .brand-row__logo { grid-row: 1; grid-column: 2; justify-self: end; width: 100px; height: 56px; }
  .brand-row__body { grid-column: 1 / -1; }
  .brand-row__score { grid-column: 1; text-align: left; }
  .brand-row__cta { grid-column: 2; }
  .brand-row__fine { text-align: left; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card { grid-template-columns: 1fr; text-align: center; }
  .promo-card__logo { justify-self: center; }
  .safety-panels { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .disclosure-bar__inner { flex-wrap: wrap; }
  .disclosure-bar__text { flex-basis: 100%; }
}

@media (max-width: 520px) {
  .genre-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .reg-badges { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__base-inner { flex-direction: column; }
}
