/* =========================================================================
   Futcoins — football / FUT theme (off-white pitch + grass green + night-pitch
   dark panels + Ultimate-Team gold accents). Distinct from wowboost's navy/mint.
   ========================================================================= */

:root {
  --bg: #191D2C;              /* soft dark slate — lighter than near-black */
  --bg-2: #212636;            /* raised surface */
  --bg-3: #2A3044;
  --panel: #232A3D;           /* dark card (clearly lifted off bg) */
  --navy: #141826;            /* hero / stat / verdict panels */
  --navy-2: #1E2438;          /* raised dark panel */
  --border: #333B52;
  --border-2: #3E4762;
  --text: #E1E8ED;            /* light body text */
  --heading: #FFFFFF;
  --muted: #93A0B4;
  --primary: #A78BFA;         /* bright violet — accents/borders/icons on dark */
  --primary-2: #7C3AED;       /* violet — button bg (white text, AA) */
  --primary-3: #6D28D9;       /* deeper violet — button hover */
  --primary-ghost: rgba(139, 92, 246, 0.14);
  --lime: #F4C13B;            /* highlighter — gold */
  --gold: #F4C13B;            /* coin gold */
  --gold-2: #F4C13B;          /* gold reads bright on dark */
  --gold-ghost: rgba(244, 193, 59, 0.14);
  --success: #17C77A;         /* green kept ONLY for success semantics */
  --danger: #F0616D;
  --star: #F4C13B;
  --star-empty: #34405480;
  --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: "Manrope", "Onest", var(--font);   /* modern heavy sans (futcoin.net-style) */
}

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

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  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 (night-pitch 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: linear-gradient(150deg, var(--navy-2), var(--navy)); border-radius: var(--radius-xl); padding: 56px; position: relative; overflow: hidden; }
/* mowed-pitch diagonal stripes */
.hero__grid::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 44px, rgba(255,255,255,0) 44px 88px); }
.hero__grid h1, .hero__grid .eyebrow { color: #fff; position: relative; z-index: 1; }
.hero__grid .eyebrow { color: var(--lime); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,.78); max-width: 52ch; position: relative; z-index: 1; }

/* Editor's top-pick — styled like an Ultimate-Team card (gold gradient frame) */
.top-pick { position: relative; z-index: 1; padding: 22px; border-radius: var(--radius-lg); border: 2px solid transparent; box-shadow: 0 20px 44px rgba(0,0,0,.34); background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--gold) 0%, #fff4cf 42%, var(--gold-2) 100%); background-origin: border-box; background-clip: padding-box, border-box; }
.top-pick__tag { display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #2a1e00; 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; position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy-2), var(--navy)); }
.guide-card__thumb::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 34px, transparent 34px 68px); }
.guide-card__thumb::after { content: "⚽"; position: absolute; right: 12px; bottom: 8px; font-size: 40px; opacity: .55; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
.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; }

/* ---- Site-wide compare: card toggle + floating bar ---- */
.sc-compare { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; user-select: none; padding: 6px 4px; }
.sc-compare input { width: 15px; height: 15px; accent-color: var(--primary); cursor: pointer; }
.sc-compare:has(input:checked) { color: var(--primary-2); }
.sc-compare:has(input:disabled) { opacity: .45; cursor: not-allowed; }

.wb-compare-bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 200; display: flex; align-items: center; gap: 16px; max-width: calc(100vw - 24px); background: var(--navy); color: #fff; border-radius: var(--radius-pill); padding: 12px 16px 12px 20px; box-shadow: 0 12px 40px rgba(17,18,44,.35); flex-wrap: wrap; }
.wb-compare-bar[hidden] { display: none; }
.wb-compare-bar__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.wb-compare-chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border-radius: 40px; padding: 5px 6px 5px 12px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.wb-compare-chip button { border: 0; background: rgba(255,255,255,.18); color: #fff; width: 18px; height: 18px; border-radius: 50%; cursor: pointer; line-height: 1; font-size: 13px; display: grid; place-items: center; }
.wb-compare-chip button:hover { background: var(--danger); }
.wb-compare-bar__actions { display: flex; gap: 8px; align-items: center; }
.wb-compare-bar__actions .btn--ghost { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }
.wb-compare-bar__actions .btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.wb-compare-bar__max { flex-basis: 100%; font-size: 12px; color: var(--lime); font-weight: 600; }
@media (max-width: 560px) {
  .wb-compare-bar { left: 12px; right: 12px; transform: none; max-width: none; justify-content: space-between; padding: 12px 14px; }
}
#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; } }

/* Small screens: keep the header (brand + language flags + menu) within the
   viewport so the page never scrolls sideways on iOS. */
@media (max-width: 560px) {
  .site-header__inner { gap: 8px; }
  .lang-switch { margin-left: auto; gap: 1px; }
  .lang-switch__item { width: 30px; height: 30px; font-size: 15px; }
}
@media (max-width: 380px) {
  .lang-switch__item { width: 27px; height: 27px; font-size: 14px; }
}

/* ---- 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; }
}

/* ── Payout Radar — booster payout reliability ─────────────────────────────── */
:root {
  --pay-high: #007A4D;   /* reliable — green (AA) */
  --pay-mod:  #B26A00;   /* mixed — amber (AA)   */
  --pay-low:  #C62828;   /* high risk — red (AA) */
}
.payout-radar-brand {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 800; letter-spacing: .02em;
  color: var(--primary-2); font-size: 14px; text-transform: uppercase;
}
.payout-radar-brand--lg { font-size: 16px; }

/* Meter */
.payout-meter { margin: 14px 0 0; }
.payout-meter__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.payout-meter__score { font-family: var(--font-head); font-weight: 800; color: var(--text); }
.payout-meter__num { font-size: 26px; }
.payout-meter__den { font-size: 14px; color: var(--muted); }
.payout-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff;
}
.payout-badge--high { background: var(--pay-high); }
.payout-badge--moderate { background: var(--pay-mod); }
.payout-badge--low { background: var(--pay-low); }
.payout-track {
  position: relative; height: 11px; border-radius: var(--radius-pill);
  background: var(--bg-3); overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(20,25,40,.08);
}
/* Tier band ticks at the 45 / 75 thresholds. */
.payout-track::before, .payout-track::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 2px; z-index: 2;
  background: rgba(255,255,255,.7); mix-blend-mode: overlay;
}
.payout-track::before { left: 45%; }
.payout-track::after  { left: 75%; }
.payout-track__fill {
  position: absolute; top: 0; bottom: 0; left: 0; border-radius: var(--radius-pill);
  z-index: 1; min-width: 8px;
  box-shadow: 0 1px 3px rgba(20,25,40,.18);
}
.payout-meter--high .payout-track__fill     { background: linear-gradient(90deg, #12C98A, #007A4D); }
.payout-meter--moderate .payout-track__fill { background: linear-gradient(90deg, #E7A70B, #B26A00); }
.payout-meter--low .payout-track__fill      { background: linear-gradient(90deg, #E4574C, #C62828); }
/* Zone legend under the track — maps the fill to named risk bands (45/30/25). */
.payout-scale { display: flex; margin-top: 7px; gap: 2px; }
.payout-scale__seg {
  position: relative; text-align: center; padding-top: 5px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
  white-space: nowrap; overflow: hidden; text-overflow: clip;
  border-top: 3px solid currentColor; opacity: .38; transition: opacity .2s;
}
.payout-scale__seg--low      { flex: 0 0 45%; color: var(--pay-low); }
.payout-scale__seg--moderate { flex: 0 0 30%; color: var(--pay-mod); }
.payout-scale__seg--high     { flex: 0 0 25%; color: var(--pay-high); }
.payout-scale__seg.is-active { opacity: 1; }

.payout-meter__meta { margin-top: 10px; font-size: 13px; color: var(--muted); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.payout-meter__reports { font-weight: 600; }
/* Per-store report pill — flag an inaccurate score / store right of reply. */
.payout-flag {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 11px 3px 5px; border-radius: var(--radius-pill);
  color: var(--muted); background: var(--bg-2); border: 1px solid var(--border-2);
  font-size: 12px; font-weight: 700; text-decoration: none; transition: all .15s;
}
.payout-flag__i {
  width: 16px; height: 16px; border-radius: 50%; background: var(--muted); color: #fff;
  display: inline-grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 11px; line-height: 1;
}
.payout-flag:hover { color: #fff; background: var(--pay-mod); border-color: var(--pay-mod); }
.payout-flag:hover .payout-flag__i { background: #fff; color: var(--pay-mod); }
.payout-meter__note { margin: 8px 0 0; font-size: 15px; color: var(--text); }

/* Review-page card */
.payout-card {
  margin: 32px 0; padding: 22px 24px; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 5px solid var(--primary-2);
}
.payout-card--head { margin-bottom: 6px; }
.payout-card__foot { margin: 14px 0 0; font-size: 14px; }
.payout-card__foot a { font-weight: 600; }

/* Hub — independence + ranking */
.payout-independence {
  margin: 20px 0; padding: 16px 20px; border-radius: var(--radius);
  background: var(--primary-ghost); border: 1px solid var(--border-2);
}
.payout-independence strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--primary-3); }
.payout-independence p { margin: 6px 0 0; color: var(--text); font-size: 15px; }

.payout-list { display: grid; gap: 16px; margin-top: 16px; }
.payout-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: start;
  padding: 20px 22px; border-radius: var(--radius);
  background: var(--panel, #fff); border: 1px solid var(--border);
}
.payout-row--low { border-color: rgba(198,40,40,.35); }
.payout-row__store { display: flex; align-items: center; gap: 12px; }
.payout-row__logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.payout-row__id strong { display: block; font-family: var(--font-head); font-size: 17px; }
.payout-row__review { font-size: 13px; font-weight: 600; }
.payout-row__ext { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Methodology steps */
.payout-method { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.payout-method__step { display: flex; gap: 14px; padding: 16px 18px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--border); }
.payout-method__n {
  flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--primary-2); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800;
}
.payout-method__step strong { display: block; margin-bottom: 4px; }
.payout-method__step p { margin: 0; font-size: 14px; color: var(--muted); }
.payout-tiers-key { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 18px; font-size: 14px; color: var(--muted); }

/* Report channel */
.payout-report { margin: 36px 0 0; padding: 26px 28px; border-radius: var(--radius-lg); background: var(--bg-3); border: 1px solid var(--border-2); text-align: center; }
.payout-report p { max-width: 640px; margin: 0 auto 16px; }
.payout-report__fine { font-size: 13px; margin-top: 14px; }
.payout-reply { margin-top: 20px; font-size: 14px; }

@media (max-width: 640px) {
  .payout-row { grid-template-columns: 1fr; gap: 14px; }
  .payout-method { grid-template-columns: 1fr; }
}

/* =========================================================================
   FUT redesign (futcoin.net-inspired, light/poster) — appended overrides
   ========================================================================= */
/* Poster headings: Anton for display h1/h2; readable body-weight for h3/h4 */
h1, h2 { letter-spacing: 0; line-height: 1.02; }
h3, h4 { font-family: var(--font); font-weight: 800; letter-spacing: -0.01em; }

/* Brand: bold italic wordmark + green dot */
.site-brand { font-family: var(--font-head); font-style: italic; font-weight: 400; font-size: 25px; letter-spacing: .02em; gap: 0; }
.site-brand__word { color: var(--heading); }
.site-brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--primary); margin-left: 5px; box-shadow: 0 0 0 4px var(--primary-ghost); display: inline-block; }
.site-footer .site-brand__word { color: #fff; }

/* Gold button (top-pick CTA) */
.btn--gold { background: linear-gradient(135deg, var(--gold), #E7A81C); color: #3a2a00; border-color: transparent; }
.btn--gold:hover { transform: translateY(-2px); color: #3a2a00; }

/* ---- Light poster hero ---- */
.hero-fc { position: relative; overflow: hidden; }
.hero-fc::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 68% at 84% 32%, var(--primary-ghost), transparent 70%),
              radial-gradient(42% 52% at 10% 92%, #FFF6DE, transparent 70%); }
.hero-fc__in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 60px 0 50px; }
.hero-fc h1 { font-size: clamp(40px, 6.4vw, 82px); text-transform: uppercase; margin: 12px 0 0; text-wrap: balance; }
.hero-fc h1 .g { color: var(--primary); }
.hero-fc h1 .u { position: relative; }
.hero-fc h1 .u::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .13em; background: var(--gold); border-radius: 3px; z-index: -1; }
.hero-fc .lead { font-size: 18px; color: var(--muted); max-width: 46ch; margin: 20px 0 26px; }
.hero-fc .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; align-items: center; }
.hero-chips .chip { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--muted); }
.hero-chips .chip .st { color: var(--gold-2); }
.hero-plat { display: inline-flex; gap: 6px; }
.hero-plat b { font-family: var(--font-head); font-weight: 400; font-size: 12px; letter-spacing: .06em; background: var(--navy); color: #fff; padding: 4px 9px; border-radius: 7px; }

/* hero art (contained — never overflows the hero) */
.hero-art { position: relative; height: 420px; max-width: 100%; }
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.coin { position: absolute; width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFE99A, var(--gold) 55%, #C98F13);
  box-shadow: 0 8px 18px rgba(169,121,16,.35), inset 0 0 0 3px rgba(255,255,255,.35);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 400; color: #8a6410; font-size: 15px; }
@keyframes fc-bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-14px) rotate(6deg); } }
.coin { animation: fc-bob 4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .coin { animation: none; } }

/* ---- Feature strip ---- */
.feature-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-strip .fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 34px; padding: 46px 0; }
.feat { display: flex; gap: 14px; min-width: 0; }
.feat .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; font-size: 20px; box-shadow: var(--shadow-sm); }
.feat h4 { margin: 2px 0 4px; font-size: 17px; }
.feat p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---- How-it-works: method tabs + steps ---- */
.method-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.method-tab { font-family: var(--font); font-weight: 800; font-size: 15px; padding: 12px 20px; border-radius: 999px; border: 2px solid var(--border); background: #fff; color: var(--heading); cursor: pointer; transition: .15s; }
.method-tab[aria-selected="true"] { background: var(--primary); color: #fff; border-color: var(--primary); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mstep { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); min-width: 0; }
.mstep .n { font-family: var(--font-head); font-weight: 400; font-size: 34px; color: var(--primary); line-height: 1; }
.mstep h4 { margin: 10px 0 6px; font-size: 16px; }
.mstep p { margin: 0; color: var(--muted); font-size: 14px; }
.mstep::after { content: ""; position: absolute; top: 34px; right: -11px; width: 22px; height: 2px; background: var(--border); }
.mstep:last-child::after { display: none; }
.method-pane { display: none; }
.method-pane.is-on { display: block; }

/* ---- Stats band ---- */
.stat-band { background: var(--navy); color: #fff; border-radius: var(--radius-xl); padding: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-band .big { font-family: var(--font-head); font-weight: 400; font-size: 42px; color: var(--gold); line-height: 1; }
.stat-band .lbl { font-size: 14px; color: #c4d2c8; margin-top: 4px; }

/* ---- Store-card: gold FUT frame for the featured pick ---- */
.store-card--featured { border: 2px solid transparent !important; box-shadow: var(--shadow) !important;
  background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, var(--gold), #fff4cf, var(--gold-2)) border-box !important; }
.store-card--featured .store-card__rank { color: var(--gold-2); }
.featured-badge { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #2a1e00; }

/* ---- Responsive: no overflow / overlap ---- */
@media (max-width: 940px) {
  .hero-fc__in { grid-template-columns: 1fr; gap: 18px; padding: 40px 0 36px; }
  .hero-art { height: 260px; order: -1; }
  .feature-strip .fgrid { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .mstep::after { display: none; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 24px; padding: 30px; }
}
@media (max-width: 460px) {
  .hero-fc h1 { font-size: clamp(34px, 11vw, 46px); }
}

/* Constrain seeded/oversized store logos in the deal band + hero pick */
.deal__logo img, .deal__logo svg, .deal__logo { max-height: 54px; width: auto; }
.deal__logo { display: flex; align-items: center; }

/* ---- Internal pages: poster-style page head ---- */
.page-eyebrow { font-family: var(--font-head); font-weight: 400; text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--primary-3); margin: 0 0 8px; }
/* store review / landing head → light hero-band card */
.review-head { background: linear-gradient(180deg, var(--bg-2), #fff); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--shadow-sm); }
.review-head .review-title { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; }
/* hub / promo hubs get a bit more top presence */
.game-layout__main > h1:first-of-type, .promo-hub h1 { text-transform: uppercase; }
@media (max-width: 640px){ .review-head { padding: 20px; } }

/* keep the rating score on one line on narrow screens */
.rating-score { white-space: nowrap; }

/* =========================================================================
   Store-card — mockup row layout (rank · logo · rating+mini · promo · CTA)
   ========================================================================= */
.store-card { display: grid; grid-template-columns: 44px minmax(120px,160px) minmax(0,1fr) auto auto; gap: 22px; align-items: center; }
.store-card > * { min-width: 0; }
.store-card__rank { font-family: var(--font-head); font-weight: 400; font-size: 26px; color: var(--muted); text-align: center; }
.store-card--featured .store-card__rank { color: var(--gold-2); }
.store-card__id { position: relative; display: flex; flex-direction: column; gap: 6px; }
.store-card__id .featured-badge { position: static; align-self: flex-start; }
.store-card__logo-link { display: inline-flex; align-items: center; }
.store-card__logo-link .logo-img { max-height: 30px; max-width: 130px; width: auto; }
.store-card__logo-link .logo-mono { width: 44px; height: 44px; border-radius: 12px; font-size: 17px; }
.store-card__mid { display: flex; flex-direction: column; gap: 6px; }
.store-card__mini { color: var(--muted); font-size: 13.5px; margin: 0; overflow-wrap: anywhere; }
.store-card__promo { justify-self: start; }
.promo-pill { display: inline-block; font-weight: 800; font-size: 13.5px; color: var(--primary-3); background: var(--primary-ghost); border: 1.5px dashed var(--primary); border-radius: 10px; padding: 8px 12px; white-space: nowrap; }
.store-card__cta { display: flex; flex-direction: column; align-items: stretch; gap: 8px; min-width: 150px; }
.store-card__cta .btn { white-space: nowrap; }
.store-card__review { text-align: center; font-weight: 700; font-size: 13.5px; color: var(--primary-2); }
.store-card__review:hover { color: var(--primary-3); }
.sc-compare { display: inline-flex; align-items: center; gap: 6px; justify-content: center; font-size: 12px; color: var(--muted); cursor: pointer; }

/* Responsive: clean stack below 900px (no circle buttons, no overlap) */
@media (max-width: 900px) {
	.store-card { display: block; padding: 20px; }
	.store-card__rank { display: inline-block; vertical-align: middle; margin-right: 12px; font-size: 22px; }
	.store-card__id { display: inline-flex; vertical-align: middle; flex-direction: row; align-items: center; gap: 10px; }
	.store-card__mid { margin: 14px 0; }
	.store-card__promo { margin-bottom: 14px; }
	.store-card__cta { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px 16px; min-width: 0; }
	.store-card__cta .btn { flex: 0 0 auto; }
}
@media (max-width: 460px) {
	.store-card__cta { flex-direction: column; align-items: stretch; }
	.store-card__cta .btn { width: 100%; }
}

/* ---- Platform tiles (home "Pick your platform") ---- */
.grid--platforms { grid-template-columns: repeat(3, 1fr); }
.platform-tile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 26px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: linear-gradient(150deg, var(--navy-2), var(--navy)); color: #fff; box-shadow: var(--shadow-sm); transition: .15s; position: relative; overflow: hidden; min-height: 130px; justify-content: flex-end; }
.platform-tile::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 32px, transparent 32px 64px); }
.platform-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: #fff; }
.platform-tile__ic { font-size: 30px; position: relative; }
.platform-tile__name { font-family: var(--font-head); font-weight: 400; font-size: 22px; text-transform: uppercase; position: relative; }
.platform-tile__sub { font-size: 13px; color: var(--gold); font-weight: 700; position: relative; }
.platform-tile--soon { opacity: .55; pointer-events: none; }
@media (max-width: 760px) { .grid--platforms { grid-template-columns: 1fr 1fr; } }

/* =========================================================================
   DARK THEME (futcoin.net-style) — overrides. Appended last = wins cascade.
   ========================================================================= */
/* Headings: Manrope 800, mixed-case (drop poster uppercase) */
h1, h2 { font-weight: 800; letter-spacing: -0.02em; }
.hero-fc h1, .sec-head h2, .review-title, .stat-band .big, .platform-tile__name,
.feat h4, .mstep h4 { text-transform: none !important; }
.hero-fc h1 { letter-spacing: -0.03em; }

/* Header: dark translucent */
.site-header { background: rgba(12, 16, 23, 0.82); border-bottom: 1px solid var(--border); }
.site-brand__word { color: #fff; }

/* Buttons: bright green with DARK text (high contrast on dark) */
.btn--primary { background: var(--primary-2); color: #fff; }
.btn--primary:hover { background: var(--primary-3); color: #fff; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--bg-2); color: #fff; border-color: var(--primary); }
.btn--gold { color: #241a00; }

/* Announce bar: subtle dark strip (not a green banner) */
.announce { background: var(--bg-2); color: var(--muted); border-bottom: 1px solid var(--border); }
.announce a { color: var(--primary); }

/* Kill all hardcoded white card backgrounds → dark panels */
.top-pick, .method-tab, .mstep, .feat .ic, .game-sidebar__icon { background: var(--panel) !important; }
.method-tab { color: var(--text); }
.method-tab[aria-selected="true"] { background: var(--primary-2) !important; color: #fff; border-color: var(--primary-2); }
.store-card--featured { background:
  linear-gradient(var(--panel), var(--panel)) padding-box,
  linear-gradient(135deg, var(--gold), #6a5510, var(--gold-2)) border-box !important; }
.feat .ic { border-color: var(--border); }

/* Hero glow: green + gold stadium-light on dark (no cream) */
.hero-fc::before { background:
  radial-gradient(58% 68% at 84% 32%, rgba(139,92,246,.16), transparent 70%),
  radial-gradient(42% 52% at 10% 92%, rgba(244,193,59,.10), transparent 70%) !important; }

/* Cards / inputs / misc that assumed light */
.card, .deal, .verdict, .stat-band { border-color: var(--border); }
.review-head { background: linear-gradient(180deg, var(--bg-2), var(--panel)); border-color: var(--border); }
.date-badge, .trust-chip { background: var(--bg-2); }

/* Guide banner (replaces stock image on guide pages) */
.guide-banner { height: 220px; border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-2), var(--navy)); border: 1px solid var(--border); }
.guide-banner::before { content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 42px, transparent 42px 84px); }
.guide-banner::after { content: ""; position: absolute; left: -10%; bottom: -60%; width: 70%; height: 130%;
  border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.20), transparent 60%); }
.guide-banner__coin, .guide-banner__ball { position: absolute; z-index: 2; filter: drop-shadow(0 8px 18px rgba(0,0,0,.4)); }
.guide-banner__ball { font-size: 96px; right: 6%; top: 50%; transform: translateY(-50%); }
.guide-banner__coin { font-size: 60px; right: 26%; top: 22%; transform: rotate(-12deg); }

/* Guide-card thumbs: vary tint + icon per card so they're not identical */
.guide-grid .guide-card:nth-child(3n+2) .guide-card__thumb { background: linear-gradient(150deg, #2a2118, #17131f); }
.guide-grid .guide-card:nth-child(3n+2) .guide-card__thumb::after { content: "🪙"; }
.guide-grid .guide-card:nth-child(3n+3) .guide-card__thumb { background: linear-gradient(150deg, #13232a, #101820); }
.guide-grid .guide-card:nth-child(3n+3) .guide-card__thumb::after { content: "📈"; }
