/* ============================================================
   Game Review — gamereview.online
   Editorial review-site theme (modeled on top-ranking
   "online casino malaysia" SERP competitors)
   ============================================================ */

:root {
  --ink: #16191f;
  --ink-soft: #3c4350;
  --ink-faint: #6b7280;
  --line: #e3e6ea;
  --paper: #ffffff;
  --paper-gray: #f4f5f7;
  --navy: #0d1b33;
  --navy-deep: #091023;
  --gold: #c9a227;
  --gold-deep: #a3821a;
  --red: #d81f26;
  --red-dark: #b3161c;
  --green: #1a8f4d;
  --amber: #b97f0f;
  --font: "Archivo", "Segoe UI", -apple-system, Roboto, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: #7a6212; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }

/* ---------- demo strip ---------- */
.demo-strip {
  background: #fff7d6;
  border-bottom: 1px solid #eadf9e;
  color: #6d5a00;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 5px 14px;
}

/* ---------- utility bar ---------- */
.util-bar {
  background: var(--navy-deep);
  color: #93a0b7;
  font-size: 12px;
}
.util-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  flex-wrap: wrap;
}
.util-bar a { color: #b7c2d4; text-decoration: none; }
.util-bar a:hover { color: #fff; text-decoration: underline; }
.util-left, .util-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.util-right .age-chip {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 10.5px;
  padding: 1px 7px;
  border-radius: 3px;
  letter-spacing: 0.4px;
}

/* ---------- masthead ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 90;
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}
.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand:hover { color: var(--navy); }
.brand .tld { color: var(--gold-deep); }
.brand .dot { color: var(--red); }

.nav-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 21px;
  line-height: 1;
  padding: 7px 12px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--ink);
}

.mainnav { display: flex; align-items: center; }
.mainnav ul { display: flex; list-style: none; align-items: center; }
.mainnav a.top {
  display: block;
  padding: 20px 13px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.mainnav a.top:hover { color: var(--red); }
.mainnav a.top.on { color: var(--red); box-shadow: inset 0 -3px 0 var(--red); }
.mainnav li.dd { position: relative; }
.mainnav li.dd > a.top::after { content: " ▾"; font-size: 9px; color: var(--ink-faint); }
.mainnav .menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  box-shadow: 0 10px 24px rgba(9, 16, 35, .12);
  min-width: 210px;
  list-style: none;
  z-index: 95;
}
.mainnav li.dd:hover .menu, .mainnav li.dd:focus-within .menu { display: block; }
.mainnav .menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid #f0f1f3;
}
.mainnav .menu a:hover { background: var(--paper-gray); color: var(--red); }
.nav-cta {
  margin-left: 12px;
  background: var(--red);
  color: #fff !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 18px !important;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--red-dark); }

@media (max-width: 980px) {
  .nav-btn { display: block; }
  .mainnav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(9,16,35,.14);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .mainnav.open { display: block; }
  .mainnav ul { flex-direction: column; align-items: stretch; }
  .mainnav a.top { padding: 14px 20px; border-bottom: 1px solid #f0f1f3; }
  .mainnav a.top.on { box-shadow: inset 3px 0 0 var(--red); }
  .mainnav .menu {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    background: var(--paper-gray);
  }
  .mainnav .menu a { padding-left: 34px; }
  .nav-cta { margin: 14px 20px; display: block; text-align: center; }
}

/* ---------- page head band ---------- */
.head-band {
  background: var(--navy);
  color: #fff;
  padding: 34px 0 26px;
}
.crumbs { font-size: 12.5px; color: #8fa0bd; margin-bottom: 14px; }
.crumbs a { color: #b9c6dd; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.head-band h1 {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 900;
  max-width: 860px;
}
.head-band .standfirst {
  margin-top: 14px;
  max-width: 780px;
  color: #c3cddf;
  font-size: 16px;
  line-height: 1.65;
}

.byline {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  align-items: center;
}
.byline .who { display: flex; align-items: center; gap: 11px; }
.byline img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.byline .who p { font-size: 13px; line-height: 1.45; color: #9daabf; }
.byline .who p a { color: #fff; font-weight: 700; text-decoration: none; }
.byline .who p a:hover { text-decoration: underline; }
.byline .updated { font-size: 12.5px; color: #8fa0bd; }
.byline .updated b { color: #d5dded; font-weight: 700; }

.head-disclaimer {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: #8fa0bd;
  max-width: 900px;
}
.head-disclaimer b { color: #c3cddf; }

/* ---------- layout: main + rail ---------- */
.page-body { padding: 34px 0 56px; }
.cols { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 44px; }
@media (max-width: 1020px) { .cols { grid-template-columns: minmax(0, 1fr); } .rail { display: none; } }

.rail-box {
  border: 1px solid var(--line);
  margin-bottom: 26px;
}
.rail-box h4 {
  font-size: 12.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 11px 16px;
}
.rail-box ul { list-style: none; }
.rail-box li { border-bottom: 1px solid #eef0f2; }
.rail-box li:last-child { border-bottom: none; }
.rail-box a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.rail-box a:hover { color: var(--red); background: var(--paper-gray); }
.rail .sticky { position: sticky; top: 84px; }

.rail-note {
  border: 1px solid var(--line);
  background: var(--paper-gray);
  font-size: 12px;
  color: var(--ink-faint);
  padding: 13px 15px;
  line-height: 1.6;
}

/* ---------- article base ---------- */
.article h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 44px 0 16px;
  scroll-margin-top: 90px;
}
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 18.5px; margin: 28px 0 10px; }
.article p { margin-bottom: 15px; color: var(--ink-soft); }
.article ul, .article ol { margin: 0 0 16px 22px; color: var(--ink-soft); }
.article li { margin-bottom: 7px; }
.article b, .article strong { color: var(--ink); }
.article a b, .article a strong { color: inherit; }  /* bold inside links keeps the link (gold) colour */
.section-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  margin: 44px 0 4px;
}
.section-kicker + h2 { margin-top: 0; }

/* ---------- toplist (banner rows) ---------- */
.toplist { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 10px; }

.tl-row {
  position: relative;
  background: #0b0b0d;
  color: #fff;
  border: 1px solid #000;
}
.tl-main {
  display: grid;
  grid-template-columns: 210px 150px minmax(0,1fr) 190px;
  align-items: center;
  gap: 22px;
  padding: 22px 26px 22px 0;
  background:
    linear-gradient(100deg, var(--brand-a, #26140a) 0%, var(--brand-b, #0b0b0d) 46%, #0b0b0d 100%);
}
.tl-rank {
  position: absolute;
  top: 0; left: 0;
  background: #fff;
  color: #0b0b0d;
  font-size: 13px;
  font-weight: 900;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  z-index: 2;
}
.tl-row.first .tl-rank { background: var(--gold); }
.tl-brand { text-align: center; padding: 6px 10px; }
.tl-brand img.brand-logo {
  height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
.tl-brand .wordmark {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
  white-space: nowrap;
}
.tl-brand .tagline {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--gold);
}
.tl-rating {
  background: rgba(18,18,20,.88);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
  padding: 12px 10px;
}
.tl-rating .lbl { display: block; font-size: 11.5px; color: #b9b9c0; }
.tl-rating .score { display: block; font-size: 23px; font-weight: 900; margin: 1px 0; }
.tl-rating .score .st { color: var(--gold); }
.tl-rating .verdict { display: block; font-size: 12.5px; font-weight: 700; }
.tl-rating .demo { display: block; font-size: 9px; color: #8b8b94; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }
.tl-bonus .lbl { display: block; font-size: 12px; color: #c9c9d1; margin-bottom: 2px; }
.tl-bonus .offer { font-size: clamp(19px, 2.2vw, 26px); font-weight: 900; line-height: 1.25; }
.tl-bonus .offer small { font-size: 60%; font-weight: 700; color: #d9d9df; }
.tl-bonus .terms { display: block; margin-top: 5px; font-size: 10.5px; color: #97979f; }
.tl-cta { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
.btn-play {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.6px;
  text-align: center;
  text-decoration: none;
  padding: 14px 10px;
  border-radius: 3px;
}
.btn-play:hover { background: var(--red-dark); color: #fff; }
.tl-review-link {
  font-size: 12px;
  color: #b9c2d4;
  text-align: center;
  text-decoration: underline;
}
.tl-review-link:hover { color: #fff; }
.tl-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  background: #000;
  border-top: 1px solid #1c1c20;
  padding: 9px 26px;
  font-size: 12.5px;
  color: #9a9aa2;
}
.tl-stats span { flex: 1 1 25%; min-width: 130px; }
.tl-stats b { color: #fff; font-weight: 700; margin-left: 5px; }

@media (max-width: 860px) {
  .tl-main {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 30px 18px 18px;
  }
  .tl-brand { grid-column: 1 / 2; text-align: left; padding: 0; }
  .tl-brand .wordmark { font-size: 23px; }
  .tl-rating { grid-column: 2 / 3; }
  .tl-bonus { grid-column: 1 / -1; }
  .tl-cta { grid-column: 1 / -1; }
  .tl-stats { padding: 9px 18px; }
  .tl-stats span { flex-basis: 50%; }
}

/* list footnote */
.list-note {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-faint);
  line-height: 1.65;
  border-bottom: 1px solid var(--line);
  padding: 6px 0 18px;
  margin-bottom: 8px;
}

/* ---------- pros & cons cards ---------- */
.pc-card { border: 1px solid var(--line); margin: 16px 0; }
.pc-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--paper-gray);
  border-bottom: 1px solid var(--line);
  padding: 11px 18px;
}
.pc-head .pc-rank {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 9px;
}
.pc-head h3 { margin: 0; font-size: 17px; }
.pc-head .pc-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.pc-cols { display: grid; grid-template-columns: 1fr 1fr; }
.pc-col { padding: 14px 18px 16px; }
.pc-col + .pc-col { border-left: 1px solid var(--line); }
.pc-col h4 {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-col.pros h4 { color: var(--green); }
.pc-col.cons h4 { color: var(--amber); }
.pc-col ul { list-style: none; margin: 0; }
.pc-col li { position: relative; padding-left: 22px; margin-bottom: 7px; font-size: 14.5px; color: var(--ink-soft); }
.pc-col.pros li::before { content: "+"; position: absolute; left: 2px; color: var(--green); font-weight: 900; }
.pc-col.cons li::before { content: "–"; position: absolute; left: 2px; color: var(--amber); font-weight: 900; }
@media (max-width: 700px) {
  .pc-cols { grid-template-columns: 1fr; }
  .pc-col + .pc-col { border-left: none; border-top: 1px solid var(--line); }
  .pc-head .pc-tag { display: none; }
}

/* ---------- expandable "why ranked here" inside toplist rows ---------- */
.tl-more { background: var(--paper-gray); border-top: 2px solid var(--gold); }
.tl-more summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 26px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
}
.tl-more summary::-webkit-details-marker { display: none; }
.tl-more summary::after {
  content: "▾ SHOW";
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--red);
}
.tl-more[open] summary::after { content: "▴ HIDE"; }
.tl-more summary:hover { color: var(--ink); background: #edeff2; }
.tl-more-body { padding: 4px 26px 18px; }
.tl-more-body ul { list-style: none; margin: 6px 0 12px; }
.tl-more-body li { padding-left: 24px; position: relative; margin-bottom: 6px; font-size: 14.5px; color: var(--ink-soft); }
.tl-more-body li.yes::before { content: "✓"; position: absolute; left: 2px; color: var(--green); font-weight: 900; }
.tl-more-body li.warn::before { content: "!"; position: absolute; left: 5px; color: var(--amber); font-weight: 900; }
.tl-more-body .pay {
  border-top: 1px solid var(--line);
  padding-top: 11px;
  font-size: 13px;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  margin: 0;
}
.tl-more-body .pay b { color: var(--ink-soft); font-weight: 600; }
.tl-more-body .pay a { margin-left: auto; font-weight: 700; }
@media (max-width: 860px) {
  .tl-more summary { padding: 11px 18px; }
  .tl-more summary::after { right: 18px; }
  .tl-more-body { padding: 4px 18px 16px; }
}

/* ---------- tables ---------- */
.tbl-scroll { overflow-x: auto; margin: 18px 0 8px; border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
table.data th, table.data td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th {
  background: var(--paper-gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  white-space: nowrap;
}
table.data tbody tr:nth-child(even) { background: #fafbfc; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data td.lead-cell { font-weight: 800; white-space: nowrap; }
table.data .st { color: var(--gold-deep); }
.tbl-caption { font-size: 12px; color: var(--ink-faint); margin-bottom: 18px; }

/* weight bar inside table */
.wbar { background: #edeff2; height: 7px; min-width: 110px; margin-top: 6px; }
.wbar i { display: block; height: 100%; background: var(--gold); }

/* ---------- numbered steps ---------- */
.steps { list-style: none; margin: 20px 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 22px 54px;
  color: var(--ink-soft);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 34px; height: 34px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  display: grid; place-items: center;
}
.steps li::after {
  content: "";
  position: absolute;
  left: 16px; top: 38px; bottom: 4px;
  width: 2px;
  background: var(--line);
}
.steps li:last-child::after { display: none; }
.steps li b { color: var(--ink); }

/* ---------- scoring scale ---------- */
.scale { margin: 20px 0; border: 1px solid var(--line); }
.scale-row { display: flex; gap: 18px; align-items: center; padding: 13px 18px; border-bottom: 1px solid var(--line); }
.scale-row:last-child { border-bottom: none; }
.scale-band {
  flex-shrink: 0;
  width: 92px;
  text-align: center;
  font-weight: 900;
  font-size: 13.5px;
  color: #fff;
  padding: 6px 4px;
}
.scale-row p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.scale-row p b { color: var(--ink); }
.b-exc { background: var(--green); }
.b-vg  { background: #4a9427; }
.b-good{ background: var(--amber); }
.b-avg { background: #c96712; }
.b-no  { background: var(--red); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-bottom: none; margin: 18px 0 26px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 44px 15px 18px;
  font-weight: 700;
  font-size: 15.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: var(--paper-gray); }
.faq .a { padding: 14px 18px 18px; font-size: 15px; color: var(--ink-soft); border-top: 1px solid var(--line); }

/* ---------- author box ---------- */
.author-box {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 24px;
  margin: 22px 0;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.author-box img.face {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.author-box .ab-body { flex: 1; min-width: 250px; }
.author-box h3, .author-box h2 { margin: 0 0 2px; font-size: 20px; }
.author-box .role { color: var(--gold-deep); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px; }
.author-box p.bio { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.author-box .creds { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.author-box .cred {
  border: 1px solid var(--line);
  background: var(--paper-gray);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 4px 11px;
}
.author-box .contact { font-size: 13px; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 4px 18px; }

/* ---------- callouts ---------- */
.note-rg {
  border: 1px solid #cfe6d8;
  background: #f2faf5;
  color: #1e5b3a;
  font-size: 14px;
  padding: 15px 18px;
  margin: 24px 0;
}
.note-rg b { color: #14432b; }
.note-info {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--paper-gray);
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 15px 18px;
  margin: 24px 0;
}

/* ---------- footer ---------- */
.footer { background: var(--navy-deep); color: #93a0b7; margin-top: 60px; font-size: 14px; }
.footer a { color: #b7c2d4; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0 30px;
}
@media (max-width: 860px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; } }
.footer .f-brand {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}
.footer .f-brand .tld { color: var(--gold); }
.footer .f-about { margin-top: 12px; font-size: 13px; line-height: 1.65; max-width: 300px; }
.footer h5 {
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.f-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 26px;
}
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #26314a;
  font-size: 12px;
  font-weight: 700;
  color: #b7c2d4;
  padding: 7px 13px;
}
.f-badge .b21 {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 2px;
}
.f-legal {
  border-top: 1px solid #1b2540;
  padding: 22px 0 30px;
  font-size: 12px;
  line-height: 1.7;
  color: #7484a0;
}
.f-legal p { margin-bottom: 9px; max-width: 960px; }
.f-legal b { color: #9daabf; }

/* ============================================================
   Additions — review pages, author grid, banner, glance table
   ============================================================ */

/* review hero banner */
.review-banner { margin: 0 0 4px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.review-banner img { width: 100%; height: auto; display: block; }

/* compact review header (rating + play) — dark so every brand logo reads well */
.rev-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px;
  border-top: 3px solid var(--gold);
  padding: 18px 22px; margin: 18px 0 6px;
  background: linear-gradient(100deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.rev-head .rh-logo { height: 44px; width: auto; max-width: 160px; object-fit: contain; }
.rev-head .rh-name { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: .3px; }
.rev-head .rh-score { font-weight: 900; font-size: 22px; color: #fff; white-space: nowrap; }
.rev-head .rh-score .st { color: var(--gold); }
.rev-head .rh-score small { display:block; font-size: 11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color: #4fd18a; }
.rev-head .rh-spacer { margin-left: auto; }
.rev-head .btn-play { padding: 12px 26px; font-size: 15px; }

/* glance / data table (key-value) */
table.data.glance th[scope=row] {
  background: var(--paper-gray); color: var(--ink); text-transform: none;
  letter-spacing: 0; font-size: 14px; white-space: normal; width: 38%;
  border-bottom: 1px solid var(--line);
}
table.data.glance td { font-size: 14.5px; }

/* author grid (editor team) */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; margin: 20px 0; }
.team-card { border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: 20px; text-align: center; }
.team-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin: 0 auto 12px; }
.team-card h3 { font-size: 17px; margin-bottom: 2px; }
.team-card .role { color: var(--gold-deep); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing:.5px; margin-bottom: 10px; }
.team-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 12px; }
.team-card a { font-weight: 700; font-size: 13.5px; }

/* single author profile header */
.author-hero { display:flex; gap: 22px; align-items:flex-start; flex-wrap:wrap; border:1px solid var(--line); border-top:3px solid var(--gold); padding:24px; margin:0 0 6px; }
.author-hero img { width: 120px; height:120px; border-radius:50%; object-fit:cover; border:3px solid var(--gold); flex-shrink:0; }
.author-hero .ah-body { flex:1; min-width: 240px; }

/* homepage "play" link on cards already styled via .btn-play */

/* ============================================================
   Forms (contact + report) — styled inputs/select/textarea
   ============================================================ */
.form-card {
  border: 1px solid var(--line);
  background: var(--paper-gray);
  border-radius: 8px;
  padding: 26px 24px;
  margin: 18px 0 8px;
  max-width: 680px;
}
.form-card .fld { margin-bottom: 16px; }
.form-card label { display: block; font-weight: 800; font-size: 14.5px; color: var(--ink); margin-bottom: 7px; }
.form-card label .req { color: var(--red); }
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd2da;
  border-radius: 6px;
  padding: 11px 13px;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card .btn-submit {
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #201a05;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .3px;
  border: none;
  border-radius: 6px;
  padding: 15px;
  cursor: pointer;
  margin-top: 4px;
}
.form-card .btn-submit:hover { filter: brightness(1.05); }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 12px; }
.form-done {
  display: none;
  border: 1px solid #cfe6d8; background: #f2faf5; color: #14432b;
  border-radius: 8px; padding: 22px 24px; margin: 18px 0; max-width: 680px; font-size: 15px;
}
.form-done b { display:block; font-size: 17px; margin-bottom: 6px; }

/* (game links now sit inline in the paragraph text, styled as normal links) */

/* ---------- promo aside banner (beside bonus section) ---------- */
.promo-aside {
  float: right; width: 275px; margin: 4px 0 18px 26px;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; text-align: center; box-shadow: 0 10px 26px rgba(9,16,35,.18);
}
.promo-aside .pa-ribbon {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  color: #201a05; font-weight: 900; font-size: 11.5px; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 7px;
}
.promo-aside .pa-body { padding: 18px 18px 20px; }
.promo-aside .pa-logo { height: 40px; width: auto; max-width: 150px; margin: 0 auto 12px; object-fit: contain; }
.promo-aside .pa-offer { font-size: 26px; font-weight: 900; line-height: 1.15; }
.promo-aside .pa-offer small { display: block; font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; }
.promo-aside .pa-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin: 10px 0 2px; }
.promo-aside .pa-rate { font-size: 12.5px; color: #b9c6dd; margin-bottom: 14px; }
.promo-aside .pa-btn {
  display: block; background: var(--red); color: #fff; font-weight: 800; font-size: 15px;
  letter-spacing: .4px; text-decoration: none; padding: 13px; border-radius: 7px;
}
.promo-aside .pa-btn:hover { background: var(--red-dark); }
.promo-aside .pa-note { font-size: 10.5px; color: #8fa0bd; margin-top: 10px; }
@media (max-width: 700px) { .promo-aside { float: none; width: 100%; margin: 4px 0 20px; } }

/* ---------- reviews hub grid ---------- */
.rvx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px,1fr)); gap: 16px; margin: 18px 0 8px; }
.rvx-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; text-decoration: none; background: #fff; transition: box-shadow .15s, transform .15s; }
.rvx-card:hover { box-shadow: 0 10px 24px rgba(9,16,35,.12); transform: translateY(-2px); }
.rvx-logo { height: 82px; display: grid; place-items: center; padding: 12px; background: linear-gradient(150deg, var(--navy), var(--navy-deep)); }
.rvx-logo img { max-height: 44px; max-width: 150px; width: auto; object-fit: contain; }
.rvx-logo .rvx-name { color: #fff; font-weight: 900; font-size: 22px; letter-spacing: .3px; }
.rvx-meta { padding: 12px 14px 14px; text-align: center; }
.rvx-meta .rvx-score { display: block; font-weight: 900; font-size: 17px; color: var(--ink); }
.rvx-meta .rvx-score .st { color: var(--gold-deep); }
.rvx-meta .rvx-verdict { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--green); margin: 2px 0 8px; }
.rvx-meta .rvx-cta { display: inline-block; font-size: 13px; font-weight: 800; color: var(--gold-deep); }
.rvx-card:hover .rvx-cta { color: #7a6212; }
