/* ==========================================================================
   CelticTables — celtictables.com
   Evening card-room: deep navy panels, copper rules, ivory type.
   Single production stylesheet. No build step, no framework, no JS deps
   (the mobile nav is a pure CSS checkbox hack).
   Contents
     1. Reset
     2. Design tokens
     3. Base typography
     4. Layout helpers
     5. Buttons
     6. Pills / flags
     7. Site nav (sticky + hamburger)
     8. Hero
     9. Game navigator cards
    10. Toplist table
    11. Review cards
    12. Compact top-5 (pillar pages)
    13. Data tables — odds / strategy (mono)
    14. Editorial blocks, callouts, glossary
    15. How-we-rate criteria grid
    16. FAQ (details/summary)
    17. Compliance, RG box, 18+ badge
    18. Footer
    19. Utilities
    20. Responsive — 840px
    21. Responsive — 560px
    22. Motion / print
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; }
a { color: inherit; }
table { border-collapse: collapse; border-spacing: 0; }
summary { cursor: pointer; }
:focus-visible { outline: 2px solid var(--copper-2); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   2. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* surfaces */
  --night: #0f1620;
  --night-2: #16202e;
  --night-3: #1d2a3b;

  /* type */
  --ivory: #f2ede3;
  --ivory-soft: #b9b2a4;

  /* accent */
  --copper: #c8803f;
  --copper-2: #e0a86b;
  --copper-deep: #96581f;

  /* support */
  --line: rgba(200, 128, 63, .20);
  --line-strong: rgba(200, 128, 63, .38);
  --ok: #3fae7a;
  --danger: #cf5a4e;

  /* geometry */
  --radius: 14px;
  --radius-s: 8px;
  --max: 1180px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .4);
  --shadow-s: 0 4px 14px rgba(0, 0, 0, .3);

  /* fonts */
  --font-display: "Marcellus", Georgia, "Times New Roman", serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   3. Base typography
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ivory);
  background-color: var(--night);
  /* felt-table motif: one soft radial vignette, nothing more */
  background-image:
    radial-gradient(1100px 620px at 50% -8%, rgba(200, 128, 63, .09), transparent 62%),
    radial-gradient(900px 700px at 50% 108%, rgba(29, 42, 59, .85), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ivory);
  letter-spacing: .01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); margin: 0 0 1rem; }
h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  margin: 2.6rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
h3 { font-size: 1.24rem; margin: 1.7rem 0 .55rem; color: var(--copper-2); }
h4 { font-size: 1.04rem; margin: 1.3rem 0 .4rem; font-family: var(--font-text); font-weight: 700; color: var(--ivory); }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
main p, main li { color: var(--ivory); }
.muted, .small { color: var(--ivory-soft); }
.small { font-size: .85rem; }
.tiny { font-size: .78rem; color: var(--ivory-soft); }
strong { font-weight: 700; color: var(--ivory); }
em { font-style: italic; }
code, .mono { font-family: var(--font-mono); font-size: .92em; }

main a {
  color: var(--copper-2);
  text-decoration: underline;
  text-decoration-color: rgba(224, 168, 107, .4);
  text-underline-offset: 3px;
}
main a:hover { color: var(--copper); text-decoration-color: var(--copper); }

main ul, main ol { margin: 0 0 1.1rem 1.25rem; }
main ul[class], main ol[class] { margin-left: 0; }
main li { margin-bottom: .4rem; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }
blockquote {
  margin: 1.2rem 0;
  padding: .2rem 0 .2rem 18px;
  border-left: 3px solid var(--copper);
  color: var(--ivory-soft);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 780px; }
.section { padding: 2.4rem 0; }
.section-alt {
  background: var(--night-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 0;
  margin: 2.4rem 0;
}
.panel {
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-s);
}
h1[id], h2[id], h3[id], section[id], article[id] { scroll-margin-top: 92px; }

.crumbs {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--ivory-soft);
  padding: 14px 0 0;
}
.crumbs a { color: var(--ivory-soft); text-decoration: none; }
.crumbs a:hover { color: var(--copper-2); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--copper-2); }

.lede { font-size: 1.08rem; color: var(--ivory); max-width: 780px; }
.page-meta {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ivory-soft);
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-s);
  font-weight: 700;
  font-size: .96rem;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #21160c;
  box-shadow: 0 4px 16px rgba(200, 128, 63, .28);
}
.btn-primary:hover { box-shadow: 0 8px 22px rgba(200, 128, 63, .42); color: #21160c; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ivory);
}
.btn-ghost:hover { background: rgba(200, 128, 63, .1); border-color: var(--copper); color: var(--copper-2); }
.btn-block { width: 100%; }
main a.btn, main a.btn:hover { text-decoration: none; }

/* --------------------------------------------------------------------------
   6. Pills / flags
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--copper-2);
  background: rgba(200, 128, 63, .08);
  white-space: nowrap;
}
.pill-pending { color: var(--copper-2); }
.pill-good { color: var(--ok); border-color: rgba(63, 174, 122, .4); background: rgba(63, 174, 122, .1); }
.pill-warn { color: var(--danger); border-color: rgba(207, 90, 78, .4); background: rgba(207, 90, 78, .1); }

/* --------------------------------------------------------------------------
   7. Site nav — sticky, CSS-only hamburger
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 22, 32, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .02em;
  color: var(--ivory);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover { color: var(--copper-2); }
.brand-mark { width: 30px; height: 30px; flex: none; }
.brand-accent { color: var(--copper-2); }

.nav-check { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle { display: none; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block;
  padding: 9px 13px;
  border-radius: var(--radius-s);
  font-size: .92rem;
  font-weight: 600;
  color: var(--ivory-soft);
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.nav-links a:hover { background: rgba(200, 128, 63, .12); color: var(--ivory); }
.nav-links a.active { color: var(--copper-2); background: rgba(200, 128, 63, .14); }
.nav-links a.nav-rg { color: var(--copper-2); font-weight: 700; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 3.2rem 0 2.6rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(760px 320px at 12% 0%, rgba(200, 128, 63, .14), transparent 65%);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: 1rem;
}
.hero-kicker::after { content: ""; width: 46px; height: 1px; background: var(--copper); }
.hero h1 { max-width: 860px; }
.hero-lead {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--ivory-soft);
  margin-bottom: 1.6rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.3rem; }
.hero-meta { font-family: var(--font-mono); font-size: .78rem; color: var(--ivory-soft); letter-spacing: .03em; }

/* --------------------------------------------------------------------------
   9. Game navigator cards
   -------------------------------------------------------------------------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 1.6rem 0 .6rem;
}
.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, var(--night-2), var(--night));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  text-decoration: none;
  overflow: hidden;
  transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease;
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-2), transparent);
  opacity: .75;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
main a.game-card, main a.game-card:hover { text-decoration: none; }
.gc-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(200, 128, 63, .1);
  color: var(--copper-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}
.gc-title { font-family: var(--font-display); font-size: 1.35rem; color: var(--ivory); margin: 0; }
.game-card:hover .gc-title { color: var(--copper-2); }
.gc-learn { color: var(--ivory-soft); font-size: .95rem; margin: 0; }
.gc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.gc-link {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--copper-2);
}

/* --------------------------------------------------------------------------
   10. Toplist table
   -------------------------------------------------------------------------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.3rem 0 .6rem;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toplist-table { width: 100%; min-width: 700px; font-size: .93rem; }
.toplist-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 0;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}
.toplist-table th {
  text-align: left;
  padding: 13px 15px;
  background: var(--night-3);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--copper-2);
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.toplist-table td { padding: 13px 15px; border-top: 1px solid var(--line); vertical-align: middle; }
.toplist-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .022); }
.toplist-table tbody tr:hover { background: rgba(200, 128, 63, .08); }
.toplist-table .num { font-family: var(--font-mono); font-weight: 700; color: var(--copper-2); }
.toplist-table .t-name { font-family: var(--font-display); font-size: 1.02rem; color: var(--ivory); white-space: nowrap; }
.toplist-table .t-offer { font-family: var(--font-mono); font-size: .82rem; color: var(--ivory-soft); }
.toplist-table .t-tbc { font-family: var(--font-mono); font-size: .82rem; color: var(--ivory-soft); }
.mini-cta {
  display: inline-block;
  padding: 7px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--copper-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
main a.mini-cta { text-decoration: none; }
.mini-cta:hover { background: var(--copper); color: #21160c; border-color: var(--copper); }
.table-note { font-size: .84rem; color: var(--ivory-soft); max-width: 820px; }

/* --------------------------------------------------------------------------
   11. Review cards
   -------------------------------------------------------------------------- */
.rc-list { display: flex; flex-direction: column; gap: 26px; margin: 1.8rem 0 2.2rem; }

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 28px 26px;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-card.featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(200, 128, 63, .07), var(--night-2) 42%);
  box-shadow: 0 10px 34px rgba(200, 128, 63, .14), var(--shadow);
}
.rc-rank {
  position: absolute;
  top: -13px;
  left: 22px;
  min-width: 44px;
  height: 30px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--night-3);
  font-family: var(--font-mono);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--copper-2);
}
.review-card.featured .rc-rank {
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  border-color: var(--copper);
  color: #21160c;
}

/* phone mock — data-letter fallback until a banner file exists */
.rc-phone { display: block; text-align: center; text-decoration: none; }
main a.rc-phone, main a.rc-phone:hover { text-decoration: none; }
.rc-phone-screen {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, var(--night-3), var(--night));
  overflow: hidden;
  box-shadow: inset 0 0 0 4px rgba(15, 22, 32, .9), var(--shadow-s);
}
.rc-phone-screen::before {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--copper);
  opacity: .55;
}
.rc-phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
}
.rc-phone-screen.img-loaded img { opacity: 1; }
.rc-phone-screen.img-loaded::before { content: none; }
.rc-phone-cta {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--copper-2);
}
.rc-phone:hover .rc-phone-cta { color: var(--copper); text-decoration: underline; }

.rc-body { display: flex; flex-direction: column; min-width: 0; }
.rc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: .7rem;
}
.rc-name-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.rc-name { font-family: var(--font-display); font-size: 1.55rem; color: var(--ivory); }
.rc-flag {
  padding: 3px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(200, 128, 63, .1);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--copper-2);
  white-space: nowrap;
}
.rc-rating { text-align: right; line-height: 1.05; flex: none; }
.rc-rating-val { font-family: var(--font-display); font-size: 1.8rem; color: var(--copper-2); }
.rc-rating-max { font-family: var(--font-mono); font-size: .78rem; color: var(--ivory-soft); margin-left: 3px; }

.rc-intro { color: var(--ivory); margin-bottom: .85rem; }
.rc-mobile-meta {
  display: none;
  font-family: var(--font-mono);
  font-size: .76rem;
  color: var(--ivory-soft);
  margin-bottom: .85rem;
}

.rc-usps { list-style: none; margin: 0 0 1.15rem; display: flex; flex-direction: column; gap: 7px; }
.rc-usps li { position: relative; padding-left: 26px; font-size: .93rem; margin: 0; }
.rc-usps li::before { content: "\2713"; position: absolute; left: 0; top: 0; font-weight: 700; color: var(--ok); }
.rc-usps li.pending, .rc-usps li.pendente { color: var(--ivory-soft); }
.rc-usps li.pending::before, .rc-usps li.pendente::before { content: "\2026"; color: var(--copper); }

.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.rc-bonus { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rc-bonus-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}
.rc-bonus-val { font-family: var(--font-display); font-size: 1.12rem; color: var(--copper-2); }
.rc-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rc-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius-s);
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #21160c;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200, 128, 63, .28);
  transition: box-shadow .2s ease, transform .12s ease;
}
main a.rc-cta-primary, main a.rc-cta-primary:hover { text-decoration: none; color: #21160c; }
.rc-cta-primary:hover { box-shadow: 0 8px 22px rgba(200, 128, 63, .45); }
.rc-cta-primary:active { transform: translateY(1px); }
.rc-cta-secondary { font-size: .9rem; font-weight: 700; color: var(--copper-2); text-underline-offset: 3px; }
.rc-cta-secondary:hover { color: var(--copper); }

/* --------------------------------------------------------------------------
   12. Compact top-5 (pillar pages)
   -------------------------------------------------------------------------- */
.top5 {
  margin: 1.5rem 0 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--night-2);
  box-shadow: var(--shadow-s);
  overflow: hidden;
}
.top5-head {
  padding: 14px 20px;
  background: var(--night-3);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--copper-2);
}
.top5-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
}
.top5-item:first-of-type { border-top: 0; }
.top5-rank { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--copper-2); }
.top5-name { font-family: var(--font-display); font-size: 1.12rem; color: var(--ivory); }
.top5-note { font-size: .85rem; color: var(--ivory-soft); }
.top5-item .btn { padding: 10px 18px; font-size: .88rem; }

/* --------------------------------------------------------------------------
   13. Data tables — odds / house edge / strategy (mono)
   -------------------------------------------------------------------------- */
.data-table {
  width: 100%;
  min-width: 520px;
  font-family: var(--font-mono);
  font-size: .86rem;
}
.data-table caption {
  caption-side: top;
  text-align: left;
  padding: 14px 16px 2px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}
.data-table th {
  text-align: left;
  padding: 12px 14px;
  background: var(--night-3);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--copper-2);
  border-bottom: 1px solid var(--line-strong);
  white-space: nowrap;
}
.data-table td { padding: 11px 14px; border-top: 1px solid var(--line); vertical-align: middle; color: var(--ivory); }
.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .022); }
.data-table .figure { color: var(--copper-2); font-weight: 700; white-space: nowrap; }
.data-table .figure-good { color: var(--ok); font-weight: 700; }
.data-table .figure-bad { color: var(--danger); font-weight: 700; }
.data-table .label { font-family: var(--font-text); font-size: .92rem; }
.data-source { font-size: .78rem; color: var(--ivory-soft); margin-top: .5rem; }

/* basic-strategy grid variant */
.strategy-table { min-width: 620px; text-align: center; }
.strategy-table th, .strategy-table td { padding: 8px 6px; text-align: center; }
.strategy-table th[scope="row"] { background: var(--night-3); text-align: center; }
.strategy-table td { font-weight: 700; letter-spacing: .04em; }
.cell-h { background: rgba(207, 90, 78, .16); color: #f0a79e; }
.cell-s { background: rgba(63, 174, 122, .16); color: #8fd8b6; }
.cell-d { background: rgba(200, 128, 63, .18); color: var(--copper-2); }
.cell-p { background: rgba(120, 150, 210, .16); color: #b3c6ec; }
.strategy-key { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: .8rem; font-family: var(--font-mono); font-size: .78rem; color: var(--ivory-soft); }
.strategy-key span { display: inline-flex; align-items: center; gap: 7px; }
.strategy-key i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; font-style: normal; }

/* --------------------------------------------------------------------------
   14. Editorial blocks, callouts, glossary
   -------------------------------------------------------------------------- */
.edu-block { max-width: 800px; }
.edu-block h3 { color: var(--copper-2); }
.callout {
  margin: 1.3rem 0;
  padding: 18px 22px;
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  background: var(--night-3);
  color: var(--ivory);
}
.callout-title {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: .4rem;
}
.callout-warn { border-left-color: var(--danger); }
.callout-warn .callout-title { color: #f0a79e; }
.callout-maths { border-left-color: var(--ok); font-family: var(--font-mono); font-size: .9rem; }
.callout-maths .callout-title { color: #8fd8b6; }

.myth { margin: 1.3rem 0; }
.myth-claim { font-weight: 700; color: #f0a79e; }
.myth-reality { color: var(--ivory-soft); }

.glossary {
  margin: 1.4rem 0;
  padding: 22px 24px;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.glossary dt { font-family: var(--font-display); font-size: 1.05rem; color: var(--copper-2); margin-top: 1rem; }
.glossary dt:first-of-type { margin-top: 0; }
.glossary dd { margin: .25rem 0 0; color: var(--ivory-soft); font-size: .95rem; }

/* --------------------------------------------------------------------------
   15. How-we-rate criteria grid
   -------------------------------------------------------------------------- */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 1.5rem 0;
}
.criteria-item {
  padding: 20px 22px;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.criteria-num {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--copper);
  display: block;
  margin-bottom: .35rem;
}
.criteria-item h3 { margin: 0 0 .4rem; font-size: 1.08rem; color: var(--ivory); }
.criteria-item p { font-size: .92rem; color: var(--ivory-soft); margin: 0; }

/* --------------------------------------------------------------------------
   16. FAQ — details/summary
   -------------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 1.4rem 0 2rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--night-2);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--ivory);
  list-style: none;
  transition: background .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--copper-2);
  flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: rgba(200, 128, 63, .08); }
.faq details[open] summary { border-bottom: 1px solid var(--line); color: var(--copper-2); }
.faq details > p, .faq details > div { padding: 14px 20px 18px; color: var(--ivory-soft); font-size: .95rem; }

/* --------------------------------------------------------------------------
   17. Compliance, RG box, 18+ badge
   -------------------------------------------------------------------------- */
.rg-box {
  max-width: 820px;
  margin: 1.6rem 0;
  padding: 20px 24px;
  background: var(--night-3);
  border: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .94rem;
  color: var(--ivory-soft);
}
.rg-box strong { color: var(--ivory); }
.rg-box .rg-phone { font-family: var(--font-mono); font-weight: 700; color: var(--copper-2); white-space: nowrap; }
.rg-box-lead { display: flex; align-items: center; gap: 12px; margin-bottom: .6rem; }

.compliance-note {
  max-width: 820px;
  margin: 1.2rem 0 2rem;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--ivory-soft);
}
.disclosure-inline { font-size: .78rem; color: var(--ivory-soft); margin-top: .6rem; }

.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border: 2px solid var(--danger);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  color: var(--danger);
  letter-spacing: -.02em;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: 3rem;
  padding: 2.6rem 0 2.2rem;
  background: #0b111a;
  border-top: 1px solid var(--line);
  color: var(--ivory-soft);
  font-size: .9rem;
}
.site-footer a { color: var(--ivory-soft); }
.site-footer a:hover { color: var(--copper-2); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  text-decoration: none;
  margin-bottom: .8rem;
}
.footer-about { max-width: 660px; margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 1.5rem; list-style: none; }
.footer-links a { font-weight: 600; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-legal { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.footer-legal p { margin-bottom: .6rem; font-size: .8rem; line-height: 1.6; }
.footer-legal .rg-line { display: flex; align-items: center; gap: 12px; }
.footer-legal .helpline { font-family: var(--font-mono); font-weight: 700; color: var(--copper-2); white-space: nowrap; }
.footer-copy { color: #7d8794; }

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--copper);
  color: #21160c;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   20. Responsive — 840px (hamburger)
   -------------------------------------------------------------------------- */
@media (max-width: 840px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius-s);
    cursor: pointer;
  }
  .nav-toggle:hover { background: rgba(200, 128, 63, .12); }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    border-radius: 2px;
    background: var(--copper-2);
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav-check:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-check:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-check:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 10px 14px;
    background: var(--night-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-check:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; }

  .game-grid { grid-template-columns: 1fr; gap: 16px; }

  .review-card { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px 22px; }
  .rc-phone { max-width: 180px; margin: 6px auto 0; }
  .rc-usps { display: none; }
  .rc-mobile-meta { display: block; }

  .top5-item { grid-template-columns: 34px minmax(0, 1fr); row-gap: 10px; }
  .top5-item .btn { grid-column: 1 / -1; width: 100%; }

  .hero { padding: 2.6rem 0 2.2rem; }
}

/* --------------------------------------------------------------------------
   21. Responsive — 560px
   -------------------------------------------------------------------------- */
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  body { font-size: .97rem; }
  h2 { margin-top: 2.1rem; }
  .hero-ctas .btn { width: 100%; }
  .rc-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rc-rating { text-align: left; }
  .rc-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .rc-cta-row { flex-direction: column; align-items: stretch; }
  .rc-cta-primary { width: 100%; }
  .rc-cta-secondary { text-align: center; }
  .toplist-table { font-size: .88rem; }
  .glossary, .panel { padding: 20px 18px; }
  .callout, .rg-box { padding: 16px 18px; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-legal .rg-line { align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   22. Motion / print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  body { background: #fff; color: #111; }
  .site-nav, .hero-ctas, .rc-phone, .btn, .mini-cta { display: none !important; }
  .review-card, .panel, .glossary { border: 1px solid #ccc; box-shadow: none; background: #fff; color: #111; }
}

/* Fix 28-07: as capturas tinham opacity:0 a espera de uma classe .img-loaded que
   o JS de lazy-load ja nao poe (as imagens passaram a ter src real). Quem tem
   src mostra-se; a letra de fallback so aparece quando nao ha imagem. */
.rc-phone-screen img[src]{opacity:1}
.rc-phone-screen:has(img[src])::after{display:none}
