/* =========================================================================
   WoWBoost — light theme (Kingboost-inspired: off-white + green + navy)
   ========================================================================= */

:root {
  --bg: #FBFBFB;
  --bg-2: #F2F4F7;
  --bg-3: #EAF0F4;
  --panel: #FFFFFF;
  --navy: #11122C;
  --navy-2: #1B1D3D;
  --border: #E6E8EF;
  --border-2: #D5DAE3;
  --text: #1A1A24;
  --heading: #252530;
  --muted: #5B6270;
  --primary: #00B67A;          /* bright green — decorative only (borders, icons, ghost fills) */
  --primary-2: #007A4D;        /* accessible green — text on light + solid bg w/ white text (AA 4.5:1) */
  --primary-3: #00623E;        /* darkest green — button hover */
  --primary-ghost: rgba(0, 182, 122, 0.10);
  --lime: #CDEB45;             /* highlighter accent */
  --success: #00B67A;
  --danger: #F0616D;
  --star: #FFB020;
  --star-empty: #D7DCE5;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 72px;
  --shadow: 0 8px 30px rgba(17, 18, 44, 0.08);
  --shadow-sm: 0 2px 10px rgba(17, 18, 44, 0.06);
  --maxw: 1200px;
  --gap: 24px;
  --header-h: 76px;
  --font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Onest", var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-2); text-decoration: none; }
a:hover { color: var(--primary-3); }

h1, h2, h3, h4 { color: var(--heading); line-height: 1.15; margin: 0 0 .6em; font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.4vw, 36px); }
h3 { font-size: 20px; font-weight: 700; }
p { margin: 0 0 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--tight { padding: 28px 0; }
.eyebrow { color: var(--primary-2); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; margin-bottom: 10px; font-family: var(--font-head); }
.text-muted { color: var(--muted); }
.center { text-align: center; }
.mark { background: var(--lime); color: var(--navy); padding: 0 .18em; border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: .15s ease;
  text-align: center; line-height: 1;
}
.btn--primary { background: var(--primary-2); color: #fff; }
.btn--primary:hover { background: var(--primary-3); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: var(--panel); color: var(--heading); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--bg-2); color: var(--heading); border-color: var(--primary); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 17px 36px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }

/* ---- Announcement bar (rotating) ---- */
.announce { background: var(--primary-2); color: #fff; font-size: 14px; font-weight: 500; display: grid; }
.announce__item { grid-area: 1 / 1; display: flex; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 9px 16px; opacity: 0; transition: opacity .5s ease; }
.announce__item.is-active { opacity: 1; }
.announce a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.site-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--heading); letter-spacing: -0.03em; }
.site-brand__mark { width: 36px; height: 36px; border-radius: 11px; background: var(--primary-2); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; }
.site-brand em { color: var(--primary-2); font-style: normal; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: var(--heading); font-weight: 600; font-size: 15px; padding: 9px 16px; border-radius: 40px; display: block; font-family: var(--font-head); }
.primary-nav a:hover { background: var(--bg-2); color: var(--primary); }
.primary-nav a.nav-feature { color: var(--primary-2); background: var(--primary-ghost); }
.primary-nav a.nav-feature::before { content: "⇄"; margin-right: 6px; font-weight: 800; }
.primary-nav a.nav-feature:hover { background: var(--primary-2); color: #fff; }
.header-cta { margin-left: 8px; }
.nav-toggle { display: none; margin-left: auto; background: var(--bg-2); border: 1px solid var(--border); color: var(--heading); width: 46px; height: 46px; border-radius: 12px; font-size: 20px; cursor: pointer; }

/* Language switcher */
.lang-switch { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.lang-switch__item { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; font-size: 17px; line-height: 1; border: 1px solid transparent; filter: grayscale(.35); opacity: .75; transition: .15s; }
.lang-switch__item:hover { filter: none; opacity: 1; background: var(--bg-2); }
.lang-switch__item.is-active { filter: none; opacity: 1; border-color: var(--primary); }

/* ---- Hero (dark navy rounded card on light bg) ---- */
.hero { padding: 28px 0 20px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; background: var(--navy); border-radius: var(--radius-xl); padding: 56px; position: relative; }
.hero__grid h1, .hero__grid .eyebrow { color: #fff; position: relative; }
.hero__grid .eyebrow { color: var(--lime); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.75); max-width: 52ch; position: relative; }

/* Editor's top-pick card (replaces the empty hero placeholder) */
.top-pick { background: #fff; border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 20px 40px rgba(0,0,0,.28); }
.top-pick__tag { display: inline-block; background: var(--lime); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; padding: 5px 12px; border-radius: 20px; margin-bottom: 16px; }
.top-pick__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.top-pick__logo { height: 40px; }
.top-pick__logo img { max-height: 40px; width: auto; }
.top-pick__logo .logo-fallback { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--heading); }
.top-pick__name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--heading); }
.top-pick__points { list-style: none; margin: 0 0 18px; padding: 0; }
.top-pick__points li { position: relative; padding: 5px 0 5px 24px; color: var(--text); font-size: 14px; }
.top-pick__points li::before { content: "✓"; position: absolute; left: 0; top: 5px; color: var(--primary); font-weight: 800; }
.top-pick__review { display: block; text-align: center; margin-top: 12px; font-weight: 600; font-size: 14px; }

/* ---- Grids / cards ---- */
.grid { display: grid; gap: var(--gap); }
.grid--games { grid-template-columns: repeat(4, 1fr); }
.grid--standards { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.card--pad-lg { padding: 32px; }

/* Game tile */
.game-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; background: linear-gradient(160deg, var(--navy-2), var(--navy)); display: flex; align-items: flex-end; padding: 16px; transition: .15s; box-shadow: var(--shadow-sm); }
.game-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.game-tile.has-bg { background-size: cover; background-position: center; }
.game-tile span { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 18px; position: relative; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.game-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,20,.12), rgba(10,12,20,.72)); z-index: 1; }
.game-tile--soon { opacity: .6; pointer-events: none; }
.game-tile__badge { position: absolute; top: 10px; right: 10px; z-index: 3; font-size: 11px; background: var(--lime); border: 0; color: var(--navy); padding: 3px 9px; border-radius: 20px; font-weight: 700; }

/* Pillar card — numbered, editorial (no emoji) */
.pillar { text-align: left; position: relative; }
.pillar__num { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--primary-2); letter-spacing: -0.02em; margin-bottom: 12px; display: inline-flex; align-items: center; }
.pillar__num::after { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--border-2); margin-left: 12px; }

/* ---- Stars ---- */
.stars { --pct: 100%; display: inline-block; position: relative; font-size: 18px; line-height: 1; font-family: Arial, sans-serif; letter-spacing: 2px; }
.stars::before { content: "★★★★★"; color: var(--star-empty); }
.stars__fill { position: absolute; top: 0; left: 0; width: var(--pct); overflow: hidden; white-space: nowrap; }
.stars__fill::before { content: "★★★★★"; color: var(--star); }
.rating-score { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--heading); }
.rating-inline { display: inline-flex; align-items: center; gap: 8px; }

/* ---- Store card ---- */
.store-card { display: grid; grid-template-columns: 40px 120px 1fr auto; gap: 20px; align-items: center; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; transition: .15s; box-shadow: var(--shadow-sm); }
.store-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.store-card--featured { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-ghost), var(--shadow); position: relative; }
.store-card__rank { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--muted); text-align: center; }
.store-card--featured .store-card__rank { color: var(--primary-2); }
.store-card__logo { height: 46px; display: flex; align-items: center; }
.store-card__logo img { max-height: 46px; width: auto; }
.logo-chip { background: var(--navy); border-radius: 12px; padding: 8px 12px; display: inline-flex; align-items: center; justify-content: center; max-width: 100%; overflow: hidden; }
.logo-chip .logo-img { width: auto; height: auto; object-fit: contain; display: block; max-width: 100%; }
.store-card__logo { min-width: 0; overflow: hidden; }
.store-card__logo .logo-img { max-height: 24px; max-width: 92px; }
.top-pick__logo .logo-chip { padding: 7px 12px; border-radius: 10px; }
.top-pick__logo .logo-img { max-height: 26px; max-width: 116px; }
.review-head__logo { width: auto; }
.review-head__logo .logo-chip { padding: 12px 16px; border-radius: 16px; }
.review-head__logo .logo-img { max-height: 40px; max-width: 130px; }
.related-store__logo .logo-chip { padding: 8px 12px; }
.related-store__logo .logo-img { max-height: 24px; max-width: 88px; }
.logo-mono { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; }
.top-pick__logo .logo-mono { width: 40px; height: 40px; border-radius: 10px; }
.review-head__logo .logo-mono { width: 72px; height: 72px; border-radius: 16px; font-size: 24px; }
.store-card__body { min-width: 0; }
.store-card__name { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin: 0 0 4px; }
.store-card__tag { color: var(--muted); font-size: 14px; margin: 0; }
.store-card__actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 168px; }
.featured-badge { position: absolute; top: -11px; left: 26px; background: var(--lime); color: var(--navy); font-family: var(--font-head); font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .03em; }

/* ---- Promo widget ---- */
.promo { display: inline-flex; align-items: stretch; border: 1px dashed var(--border-2); border-radius: 12px; overflow: hidden; background: var(--bg-2); }
.promo__label { padding: 9px 14px; font-weight: 700; letter-spacing: .03em; color: var(--heading); font-size: 14px; }
.promo__code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-weight: 700; color: var(--primary-2); padding: 9px 14px; display: flex; align-items: center; }
.promo__copy { border: 0; border-left: 1px dashed var(--border-2); background: var(--primary-ghost); color: var(--primary-2); padding: 0 16px; font-weight: 700; cursor: pointer; font-family: var(--font-head); }
.promo__copy:hover { background: var(--primary-2); color: #fff; }
.promo__copy.copied { background: var(--primary-2); color: #fff; }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--panel); box-shadow: var(--shadow-sm); }
table.compare, table.promos { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td, table.promos th, table.promos td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.compare thead th, table.promos thead th { background: var(--bg-2); font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
table.compare tbody tr:last-child td, table.promos tbody tr:last-child td { border-bottom: 0; }
table.compare tr.is-featured td { background: var(--primary-ghost); }

/* ---- Head-to-head (versus) pages ---- */
.vs-hero { text-align: center; max-width: 780px; margin: 0 auto 8px; }
.vs-hero h1 { margin-bottom: 14px; }
.vs-hero .lead { color: var(--muted); }
.vs-h2 { margin: 40px 0 18px; }
.vs-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.vs-card { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.vs-card--pick { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-ghost); }
.vs-card__ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; padding: 5px 14px; border-radius: 40px; white-space: nowrap; }
.vs-card__logo { height: 40px; display: flex; align-items: center; justify-content: center; }
.vs-card__logo .logo-img { max-height: 40px; max-width: 150px; }
.vs-card__name { margin: 0; }
.vs-card .btn--block { margin-top: 6px; }
.vs-card__review { font-weight: 600; color: var(--primary-2); text-decoration: none; font-size: 14px; }
.vs-table td, .vs-table th { text-align: center; }
.vs-table td.vs-metric { text-align: left; font-weight: 600; color: var(--heading); font-family: var(--font-head); }
.vs-table td.vs-win { background: var(--primary-ghost); font-weight: 700; color: var(--primary-2); }
.vs-tick { color: var(--primary); font-weight: 800; }
.vs-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.vs-pc { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.vs-pc h3 { margin: 0 0 12px; }
.vs-pros, .vs-cons { list-style: none; margin: 0 0 10px; padding: 0; }
.vs-pros li, .vs-cons li { position: relative; padding-left: 26px; margin-bottom: 8px; line-height: 1.45; }
.vs-pros li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 800; }
.vs-cons li::before { content: "✕"; position: absolute; left: 0; color: #c0392b; font-weight: 800; }
.vs-verdict { margin-top: 40px; background: var(--navy); color: #fff; border-radius: var(--radius-xl); padding: 34px; }
.vs-verdict h2 { color: #fff; margin-top: 0; }
.vs-verdict p { color: rgba(255,255,255,.85); }
.vs-verdict__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
@media (max-width: 700px) {
  .vs-cards, .vs-proscons { grid-template-columns: 1fr; }
}
.code-cell { font-family: ui-monospace, Menlo, monospace; color: var(--primary-2); font-weight: 700; }

/* ---- Pros / Cons ---- */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proscons__col { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.proscons__col h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.proscons ul { list-style: none; margin: 0; padding: 0; }
.proscons li { display: flex; gap: 10px; padding: 7px 0; align-items: flex-start; }
.proscons li::before { flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; margin-top: 2px; }
.proscons__pros li::before { content: "✓"; background: var(--primary-ghost); color: var(--primary-2); }
.proscons__cons li::before { content: "✕"; background: rgba(240,97,109,.14); color: var(--danger); }

/* ---- Rating box ---- */
.rate-box { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.rate-box__head { display: flex; align-items: center; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; flex-wrap: wrap; }
.rate-box__overall { text-align: center; background: var(--navy); color: #fff; border-radius: var(--radius); padding: 16px 22px; }
.rate-box__overall .num { font-family: var(--font-head); font-size: 44px; font-weight: 800; line-height: 1; color: #fff; }
.rate-box__overall .den { color: rgba(255,255,255,.7); font-size: 14px; }
.rate-item { display: grid; grid-template-columns: 1fr auto 48px; gap: 14px; align-items: center; padding: 9px 0; }
.rate-item__title { color: var(--muted); }
.rate-item__num { font-family: var(--font-head); font-weight: 800; text-align: right; color: var(--heading); }

/* ---- Verdict box ---- */
.verdict { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.verdict h2, .verdict *, .verdict p { color: #fff; }
.verdict__score { text-align: center; }
.verdict__score .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--lime); }

/* ---- FAQ accordion ---- */
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: var(--panel); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--heading); font-family: var(--font-head); font-weight: 700; font-size: 17px; padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq__q::after { content: "＋"; color: var(--primary); font-size: 20px; flex: none; }
.faq__item.open .faq__q::after { content: "－"; }
.faq__a { padding: 0 20px; max-height: 0; overflow: hidden; transition: .2s ease; color: var(--muted); }
.faq__item.open .faq__a { padding: 0 20px 18px; max-height: 500px; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { font-size: 14px; color: var(--muted); padding: 18px 0; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span[aria-current] { color: var(--heading); font-weight: 600; }

/* ---- Disclosure ---- */
.disclosure { background: var(--panel); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 12px; padding: 14px 18px; font-size: 13px; color: var(--muted); margin: 20px 0; box-shadow: var(--shadow-sm); }
.disclosure strong { color: var(--heading); }
.disclosure a { text-decoration: underline; }

/* ---- Review layout ---- */
.review-head { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin: 12px 0 28px; }
.review-head__logo { width: 130px; display: flex; align-items: center; }
.review-title { margin: 0 0 8px; }
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pay-icons, .game-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-icons span, .game-icons a { font-size: 13px; background: var(--bg-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px; color: var(--muted); }
.prose h2 { margin-top: 40px; padding-top: 8px; }
.prose h3 { margin-top: 24px; }
.prose ul { padding-left: 20px; color: var(--text); }
.prose img { border-radius: var(--radius); border: 1px solid var(--border); margin: 16px 0; }
.section-cta { margin: 20px 0 8px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Author box */
.author-box { display: flex; gap: 16px; align-items: center; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; margin-top: 32px; box-shadow: var(--shadow-sm); }
.author-box__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--primary-ghost); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--primary-2); flex: none; }
.author-box__img { width: 64px; height: 64px; border-radius: 50%; flex: none; }
.author-box__name { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--heading); }
.author-box__role { font-size: 13px; color: var(--primary-2); font-weight: 600; margin: 2px 0 6px; }
.author-box__bio { font-size: 14px; color: var(--muted); margin: 0 0 8px; }
.author-box__link { font-size: 13px; font-weight: 600; }

/* Date badge */
.date-badge { display: inline-block; font-size: 13px; color: var(--muted); background: var(--bg-2); border: 1px solid var(--border); padding: 5px 13px; border-radius: 20px; }

/* ---- Footer (navy) ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 52px 0 26px; margin-top: 64px; font-size: 14px; }
.site-footer .site-brand { color: #fff; }
.site-footer .text-muted { color: rgba(255,255,255,.62); } /* muted on navy footer */
.site-footer .site-brand em { color: var(--primary); } /* bright green reads fine on navy */
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: rgba(255,255,255,.8); font-weight: 700; }
.footer-social a:hover { color: #fff; background: var(--primary-2); border-color: var(--primary-2); }
.footer-col h4 { color: #fff; font-size: 15px; font-family: var(--font-head); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { padding-top: 24px; font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-bottom .copy { margin-top: 12px; }

/* Guides */
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.guide-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: .15s; box-shadow: var(--shadow-sm); }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.guide-card__thumb { aspect-ratio: 16/9; background: var(--bg-3) center/cover no-repeat; background-image: image-set(url('../img/guide-default.avif') type('image/avif'), url('../img/guide-default.webp') type('image/webp')); position: relative; }
.guide-card__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,18,44,.05), rgba(17,18,44,.35)); }
.guide-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.guide-card__body { padding: 16px 18px; }
.guide-card__date { font-size: 12px; color: var(--muted); }
.guide-card__title { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin: 6px 0 0; color: var(--heading); }

/* ---- Deal of the Month ---- */
.deal { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow); margin-top: 8px; }
.deal__badge { position: absolute; top: -13px; left: 26px; background: var(--lime); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 13px; padding: 5px 14px; border-radius: 20px; }
.deal__logo .logo-chip { background: rgba(255,255,255,.10); }
.deal__name { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; }
.deal .rating-inline { margin-top: 6px; }
.deal .rating-score { color: #fff; }
.deal .trust-score { background: rgba(255,255,255,.14); }
.deal__actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 220px; }
.deal__review { color: var(--lime); text-align: center; font-weight: 700; font-size: 14px; }
.deal__past { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.74); }
/* Deal card sits on navy: keep muted/badge text light enough for contrast. */
.deal .text-muted { color: rgba(255,255,255,.74); }
.deal .verified-badge { color: var(--primary); }
.deal__past strong { color: #fff; }
.deal__past a { color: var(--primary); } /* on navy — bright green passes */
@media (max-width: 760px) { .deal { grid-template-columns: 1fr; text-align: center; } .deal__actions { min-width: 0; } .deal .rating-inline { justify-content: center; } }

/* ---- Trust strip ---- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-sm); position: relative; }
.trust-strip__item { display: flex; align-items: center; gap: 12px; }
.trust-strip__icon { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--primary-ghost); color: var(--primary-2); display: grid; place-items: center; }
.trust-strip__icon svg { width: 21px; height: 21px; }
.trust-strip__title { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--heading); line-height: 1.2; }
.trust-strip__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.trust-strip__updated { grid-column: 1 / -1; border-top: 1px solid var(--border); margin-top: 4px; padding-top: 14px; font-size: 13px; font-weight: 600; color: var(--primary-2); display: flex; align-items: center; gap: 8px; }
.trust-strip__updated .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(0,182,122,.5); animation: wb-pulse 2s infinite; }
@keyframes wb-pulse { 0% { box-shadow: 0 0 0 0 rgba(0,182,122,.5); } 70% { box-shadow: 0 0 0 8px rgba(0,182,122,0); } 100% { box-shadow: 0 0 0 0 rgba(0,182,122,0); } }
@media (max-width: 860px) { .trust-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }

/* ---- Game layout: category sidebar + main ---- */
.game-layout { display: grid; grid-template-columns: 244px 1fr; gap: 32px; align-items: start; padding-top: 12px; }
.game-layout__main { min-width: 0; }
.game-sidebar { position: sticky; top: calc(var(--header-h) + 16px); background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-sm); }
.game-sidebar__head { display: flex; align-items: center; gap: 10px; padding: 6px 8px 12px; margin-bottom: 8px; border-bottom: 1px solid var(--border); }
.game-sidebar__icon { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; flex: none; }
.game-sidebar__icon img { width: 26px; height: 26px; object-fit: contain; }
.game-sidebar__name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--heading); line-height: 1.2; }
.game-sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.game-sidebar__link { padding: 10px 12px; border-radius: 10px; color: var(--heading); font-weight: 600; font-size: 15px; transition: .12s; }
.game-sidebar__link:hover { background: var(--bg-2); color: var(--primary-2); }
.game-sidebar__link.is-active { background: var(--primary-ghost); color: var(--primary-2); }
@media (max-width: 920px) {
  .game-layout { grid-template-columns: 1fr; gap: 16px; }
  .game-sidebar { position: static; }
  .game-sidebar__head { border-bottom: 0; margin-bottom: 4px; padding-bottom: 6px; }
  .game-sidebar__nav { flex-direction: row; overflow-x: auto; gap: 6px; scrollbar-width: none; }
  .game-sidebar__nav::-webkit-scrollbar { display: none; }
  .game-sidebar__link { white-space: nowrap; }
}

/* ---- Category nav (service sub-pages) ---- */
.cat-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.cat-chip { display: inline-flex; align-items: center; background: var(--panel); border: 1px solid var(--border); border-radius: 40px; padding: 8px 16px; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--heading); transition: .15s; }
.cat-chip:hover { border-color: var(--primary); color: var(--primary-2); background: var(--primary-ghost); }

/* ---- Quiz ---- */
.quiz { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.quiz__step h3 { font-family: var(--font-head); }
.quiz__opts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.quiz__opt { background: var(--bg-2); border: 1px solid var(--border); border-radius: 40px; padding: 11px 20px; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--heading); cursor: pointer; transition: .15s; }
.quiz__opt:hover { border-color: var(--primary); color: var(--primary-2); }
.quiz__opt.sel { background: var(--primary-2); color: #fff; border-color: var(--primary-2); }
.quiz__pick { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 26px; }
.quiz__pick-tag { display: inline-block; background: var(--lime); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 12px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.quiz__pick-name { font-family: var(--font-head); font-weight: 800; font-size: 24px; display: flex; align-items: center; gap: 10px; }
.quiz__pick p { color: rgba(255,255,255,.8); }
.quiz__pick-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.quiz__nav { margin-top: 16px; }

/* ---- Compare tool ---- */
.compare-pick { display: flex; flex-wrap: wrap; gap: 10px; }
.compare-pick__opt { display: inline-flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--border); border-radius: 40px; padding: 10px 18px; font-weight: 600; cursor: pointer; }
.compare-pick__opt:has(input:checked) { border-color: var(--primary); background: var(--primary-ghost); color: var(--primary-2); }
.compare-pick__opt:has(input:disabled) { opacity: .4; cursor: not-allowed; }
.compare-pick__opt:has(input:disabled) input { cursor: not-allowed; }
.compare-hint { color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-weight: 500; }
.compare-hint__count { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; padding: 3px 10px; border-radius: 40px; background: var(--bg-2); border: 1px solid var(--border); font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--muted); }
.compare-hint.is-max { color: var(--primary-2); font-weight: 600; }
.compare-hint.is-max .compare-hint__count { background: var(--primary-ghost); border-color: var(--primary); color: var(--primary-2); }

/* ---- Promo-codes hub page ---- */
.promo-hub__fresh { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--primary-2); background: var(--primary-ghost); border: 1px solid rgba(0,182,122,.25); padding: 6px 14px; border-radius: 40px; margin: 4px 0 16px; }
.promo-hub__fresh .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(0,182,122,.5); animation: wb-pulse 2s infinite; }
.promo-hub__store { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--heading); }
.promo-hub__store strong { display: block; font-family: var(--font-head); }
.promo-hub__logo { height: 34px; display: flex; align-items: center; }
.promo-hub__logo .logo-img { max-height: 34px; max-width: 120px; }
.promos tr.is-featured td { background: var(--primary-ghost); }
.promos td .promo { margin: 0; }
#wb-compare-table th, #wb-compare-table td { text-align: center; }
#wb-compare-table tr th:first-child { color: var(--muted); font-weight: 600; }

/* ---- Social proof ---- */
.social-proof { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-top: 6px; }
.social-proof::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(0,182,122,.5); animation: wb-pulse 2s infinite; }

/* ---- Trust chip ---- */
.trust-chip { font-size: 12px; font-weight: 700; color: var(--primary-2); background: var(--primary-ghost); border-radius: 20px; padding: 3px 10px; white-space: nowrap; text-decoration: none; }
a.trust-chip:hover { background: rgba(0,182,122,.18); color: #00694a; }

/* ---- Trust Score + Verified badge ---- */
.trust-score { display: inline-flex; align-items: baseline; gap: 1px; background: var(--navy); color: #fff; border-radius: 8px; padding: 3px 9px; font-family: var(--font-head); font-weight: 800; line-height: 1; }
.trust-score__num { font-size: 14px; }
.trust-score__den { font-size: 10px; color: rgba(255,255,255,.6); font-weight: 600; }
a.trust-score { text-decoration: none; }
a.trust-score:hover { background: var(--navy-2); }
.verified-badge { display: inline-flex; align-items: center; gap: 3px; background: var(--primary-ghost); color: var(--primary-2); border-radius: 20px; padding: 3px 10px; font-size: 12px; font-weight: 800; margin-left: 6px; font-family: var(--font-head); }
.store-card__trust { display: flex; align-items: center; gap: 6px; margin-top: 8px; flex-wrap: wrap; }

/* ---- Related stores ---- */
.related-stores { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 16px 0 8px; }
.related-store { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 12px; box-shadow: var(--shadow-sm); transition: .15s; }
.related-store:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--border-2); }
.related-store__logo img { max-height: 34px; width: auto; }
.related-store__logo .logo-mono { width: 40px; height: 40px; border-radius: 10px; font-size: 15px; }
.related-store__name { font-family: var(--font-head); font-weight: 700; color: var(--heading); font-size: 15px; }
.related-store__rating { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }

/* ---- Cookie consent manager (CMP) ---- */
.cookie-cmp { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.cookie-cmp[hidden] { display: none; }
.cookie-banner, .cookie-modal { pointer-events: auto; background: var(--navy); color: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.cookie-banner[hidden], .cookie-modal[hidden] { display: none; }
.cookie-banner .btn--ghost, .cookie-modal .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.cookie-banner .btn--ghost:hover, .cookie-modal .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.cookie-banner { position: fixed; left: 24px; bottom: 24px; max-width: 440px; width: calc(100% - 48px); border-radius: var(--radius-lg); padding: 22px 24px; }
.cookie-banner__text { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.55; }
.cookie-banner__text strong { display: block; color: #fff; font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.cookie-banner__text a { color: var(--lime); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; margin-top: 16px; }
.cookie-banner__actions .btn { flex: 1; }
.cookie-link { display: inline-block; margin-top: 14px; background: none; border: 0; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px; cursor: pointer; padding: 0; text-decoration: underline; }

.cookie-modal { position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(460px, calc(100% - 32px)); max-height: calc(100vh - 48px); overflow-y: auto; border-radius: var(--radius-lg); padding: 26px; }
.cookie-modal h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.cookie-modal__intro { font-size: 13.5px; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.cookie-cat { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; }
.cookie-cat__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-cat__name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: #fff; }
.cookie-cat__on { font-size: 12px; font-weight: 700; color: var(--lime); text-transform: uppercase; letter-spacing: .04em; }
.cookie-cat__desc { font-size: 13px; color: rgba(255,255,255,.62); margin: 8px 0 0; line-height: 1.5; }
.cookie-modal__actions { display: flex; gap: 10px; margin-top: 22px; }
.cookie-modal__actions .btn { flex: 1; }

/* Toggle switch */
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex: none; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle__track { position: absolute; inset: 0; background: rgba(255,255,255,.22); border-radius: 20px; transition: .18s; }
.cookie-toggle__track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: .18s; }
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--primary); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(20px); }
.cookie-toggle input:focus-visible + .cookie-toggle__track { outline: 2px solid var(--lime); outline-offset: 2px; }

@media (max-width: 600px) { .cookie-banner { left: 16px; right: 16px; width: auto; } }

/* ---- Left game rail ---- */
.game-rail { position: fixed; left: 0; top: 0; bottom: 0; width: 76px; background: var(--panel); border-right: 1px solid var(--border); padding: calc(var(--header-h) + 22px) 0 24px; overflow-y: auto; z-index: 90; scrollbar-width: none; }
.game-rail::-webkit-scrollbar { display: none; }
.game-rail ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.game-rail__item { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; transition: .15s; box-shadow: var(--shadow-sm); }
.game-rail__item img { width: 28px; height: 28px; object-fit: contain; }
a.game-rail__item:hover { transform: scale(1.08); border-color: var(--primary); }
.game-rail__item.is-active { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-ghost); }
.game-rail__item--soon { opacity: .45; filter: grayscale(.5); cursor: default; }
body.has-rail { padding-left: 76px; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .game-rail { display: none; }
  body.has-rail { padding-left: 0; }
  .grid--games { grid-template-columns: repeat(3,1fr); }
  .grid--standards { grid-template-columns: repeat(2,1fr); }
  .hero__grid { grid-template-columns: 1fr; padding: 40px; }
  .hero__art { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .primary-nav.open { display: block; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--panel); border-bottom: 1px solid var(--border); padding: 12px 20px; box-shadow: var(--shadow); }
  .primary-nav.open ul { flex-direction: column; }
  .hero__grid { padding: 32px 24px; }
  .grid--games { grid-template-columns: repeat(2,1fr); }
  .grid--standards, .grid--2 { grid-template-columns: 1fr; }
  .store-card { grid-template-columns: 34px 1fr; grid-template-areas: "rank logo" "body body" "actions actions"; row-gap: 14px; }
  .store-card__rank { grid-area: rank; }
  .store-card__logo { grid-area: logo; justify-content: flex-end; }
  .store-card__body { grid-area: body; }
  .store-card__actions { grid-area: actions; flex-direction: row; }
  .store-card__actions .btn { flex: 1; }
  .proscons, .info-cards, .review-head, .verdict { grid-template-columns: 1fr; }
  .related-stores { grid-template-columns: 1fr 1fr; }
  .review-head__logo { width: 100px; }
  .footer-top { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .verdict { text-align: center; }
  .rate-box__head { justify-content: center; text-align: center; }
}
