/* bestcryptospins.com - blue editorial system (casino.org-inspired) */

:root {
  --paper: #ffffff;
  --ink: #122048;
  --ink-2: #3b4668;
  --muted: #5d6b8a;
  --border: #dbe3f5;
  --soft: #f2f6ff;
  --tint: #e6eeff;
  --blue: #2450e6;
  --blue-dark: #1233a8;
  --navy: #0b1f5c;
  --accent: #bd5317;
  --accent-dark: #a8480f;
  --warn-bg: #fff2f2;
  --warn-border: #f6caca;
  --r: 8px;
  --shadow-sm: 0 1px 3px rgba(16, 35, 90, 0.08);
  --shadow: 0 8px 22px rgba(16, 35, 90, 0.12);
  --header-h: 64px;
  --max-w: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }

@media (min-width: 900px) {
  :root { --header-h: 108px; }
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

h1, h2, h3 { line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; overflow-wrap: break-word; }
h1 { font-size: clamp(1.65rem, 1.2rem + 2vw, 2.1rem); font-weight: 800; margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.28rem, 1.08rem + 0.9vw, 1.45rem); margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
p, ul, ol { margin: 0 0 1rem; }

/* ── Header (two tiers: centered logo, menu bar below) ──── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  background: linear-gradient(100deg, #0d1f66, #1233a8);
}
.header-top {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
}
.site-logo { display: block; line-height: 0; text-decoration: none; flex-shrink: 0; }
.site-logo img { width: 235px; height: 36px; }

.site-nav { display: none; }

@media (min-width: 900px) {
  .header-top { height: 62px; }
  .site-nav {
    display: flex;
    justify-content: center;
    height: 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 12, 46, 0.28);
  }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cdd8ff;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 999px;
}
.site-nav a:hover { color: #ffffff; background: rgba(255, 255, 255, 0.1); }
.site-nav a[aria-current="page"] { color: #ffffff; background: rgba(255, 255, 255, 0.14); }
.nav-ico { width: 16px; height: 16px; filter: invert(1); opacity: 0.9; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #cdd8ff;
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: #ffffff; background: rgba(255, 255, 255, 0.1); }
.nav-dropdown-toggle .caret { filter: invert(1); transition: transform 0.2s; }
.nav-dropdown.open .caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(8, 18, 60, 0.24);
  padding: 0.55rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  list-style: none;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown.open::after {
  content: "";
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 8px;
}
.nav-dropdown-menu a:hover { background: var(--tint); color: var(--blue-dark); }
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--tint);
  color: var(--blue-dark);
  font-weight: 700;
}
.nav-divider { height: 1px; background: var(--border); margin: 0.35rem 0.5rem; }

.nav-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: #ffffff; }
.nav-toggle img { filter: invert(1); }
.icon-close { display: none; }
.icon-open { display: block; }
body.nav-open .icon-close { display: block; }
body.nav-open .icon-open { display: none; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--soft);
  z-index: 400;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  padding: 1rem 1rem 2.5rem;
}
body.nav-open .mobile-nav { display: block; }
.m-group {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.m-group summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.m-group summary::-webkit-details-marker { display: none; }
.m-group .m-ico { width: 18px; height: 18px; opacity: 0.85; }
.m-group .m-caret { margin-left: auto; opacity: 0.6; transition: transform 0.2s; }
.m-group[open] .m-caret { transform: rotate(180deg); }
.m-group[open] summary { border-bottom: 1px solid var(--border); background: var(--soft); }
.m-group ul {
  margin: 0;
  padding: 0.45rem;
  list-style: none;
}
.m-group a {
  display: block;
  padding: 0.7rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 8px;
}
.m-group a:hover,
.m-group a[aria-current="page"] { color: var(--blue-dark); background: var(--tint); }

/* ── Disclosure bar ─────────────────────────────────────── */
.disclosure-bar {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 0.45rem 1rem;
}
.disclosure-bar a { color: var(--muted); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(100deg, rgba(8, 20, 62, 0.93) 20%, rgba(18, 51, 168, 0.78)),
    url("/images/hero-bg-all-pages.webp") center / cover no-repeat;
  background-color: var(--navy);
  color: #ffffff;
  padding: 3.25rem 0 3.5rem;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding-inline: 1.25rem; }
.hero h1 { color: #ffffff; }
.hero p { color: #ccd8f6; }
/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: background 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #ffffff; }
.btn-invert { background: #ffffff; color: var(--blue-dark); border-color: #ffffff; box-shadow: none; }
.btn-invert:hover { background: var(--tint); border-color: var(--tint); color: var(--blue-dark); }

/* ── Layout ─────────────────────────────────────────────── */
main { display: block; }
.content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

/* ── Homepage hub ───────────────────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1rem 0 0.5rem;
}
@media (min-width: 700px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .hub-grid { grid-template-columns: repeat(4, 1fr); } }
a.hub-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.2rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
a.hub-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
a.hub-card .hub-ico { width: 56px; height: 56px; margin-bottom: 0.7rem; }
a.hub-card strong { display: block; margin-bottom: 0.35rem; font-size: 1.02rem; color: var(--blue-dark); }
a.hub-card span { font-size: 0.88rem; color: var(--muted); }
.home-section { margin-top: 2.75rem; }
.home-section:nth-of-type(even) {
  background: var(--soft);
  margin-inline: calc(50% - 50vw);
  padding: 2.25rem calc(50vw - 50%) 2.5rem;
}
.home-section h2 { display: flex; align-items: center; gap: 0.6rem; margin-top: 0; }
.home-section h2 .h2-ico { width: 34px; height: 34px; }
.home-section h2.h2-xl { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 1.9rem); }
.home-section .lead { font-size: clamp(1.04rem, 0.98rem + 0.3vw, 1.15rem); line-height: 1.7; color: var(--ink-2); max-width: 68ch; }
.home-section .lead.center { margin-inline: auto; text-align: center; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }

/* ── Facts table ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border-radius: var(--r); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.facts-table th, .facts-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.85rem;
  text-align: left;
  vertical-align: top;
}
.facts-table tr:first-child th { border-top: none; }
.facts-table tr:last-child th, .facts-table tr:last-child td { border-bottom: none; }
.facts-table th:first-child, .facts-table td:first-child { border-left: none; }
.facts-table th:last-child, .facts-table td:last-child { border-right: none; }
.facts-table th {
  width: 38%;
  background: var(--soft);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* ── Pros / cons ────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 700px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros-cons > div {
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  overflow: hidden;
}
.pros-cons h3 { margin: 0; padding: 0.75rem 1.25rem; font-size: 1rem; display: flex; align-items: center; gap: 0.55rem; }
.pros-cons .pros h3 { background: #e8f6ec; color: #1d6b31; }
.pros-cons .cons h3 { background: var(--warn-bg); color: #a32626; }
.pros-cons .pros h3 .mico { background: #1d6b31; }
.pros-cons .cons h3 .mico { background: #a32626; }
.pros-cons ul { list-style: none; margin: 0; padding: 1rem 1.25rem 1.15rem; }
.pros-cons li { position: relative; padding-left: 1.7rem; margin-bottom: 0.55rem; font-size: 0.95rem; }
.pros-cons li:last-child { margin-bottom: 0; }
.pros-cons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 15px;
  height: 15px;
}
.pros-cons .pros li::before {
  background: #1d7a35;
  -webkit-mask: url("/icons/check-bold.svg") center / contain no-repeat;
  mask: url("/icons/check-bold.svg") center / contain no-repeat;
}
.pros-cons .cons li::before {
  background: #c22f2f;
  -webkit-mask: url("/icons/x-bold.svg") center / contain no-repeat;
  mask: url("/icons/x-bold.svg") center / contain no-repeat;
}

/* ── Screenshots ────────────────────────────────────────── */
.shot { margin: 1.5rem 0; }
.shot img { width: 100%; border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.shot figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }
.shot-mobile { max-width: 320px; }

/* ── Review pages v2 ────────────────────────────────────── */
.mico {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--blue);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}
.mico-check { -webkit-mask-image: url("/icons/check-bold.svg"); mask-image: url("/icons/check-bold.svg"); }
.mico-x { -webkit-mask-image: url("/icons/x-bold.svg"); mask-image: url("/icons/x-bold.svg"); }
.mico-buildings { -webkit-mask-image: url("/icons/buildings-regular.svg"); mask-image: url("/icons/buildings-regular.svg"); }
.mico-seal { -webkit-mask-image: url("/icons/seal-check-regular.svg"); mask-image: url("/icons/seal-check-regular.svg"); }
.mico-controller { -webkit-mask-image: url("/icons/game-controller-regular.svg"); mask-image: url("/icons/game-controller-regular.svg"); }
.mico-btc { -webkit-mask-image: url("/icons/currency-btc-regular.svg"); mask-image: url("/icons/currency-btc-regular.svg"); }
.mico-card { -webkit-mask-image: url("/icons/credit-card-regular.svg"); mask-image: url("/icons/credit-card-regular.svg"); }
.mico-gift { -webkit-mask-image: url("/icons/gift-regular.svg"); mask-image: url("/icons/gift-regular.svg"); }
.mico-repeat { -webkit-mask-image: url("/icons/repeat-regular.svg"); mask-image: url("/icons/repeat-regular.svg"); }
.mico-vault { -webkit-mask-image: url("/icons/vault-regular.svg"); mask-image: url("/icons/vault-regular.svg"); }
.mico-id { -webkit-mask-image: url("/icons/identification-card-regular.svg"); mask-image: url("/icons/identification-card-regular.svg"); }
.mico-crown { -webkit-mask-image: url("/icons/crown-simple-regular.svg"); mask-image: url("/icons/crown-simple-regular.svg"); }
.mico-scales { -webkit-mask-image: url("/icons/scales-regular.svg"); mask-image: url("/icons/scales-regular.svg"); }
.mico-plane { -webkit-mask-image: url("/icons/paper-plane-tilt-bold.svg"); mask-image: url("/icons/paper-plane-tilt-bold.svg"); }
.mico-coins { -webkit-mask-image: url("/icons/coins-regular.svg"); mask-image: url("/icons/coins-regular.svg"); }
.mico-trophy { -webkit-mask-image: url("/icons/trophy-regular.svg"); mask-image: url("/icons/trophy-regular.svg"); }

/* hero scorecard */
.review-scorecard {
  background: var(--paper);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem 1.5rem;
}
.rsc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.rsc-head img { border-radius: 6px; }
.rsc-score { line-height: 1; white-space: nowrap; }
.rsc-score strong { font-size: 2.3rem; font-weight: 800; color: var(--ink); }
.rsc-score span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.review-scorecard .score-bars { margin: 0 0 1.25rem; max-width: none; }
.review-scorecard .btn { display: block; text-align: center; }
.rsc-note { display: block; margin-top: 0.7rem; text-align: center; font-size: 0.78rem; color: var(--muted); }

/* at-a-glance fact tiles */
.glance-grid { display: grid; gap: 0.9rem; margin: 1rem 0 1.75rem; }
@media (min-width: 560px) { .glance-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .glance-grid { grid-template-columns: 1fr 1fr 1fr; } }
.glance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 0.95rem 1.05rem;
}
.glance-item .mico { margin-top: 2px; }
.glance-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.glance-item .g-val { font-size: 0.95rem; color: var(--ink); line-height: 1.45; }

/* two side-by-side callouts */
.duo-grid { display: grid; gap: 1rem; margin: 1rem 0 1.5rem; }
@media (min-width: 760px) { .duo-grid { grid-template-columns: 1fr 1fr; } }
.duo-grid .callout-card { margin: 0; }
.callout-card h3 .mico { background: var(--blue-dark); }

/* text + phone screenshot split */
.mobile-split { display: grid; gap: 1.75rem; margin: 1rem 0 1.5rem; }
@media (min-width: 860px) { .mobile-split { grid-template-columns: minmax(0, 1fr) 300px; align-items: center; } }
.mobile-split .shot { margin: 0; }
.mobile-split .shot-mobile { margin-inline: auto; }

/* payment strip under the review hero */
.pay-strip { background: var(--paper); border-bottom: 1px solid var(--border); }
.pay-strip .pay-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
}
.pay-strip .pay-grid li { flex: 1 1 0; min-width: 92px; box-shadow: none; }

/* navy safety verdict band */
.safety-band {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: linear-gradient(120deg, var(--navy), var(--blue-dark));
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  margin: 1rem 0 1.5rem;
}
.safety-band .mico { width: 40px; height: 40px; background: #8fb0ff; margin-top: 0.2rem; }
.safety-band p { margin: 0; color: #dbe4fb; }
.safety-band strong { color: #ffffff; }

/* ── Payment tiles ──────────────────────────────────────── */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.pay-grid li {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 0.55rem 0.4rem 0.45rem;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pay-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.pay-grid img { width: 80px; height: 30px; margin: 0 auto; object-fit: contain; }
.pay-grid span { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 0.3rem; }

/* ── RG org logos ───────────────────────────────────────── */
.rg-logo-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1rem 0 1.5rem; }
.rg-logo-row a { border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 0.6rem 0.9rem; display: inline-flex; align-items: center; background: var(--paper); }
.rg-logo-row img { width: 120px; height: 60px; object-fit: contain; }

/* ── Red flags box ──────────────────────────────────────── */
.red-flags {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  margin: 1rem 0 1.5rem;
}
.red-flags ul { list-style: none; margin: 0; padding: 0; }
.red-flags li { position: relative; padding-left: 1.9rem; margin-bottom: 0.75rem; font-size: 0.95rem; }
.red-flags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 17px;
  height: 17px;
  background: #c22f2f;
  -webkit-mask: url("/icons/warning-regular.svg") center / contain no-repeat;
  mask: url("/icons/warning-regular.svg") center / contain no-repeat;
}
.red-flags li strong { color: #a32626; }
.red-flags li:last-child { margin-bottom: 0; }

/* ── CTA box ────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(120deg, var(--navy), var(--blue-dark));
  color: #ffffff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  margin: 2.5rem 0;
  text-align: center;
}
.cta-box p { color: #ccd8f6; margin: 0 auto 1rem; max-width: 62ch; }
.cta-box .cta-title { color: #ffffff; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.35rem; }
.cta-box .cta-logo { display: block; margin: 0 auto 0.9rem; border-radius: 6px; }

/* ── Responsible gambling box ───────────────────────────── */
.rg-box {
  background: #f4f6fb;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin: 2.5rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.rg-box strong { font-size: 1rem; color: var(--ink); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #b9c6ec;
  margin-top: 3rem;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 1.8fr 1.1fr 1fr 1fr 1.2fr; } }
.site-footer h2 {
  color: #8fa5e8;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: #b9c6ec; }
.site-footer a:hover { color: #ffffff; }
.footer-brand { color: #ffffff; font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: #93a3d6;
  text-align: center;
}
.footer-bottom a { color: #93a3d6; }
.footer-bottom a:hover { color: #ffffff; }
.footer-bottom .age-badge {
  display: inline-block;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  margin-right: 0.5rem;
}

/* ── Back to top ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, background 0.15s;
  z-index: 300;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top img { filter: invert(1); }
.back-to-top:hover { background: var(--blue-dark); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ══ Money pages ══════════════════════════════════════════ */

/* hero casino cards (casino.org-style 2x2) */
.hero-grid { display: grid; gap: 2.25rem; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: minmax(0, 1fr) 420px; } }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.hero-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background: rgba(4, 12, 40, 0.55);
  border: 1px solid rgba(157, 183, 255, 0.28);
  border-radius: var(--r);
  padding: 1.1rem 1.1rem 1rem;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.hero-card:hover { transform: translateY(-3px); border-color: var(--accent); background: rgba(4, 12, 40, 0.78); }
.hero-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.hero-card-top .hc-logo { border-radius: 6px; }
.hero-card-top .hc-arrow { width: 26px; height: 26px; filter: brightness(0) invert(1); opacity: 0.85; transition: transform 0.15s; }
.hero-card:hover .hc-arrow { transform: translateX(4px); }
.hero-card strong {
  display: block;
  color: #b9c8f2;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
  transition: color 0.15s;
}
.hero-card:hover strong { color: #ffffff; }

/* hero byline */
.hero-byline { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.6rem; color: #ccd8f6; font-size: 0.93rem; }
.hero-byline img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.4); }
.hero-byline a { color: #ffffff; font-weight: 600; }
.hero-byline .dot { opacity: 0.55; padding: 0 0.15rem; }

/* homepage hero: copy left, fanned phone screenshots right */
.hero-cols { display: grid; gap: 2.5rem; align-items: center; }
.hero-copy .hl { color: #ffb079; }
.btn-ghost { background: transparent; border: 2px solid rgba(255, 255, 255, 0.55); color: #ffffff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #ffffff; color: #ffffff; }
.hero-phones { display: none; }
@media (min-width: 1024px) {
  .hero-cols { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
  .hero-phones { display: block; position: relative; height: 470px; }
}
.ph {
  position: absolute;
  border-radius: 26px;
  border: 6px solid #0a1433;
  background: #0a1433;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 8, 30, 0.55);
}
.ph img { display: block; width: 100%; height: auto; }
.ph-1 { width: 206px; left: 50%; transform: translateX(-50%); top: 0; z-index: 3; }
.ph-2 { width: 182px; left: 4%; top: 52px; transform: rotate(-6deg); z-index: 2; opacity: 0.94; }
.ph-3 { width: 182px; right: 4%; top: 64px; transform: rotate(6deg); z-index: 1; opacity: 0.94; }
.ph-chip {
  position: absolute;
  z-index: 4;
  right: 8%;
  top: -6px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(2, 8, 30, 0.45);
}
.ph-chip small { font-weight: 600; font-size: 0.74rem; }

/* homepage bento: money-page tiles with screenshot backgrounds */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
      "best best fast pokies"
      "best best nokyc usdt"
      "new bonus eth eth";
  }
  .b-best { grid-area: best; min-height: 340px; }
  .b-fast { grid-area: fast; }
  .b-pokies { grid-area: pokies; }
  .b-nokyc { grid-area: nokyc; }
  .b-usdt { grid-area: usdt; }
  .b-new { grid-area: new; }
  .b-bonus { grid-area: bonus; }
  .b-eth { grid-area: eth; }
  .b-best .b-body h3 { font-size: 1.35rem; }
}
.b-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.b-tile .b-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.b-tile:hover .b-bg { transform: scale(1.05); }
.b-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 14, 40, 0.15) 25%, rgba(6, 14, 40, 0.9) 85%); }
.b-body { position: relative; z-index: 1; padding: 1.05rem 1.15rem 1.1rem; }
.b-body h3 { color: #ffffff; font-size: 1.08rem; margin: 0 0 0.3rem; }
.b-body p { color: #ccd6f0; font-size: 0.86rem; line-height: 1.5; margin: 0; }
.b-arrow {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.2s;
}
.b-tile:hover .b-arrow { background: var(--accent); }
.b-arrow img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

/* homepage section variety: split columns, task grid, dark band, step cards */
.split-2 { display: grid; gap: 1.75rem; align-items: center; margin-top: 0.5rem; }
@media (min-width: 1024px) { .split-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.75rem; } }
.split-2 .count-bars { margin: 0; }
@media (min-width: 860px) { .task-list.task-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2.25rem; } }
.home-section.home-dark {
  background: var(--navy);
  margin-inline: calc(50% - 50vw);
  padding: 2.5rem calc(50vw - 50%) 2.75rem;
  color: #dfe7fb;
}
.home-dark h2 { color: #ffffff; }
.home-dark .lead { color: #c7d3f2; }
.home-dark p { color: #c7d3f2; }
.home-dark .safety-band { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); box-shadow: none; }
.home-dark .hub-card { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.16); box-shadow: none; }
.home-dark .hub-card strong { color: #ffffff; }
.home-dark .hub-card span { color: #b9c6e8; }
.home-dark .hub-card:hover { border-color: rgba(255, 255, 255, 0.42); background: rgba(255, 255, 255, 0.09); }
.step-cards { list-style: none; counter-reset: step; display: grid; gap: 1rem; padding: 0; margin: 1.5rem 0 0; }
@media (min-width: 760px) { .step-cards { grid-template-columns: 1fr 1fr; } }
.step-cards li {
  counter-increment: step;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.4rem 1.4rem;
}
.step-cards li::before {
  content: counter(step);
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.step-cards h3 { font-size: 1.08rem; margin: 0 0 0.45rem; }
.step-cards p { font-size: 0.95rem; margin: 0; }
.home-section h2.center { position: relative; display: block; text-align: center; padding-bottom: 0.8rem; }
.home-section h2.center::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

/* rank rail: navy quick-picks strip with logos + scores */
.rank-rail { background: var(--navy); overflow: hidden; }
.rank-rail-inner {
  display: flex;
  gap: 0.9rem;
  padding: 1.5rem 1.25rem 1.35rem;
  width: max-content;
  min-width: 100%;
  animation: rail-sway 28s ease-in-out infinite alternate;
}
.rank-rail-inner:hover { animation-play-state: paused; }
@keyframes rail-sway {
  from { transform: translateX(0); }
  to { transform: translateX(min(0px, calc(100vw - 100%))); }
}
@media (min-width: 1104px) { .rank-rail-inner { padding-inline: calc(50vw - 540px + 1.25rem); } }
@media (prefers-reduced-motion: reduce) {
  .rank-rail { overflow-x: auto; }
  .rank-rail-inner { animation: none; }
}
.rank-rail a {
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
  transition: transform 0.15s;
}
.rank-rail a:hover { transform: translateY(-2px); }
.rank-rail .rr-rank {
  position: absolute;
  top: -9px;
  left: -9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(4, 12, 40, 0.6);
}
.rank-rail .rr-top { background: var(--accent); }
.rank-rail img { display: block; border-radius: 6px; }

/* floating TOC */
.m-toc {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
}

/* TOC outside the content column (wide screens): article spans full header width */
.content > .m-toc { margin-bottom: 2rem; }
@media (min-width: 700px) and (max-width: 1559px) { .content > .m-toc ol { columns: 2; column-gap: 2.5rem; } }
@media (min-width: 1560px) {
  .content-toc {
    max-width: 1528px;
    padding-inline: 0;
    display: grid;
    grid-template-columns: 204px 1040px 204px;
    gap: 0 40px;
    justify-content: center;
  }
  .content-toc > .m-toc {
    grid-column: 1;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    margin: 0;
  }
  .content-toc > article { grid-column: 2; min-width: 0; }
}
.m-toc h2 { margin: 0 0 0.6rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.m-toc ol { margin: 0; padding-left: 1.2rem; }
.m-toc li { margin-bottom: 0.4rem; }
.m-toc li::marker { color: var(--blue); font-weight: 700; }
.m-toc a { text-decoration: none; color: var(--ink-2); }
.m-toc a:hover { color: var(--blue); text-decoration: underline; }
/* comparison table */
.rank-table th { white-space: normal; }
.rank-table tr:first-child th { background: var(--navy); color: #ffffff; width: auto; }
.rank-table td { font-size: 0.9rem; }
/* rich data tables (deposit methods, bonuses): navy header + zebra rows */
.rich-table th { width: auto; background: var(--navy); color: #ffffff; font-weight: 600; white-space: nowrap; }
.rich-table td { vertical-align: middle; }
.rich-table tr:nth-child(odd) td { background: var(--soft); }
.pay-m { display: flex; align-items: center; gap: 0.6rem; min-width: 175px; }
.pay-m img { flex: none; border: 1px solid var(--border); border-radius: 6px; }
.pay-m span { font-weight: 600; color: var(--ink); white-space: nowrap; }
.chip-ok, .chip-warn {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 600;
  white-space: nowrap;
}
.chip-ok { background: #e8f6ec; border: 1px solid #bfe3c8; color: #1d6b31; }
.chip-warn { background: var(--warn-bg); border: 1px solid var(--warn-border); color: #a32626; }

/* VIP / high-roller cards */
.vip-grid { display: grid; gap: 0.9rem; margin: 1rem 0 1.5rem; }
@media (min-width: 760px) {
  .vip-grid { grid-template-columns: 1fr 1fr; }
  .vip-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}
.vip-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.05rem 1.2rem;
}
.vip-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.55rem; }
.vip-head img { flex: none; border-radius: 6px; }
.vip-head strong { color: var(--ink); font-size: 1.02rem; }
.vip-card p { margin: 0; font-size: 0.95rem; }

.t-brand { display: flex; align-items: center; gap: 0.6rem; min-width: 150px; }
.t-brand img { border-radius: 6px; flex: none; }
.t-brand span { font-weight: 600; color: var(--ink); }
.medal {
  display: inline-block;
  min-width: 2rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.15rem 0.3rem;
  border-radius: 6px;
  border: 1px solid var(--blue);
  color: var(--blue-dark);
}
.medal-1 { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* full casino block */
.casino-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
  overflow: hidden;
}
.casino-block-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--tint);
  border-bottom: 1px solid var(--border);
}
.casino-block-head .rank-tile {
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}
.casino-block-head h3 { margin: 0; color: var(--navy); font-size: 1.25rem; }
.casino-block-head .head-logo { border-radius: 6px; margin-left: 0.25rem; }
.casino-block-head .topic-score { margin-left: auto; color: var(--navy); font-weight: 800; font-size: 1.1rem; white-space: nowrap; }
.casino-block-head .topic-score span { font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.casino-block-body { padding: 1.25rem; }
.badge-line { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 0.75rem; }

.score-bars { display: grid; gap: 0.45rem; margin: 1rem 0; max-width: 460px; }
.score-bar { display: grid; grid-template-columns: 130px 1fr 2.6rem; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--ink-2); }
.score-bar .bar { height: 8px; background: var(--tint); border-radius: 999px; position: relative; overflow: hidden; }
.score-bar .bar span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue-dark), var(--blue)); border-radius: 999px; display: block; }
.score-bar .val { font-weight: 700; text-align: right; color: var(--ink); }

/* game-count bars */
.count-bars { display: grid; gap: 0.55rem; margin: 1.25rem 0 1.5rem; max-width: 640px; }
.count-bar { display: grid; grid-template-columns: 118px 1fr 4.6rem; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-2); }
.count-bar .bar { height: 10px; background: var(--tint); border-radius: 999px; position: relative; overflow: hidden; }
.count-bar .bar span { position: absolute; inset: 0; background: linear-gradient(90deg, var(--blue-dark), var(--blue)); border-radius: 999px; display: block; }
.count-bar .val { font-weight: 700; text-align: right; color: var(--ink); }

/* use-case cards */
.uc-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin: 1.25rem 0 1.5rem; }
@media (min-width: 700px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
.uc-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  color: var(--ink-2);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.uc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.uc-card img { width: 44px; height: 44px; flex: none; }
.uc-card .uc-want { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.1rem; }
.uc-card strong { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 0.2rem; }
.uc-card p { margin: 0; font-size: 0.88rem; line-height: 1.5; }

.bonus-box {
  background: #fff6ec;
  border: 1px solid #ffdfc0;
  border-radius: var(--r);
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  font-size: 0.95rem;
}
.bonus-box .bonus-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.bonus-box .bonus-label::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: var(--accent-dark);
  -webkit-mask: url("/icons/gift-regular.svg") center / contain no-repeat;
  mask: url("/icons/gift-regular.svg") center / contain no-repeat;
}
.bonus-box strong { font-size: 1.05rem; color: var(--ink); }

.verdict-box {
  background: var(--navy);
  color: #dbe4ff;
  border-radius: var(--r);
  padding: 0.95rem 1.15rem;
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
}
.verdict-box strong { color: #ffffff; }
.block-links { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1rem; }

/* mini cards */
.mini-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0;
}
.mini-card-head { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.5rem; }
.mini-card-head .rank-tile { border: 1px solid var(--blue); border-radius: 6px; color: var(--blue-dark); font-weight: 800; padding: 0.15rem 0.5rem; font-size: 0.9rem; }
.mini-card-head h3 { margin: 0; font-size: 1.05rem; }
.mini-card-head .head-logo { border-radius: 6px; }
.mini-card-head .topic-score { margin-left: auto; font-weight: 800; color: var(--blue-dark); }
.mini-card p { font-size: 0.93rem; margin-bottom: 0.6rem; }
.mini-card .block-links { margin-top: 0.25rem; }
.mini-card .block-links .btn { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* steps */
.steps { counter-reset: step; margin: 1rem 0 1.5rem; padding: 0; list-style: none; }
.steps li { counter-increment: step; position: relative; padding: 0 0 1.1rem 3.1rem; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.1rem; height: 2.1rem;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.05rem - 1px);
  top: 2.3rem;
  bottom: 0.2rem;
  width: 2px;
  background: var(--tint);
}

/* criteria grid */
.criteria-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin: 1rem 0 1.5rem; }
@media (min-width: 700px) { .criteria-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .criteria-grid { grid-template-columns: 1fr 1fr 1fr; } }
.criteria-grid > div { background: var(--soft); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.1rem 1rem; }
.criteria-grid .crit-ico { width: 44px; height: 44px; display: block; margin-bottom: 0.6rem; }
.criteria-grid h3 { margin: 0 0 0.4rem; font-size: 0.98rem; color: var(--blue-dark); }
.criteria-grid p { font-size: 0.88rem; color: var(--ink-2); margin: 0; }

/* legal box */
.legal-box {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}
.legal-box h2 { display: flex; align-items: center; gap: 0.5rem; margin-top: 0; font-size: 1.2rem; }
.legal-box h2::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--blue-dark);
  -webkit-mask: url("/icons/scales-regular.svg") center / contain no-repeat;
  mask: url("/icons/scales-regular.svg") center / contain no-repeat;
}

/* FAQ accordion */
.faq-acc { margin: 1rem 0 1.5rem; }
.faq-acc details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.6rem;
}
.faq-acc details[open] { border-color: var(--blue); }
.faq-acc summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.85rem 1.1rem;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary::after { content: "+"; position: absolute; right: 1.1rem; top: 0.7rem; font-size: 1.2rem; font-weight: 700; color: var(--blue); }
.faq-acc details[open] summary::after { content: "-"; }
.faq-acc details p { padding: 0 1.1rem 0.9rem; margin: 0; font-size: 0.95rem; color: var(--ink-2); }

/* author card */
.author-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.4rem;
  margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 1.1rem;
}
.author-card::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / 4;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tint) url("/images/authors/jack-reardon-112.webp") center / cover no-repeat;
}
.author-card .author-name, .author-card .author-role, .author-card p { grid-column: 2; }
.author-card .author-name { font-weight: 800; font-size: 1.05rem; }
.author-card .author-name a { color: var(--ink); text-decoration: none; }
.author-card .author-name a:hover { color: var(--blue); }
.author-card .author-role { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; }
.author-card p { font-size: 0.93rem; margin: 0; color: var(--ink-2); }

/* ══ Author page ══════════════════════════════════════════ */

.author-hero {
  background:
    linear-gradient(100deg, rgba(8, 20, 62, 0.94) 30%, rgba(18, 51, 168, 0.8)),
    url("/images/hero-bg-all-pages.webp") center / cover no-repeat;
  background-color: var(--navy);
  color: #ffffff;
  padding: 3.5rem 1.25rem 5rem;
}
.author-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 760px) { .author-hero-inner { grid-template-columns: 1fr 260px; } }
@media (max-width: 759px) {
  .author-hero-text { text-align: center; }
  .author-hero-text p { margin-inline: auto; }
}
.author-hero h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); margin: 0 0 0.9rem; color: #ffffff; }
.author-hero p { color: #ccd8f6; font-size: 1.05rem; }
.portrait-frame { position: relative; width: 240px; justify-self: center; }
.portrait-frame > img:first-child {
  width: 240px;
  height: 240px;
  border-radius: 18px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(4, 12, 40, 0.55);
  position: relative;
  z-index: 1;
}
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #ff9d57);
  opacity: 0.9;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto auto -14px -14px;
  width: 90px;
  height: 90px;
  border-radius: 18px;
  border: 2px solid rgba(157, 183, 255, 0.5);
}
.portrait-badge {
  position: absolute;
  z-index: 2;
  right: -16px;
  bottom: -10px;
  width: 44px;
  height: 49px;
  filter: drop-shadow(0 4px 10px rgba(4, 12, 40, 0.5));
}

.a-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: -4rem 0 2.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 760px) { .a-stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 759px) { .a-stat:last-child { grid-column: 1 / -1; } }
.a-stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem 1rem;
  text-align: center;
}
.a-stat strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1.1; color: var(--blue); }
.a-stat span { font-size: 0.8rem; color: var(--muted); }

.author-content section { margin-top: 2.75rem; }
.author-content p { font-size: 1.03rem; line-height: 1.7; }
.author-content section > h2 { margin-top: 0; }

.about-grid { display: grid; gap: 1.75rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.about-grid .callout-card { margin: 0; }
.task-list { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.task-list li {
  position: relative;
  padding: 0 0 0.85rem 2.1rem;
  font-size: 1.03rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.task-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.3rem;
  height: 1.3rem;
  background: var(--blue);
  -webkit-mask: url("/icons/check-bold.svg") center / contain no-repeat;
  mask: url("/icons/check-bold.svg") center / contain no-repeat;
}
.callout-card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem 1.4rem 1.5rem;
  margin: 1.25rem 0;
}
.callout-card h3 { display: flex; align-items: center; gap: 0.55rem; margin: 0 0 0.7rem; color: var(--blue-dark); font-size: 1.08rem; line-height: 1.35; }
.callout-card p { margin: 0; font-size: 0.98rem; }
.callout-card .task-list { margin: 0.9rem 0; }
.callout-card .task-list li { font-size: 0.95rem; padding-bottom: 0.7rem; }
.callout-warn { background: var(--warn-bg); border-color: var(--warn-border); }
.callout-warn h3 { color: #a32626; }
.callout-ico-scales {
  display: inline-block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  background: var(--blue-dark);
  -webkit-mask: url("/icons/scales-regular.svg") center / contain no-repeat;
  mask: url("/icons/scales-regular.svg") center / contain no-repeat;
}

.method-list { list-style: none; counter-reset: method; margin: 1.5rem 0 0.5rem; padding: 0; }
.method-list li {
  counter-increment: method;
  position: relative;
  padding: 0 0 1.9rem 3.6rem;
}
.method-list li::before {
  content: counter(method);
  position: absolute;
  left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  background: var(--blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(1.2rem - 1px);
  top: 2.7rem;
  bottom: 0.3rem;
  width: 2px;
  background: var(--tint);
}
.method-list h3 { margin: 0 0 0.4rem; padding-top: 0.35rem; color: var(--blue-dark); font-size: 1.12rem; }
.method-list p { margin: 0; max-width: 66ch; }

.cover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.25rem 0 0.5rem; }
@media (min-width: 700px) { .cover-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .cover-grid { grid-template-columns: repeat(5, 1fr); } }
.cover-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem 0.7rem 1rem;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.cover-grid a img { width: 48px; height: 48px; }
.cover-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue); color: var(--blue-dark); }

.correct-band {
  background: linear-gradient(120deg, var(--navy), var(--blue-dark));
  border-radius: var(--r);
  box-shadow: var(--shadow);
  color: #ccd8f6;
  padding: 1.9rem 1.75rem;
  margin-top: 3rem;
  text-align: center;
}
.correct-band h2 { color: #ffffff; margin-top: 0; }
.correct-band p { margin-inline: auto; max-width: 54ch; }
.correct-band a:not(.btn) { color: #ffffff; }
.correct-band .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem; margin-top: 0.25rem; }
.correct-band .btn img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.band-note { font-size: 0.88rem; color: #9db7ff; margin: 1.1rem auto 0; }

/* ── Reviews hub ─────────────────────────────────────────── */
.mico-warning { -webkit-mask-image: url("/icons/warning-regular.svg"); mask-image: url("/icons/warning-regular.svg"); }

.rh-method-bar { background: var(--tint); border-bottom: 1px solid var(--border); }
.rh-method-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.9rem;
}
.rh-method-pill { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; font-weight: 600; color: var(--blue-dark); }
.rh-method-pill .mico { width: 17px; height: 17px; }

.rh-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin: 1.8rem 0 0.2rem; }
.rh-filter-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-2); margin-right: 0.3rem; }
.rh-filter-btn {
  font-family: inherit;
  cursor: pointer;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.42rem 1.05rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.rh-filter-btn:hover, .rh-filter-btn.active { background: var(--tint); border-color: var(--blue); color: var(--blue-dark); }

.rh-grid { display: grid; gap: 1.1rem; margin: 1.5rem 0 0.5rem; }
.rh-card {
  position: relative;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr) auto;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.rh-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue); }
.rh-card.rh-hidden { display: none; }
.rh-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(11, 31, 92, 0.35);
}
.rh-top3 .rh-rank { background: var(--accent); }
.rh-shot { position: relative; min-height: 158px; background: var(--soft); border-right: 1px solid var(--border); }
.rh-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.rh-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(255, 255, 255, 0.85) 100%); }
.rh-body { padding: 1.05rem 1.3rem 1.1rem; }
.rh-top { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem 0.7rem; margin-bottom: 0.5rem; }
.rh-top img { width: 88px; height: 33px; border-radius: 6px; }
.rh-top h3 { margin: 0; font-size: 1.16rem; }
.rh-top h3 a { color: var(--ink); text-decoration: none; }
.rh-top h3 a:hover { color: var(--blue); }
.rh-badge {
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--tint);
  color: var(--blue-dark);
  border: 1px solid #c9d9ff;
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
.rh-tagline { margin: 0 0 0.85rem; font-size: 0.94rem; color: var(--ink-2); }
.rh-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.7rem; }
.rh-fact strong { display: block; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); opacity: 0.75; }
.rh-fact span { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink); margin-top: 0.1rem; }
.rh-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.4rem;
  border-left: 1px solid var(--border);
  min-width: 168px;
  text-align: center;
}
.rh-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background: var(--tint);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rh-ring strong { font-size: 1.25rem; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.rh-ring span { font-size: 0.62rem; color: var(--ink-2); }
.rh-score .btn { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.rh-review-link { font-size: 0.85rem; font-weight: 600; }

.rh-meth-grid { display: grid; gap: 1rem; margin-top: 1.4rem; }
@media (min-width: 760px) { .rh-meth-grid { grid-template-columns: 1fr 1fr; } }
.rh-meth-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); }
.rh-meth-card .mico { width: 26px; height: 26px; }
.rh-meth-card h3 { margin: 0.6rem 0 0.45rem; font-size: 1.05rem; color: var(--blue-dark); }
.rh-meth-card p { margin: 0; font-size: 0.95rem; }

@media (max-width: 900px) {
  .rh-card { grid-template-columns: 1fr; }
  .rh-shot { min-height: 0; height: 150px; border-right: none; border-bottom: 1px solid var(--border); }
  .rh-shot::after { background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.85) 100%); }
  .rh-score {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 0.9rem 1.3rem;
    min-width: 0;
  }
  .rh-score .rh-review-link { margin-left: auto; }
}

/* ── Law hub ─────────────────────────────────────────────── */
.law-strip { background: var(--tint); border-bottom: 1px solid var(--border); }
.law-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
}
.law-strip a {
  flex: 1 1 0;
  min-width: 168px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.law-strip a img { width: 34px; height: 34px; flex: none; }
.law-strip a:hover { border-color: var(--blue); color: var(--blue-dark); box-shadow: var(--shadow-sm); transform: translateY(-1px); }

.law-timeline { list-style: none; display: flex; margin: 1.4rem 0 1.6rem; padding: 0; overflow-x: auto; }
.law-timeline li { flex: 1 0 128px; position: relative; padding: 1.45rem 0.9rem 0 0; }
.law-timeline li::before { content: ""; position: absolute; top: 7px; left: 0; width: 100%; height: 3px; background: var(--tint); }
.law-timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--blue);
}
.law-timeline li:last-child::after { background: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.law-timeline strong { display: block; font-size: 1.02rem; font-weight: 800; color: var(--blue-dark); }
.law-timeline span { display: block; font-size: 0.84rem; color: var(--ink-2); margin-top: 0.2rem; }

.law-stats { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin: 1.3rem 0 1.5rem; }
@media (min-width: 700px) { .law-stats { grid-template-columns: 1fr 1fr; } }
.law-stat { background: var(--soft); border: 1px solid var(--border); border-radius: var(--r); padding: 1.05rem 1.2rem; }
.law-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--blue-dark); line-height: 1.15; }
.law-stat span { font-size: 0.88rem; color: var(--ink-2); }

.law-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.55rem; margin: 1.3rem 0 1.5rem; }
.lf-step {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.lf-step .mico { width: 24px; height: 24px; }
.lf-arrow { align-self: center; flex: none; }
.lf-arrow img { width: 18px; height: 18px; display: block; opacity: 0.45; }
@media (max-width: 700px) {
  .law-flow { flex-direction: column; }
  .lf-arrow img { transform: rotate(90deg); margin: 0 auto; }
}

/* ── Small screens: tighter rhythm ──────────────────────── */
@media (max-width: 700px) {
  .hero { padding: 2.25rem 0 2.5rem; }
  .author-hero { padding: 2.5rem 1.25rem 4.5rem; }
  h2 { margin-top: 2rem; }
  .facts-table { font-size: 0.875rem; }
  .facts-table th, .facts-table td { padding: 0.5rem 0.65rem; }
  .facts-table th { white-space: normal; width: 34%; }
  .rich-table th { width: auto; white-space: nowrap; }
  .btn { padding: 0.65rem 1.35rem; font-size: 0.95rem; }
  .casino-block-body, .mini-card { padding: 1rem 1.1rem; }
  .casino-block-head { padding: 0.8rem 1.1rem; }
  .cta-box, .correct-band { padding: 1.4rem 1.2rem; }
  .score-bar { grid-template-columns: 104px 1fr 2.4rem; }
  .steps li { padding-left: 2.9rem; }
  .a-stat strong { font-size: 1.6rem; }
  .method-list li { padding-left: 3.1rem; }
  .correct-band .btn { width: 100%; }
}
