/* ==========================================================================
   America's Bookies - shared stylesheet
   Palette: ink #10192B / paper #EFEDE3 / turf #2F6F4E / gold #C99A3B
   Type: Barlow Condensed (display) + Public Sans (body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #10192B;
  --ink-soft: #1B2740;
  --paper: #EFEDE3;
  --paper-raised: #F8F7F1;
  --turf: #2F6F4E;
  --turf-dark: #234F39;
  --gold: #C99A3B;
  --gold-bright: #E0B24E;
  --charcoal: #1C2024;
  --line: #D8D3C2;
  --line-dark: #2A3550;
  --red-flag: #A83A32;

  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1180px;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--turf-dark); text-decoration-color: rgba(47,111,78,0.35); }
a:hover { text-decoration-color: var(--turf-dark); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: 0.2px;
}
h1 { font-weight: 800; }

p { max-width: 72ch; }
.wide p { max-width: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Skip link / focus ---------- */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--gold); color: var(--ink); padding: 10px 16px;
  z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--ink);
  color: #EDEBDD;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { height: 40px; width: auto; }
.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  color: #F5F3EA;
  letter-spacing: 0.3px;
  line-height: 1;
}
.brand-word span { color: var(--gold-bright); }
.brand-tag {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  color: #9AA6C2;
  letter-spacing: 1.2px;
  margin-top: 2px;
}

nav.primary-nav { display: flex; align-items: center; }
nav.primary-nav ul {
  list-style: none; display: flex; gap: 26px; margin: 0; padding: 0;
}
nav.primary-nav a {
  color: #D9D6C7;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
nav.primary-nav a:hover, nav.primary-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--gold);
}
.nav-toggle { display: none; }

.header-cta {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-bright); }

@media (max-width: 900px) {
  nav.primary-nav ul { gap: 16px; }
  .brand-tag { display: none; }
}
@media (max-width: 760px) {
  nav.primary-nav { display: none; }
  .header-cta { padding: 8px 12px; font-size: 0.82rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #EDEBDD;
  padding: 56px 0 64px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.hero-eyebrow {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: #F7F5EA;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  max-width: 14ch;
}
.hero-lede {
  color: #C7CBDB;
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 18px 0 26px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 3px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline { border: 1.5px solid #4A567A; color: #EDEBDD; }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.hero-panel {
  background: var(--paper-raised);
  border-radius: 6px;
  padding: 22px 22px 10px;
  color: var(--charcoal);
}
.hero-panel h2 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.hero-panel .panel-sub {
  font-size: 0.85rem;
  color: #5B5646;
  margin-bottom: 14px;
}
.snap-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.snap-row:first-of-type { border-top: none; }
.snap-rank {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--turf);
  width: 22px;
}
.snap-name { font-weight: 700; flex: 1; font-size: 0.95rem; }
.snap-rating {
  font-family: var(--display);
  font-weight: 700;
  color: var(--gold-bright);
  background: var(--ink);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* ---------- Sections ---------- */
section { padding: 58px 0; }
section.tight { padding: 40px 0; }
.section-head { max-width: 66ch; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.section-head p { color: #4A4638; font-size: 1.05rem; }

.alt-band { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ink-band { background: var(--ink); color: #D9D6C7; }
.ink-band h2, .ink-band h3 { color: #F5F3EA; }
.ink-band a { color: var(--gold-bright); }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--paper-raised);
  font-size: 0.95rem;
}
table.compare th, table.compare td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  background: var(--ink);
  color: #EDEBDD;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare tbody tr:hover { background: #F1EFE2; }
table.compare td.rank {
  font-family: var(--display);
  font-weight: 800;
  color: var(--turf);
  font-size: 1.15rem;
}
table.compare td.rating { font-weight: 700; color: var(--turf-dark); }
.mini-link { font-weight: 700; font-size: 0.88rem; }

/* ---------- Card grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero .wrap { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: 0.96rem; color: #454133; }
.card .card-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--turf-dark);
  margin-bottom: 8px;
}

.guide-list { border-top: 1px solid var(--line); }
.guide-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.guide-row .g-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  width: 40px;
  flex-shrink: 0;
}
.guide-row h3 { font-size: 1.15rem; margin-bottom: 4px; }
.guide-row p { font-size: 0.94rem; color: #4A4638; margin: 0; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--turf); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin-top: 10px; color: #454133; }

/* ---------- Rating stars ---------- */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 1px; }

/* ---------- Pull quote / callout ---------- */
.callout {
  border-left: 4px solid var(--turf);
  background: var(--paper-raised);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
}
.callout p { margin: 0; font-weight: 600; color: var(--ink); }

.warn {
  border-left: 4px solid var(--red-flag);
  background: #F7EFE9;
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #A8ADC2;
  padding: 50px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h4 {
  color: #E7E4D5;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #A8ADC2; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand p { color: #8B90A6; font-size: 0.88rem; max-width: 40ch; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #767B92;
}
.footer-legal {
  font-size: 0.78rem;
  color: #6E7389;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 90ch;
}
.responsible-strip {
  background: var(--ink-soft);
  border-top: 1px solid var(--line-dark);
  padding: 14px 0;
  font-size: 0.82rem;
  color: #9AA0B8;
  text-align: center;
}
.responsible-strip strong { color: var(--gold-bright); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.85rem; color: #6E6A58; margin-bottom: 18px; }
.crumbs a { color: #6E6A58; }

/* ---------- TOC ---------- */
.toc {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 24px 0 36px;
}
.toc h2 { font-size: 1rem; margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 20px; columns: 2; font-size: 0.92rem; }
@media (max-width: 700px) { .toc ol { columns: 1; } }

/* ---------- Review page header ---------- */
.review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 8px;
}
.review-score {
  background: var(--ink);
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  padding: 14px 20px;
  border-radius: 6px;
  text-align: center;
  line-height: 1;
}
.review-score span { display: block; font-size: 0.6rem; color: #B9BEDA; font-weight: 600; margin-top: 4px; font-family: var(--body); letter-spacing: 1px; }
@media (max-width: 700px) { .review-head { grid-template-columns: 1fr; text-align: center; } }


/* ==========================================================================
   2026 visual refresh - premium editorial sportsbook design
   ========================================================================== */

:root {
  --ink: #0B1220;
  --ink-soft: #152238;
  --paper: #F4F1E8;
  --paper-raised: #FFFDF8;
  --turf: #237B57;
  --turf-dark: #185C42;
  --gold: #D3A13D;
  --gold-bright: #F0C35F;
  --charcoal: #20252D;
  --line: #DED8C8;
  --line-dark: #2C3952;
  --red-flag: #A23D34;
  --shadow-sm: 0 8px 24px rgba(11, 18, 32, 0.07);
  --shadow-md: 0 16px 42px rgba(11, 18, 32, 0.12);
  --shadow-lg: 0 28px 72px rgba(11, 18, 32, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

html { background: var(--ink); }
body {
  background:
    radial-gradient(circle at 12% 3%, rgba(211,161,61,.08), transparent 26rem),
    radial-gradient(circle at 92% 24%, rgba(35,123,87,.07), transparent 30rem),
    var(--paper);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -0.003em;
}

::selection { background: rgba(211,161,61,.28); color: var(--ink); }

h1, h2, h3, h4 { text-wrap: balance; }
h1 { letter-spacing: -0.025em; }
h2 { letter-spacing: -0.012em; }
p, li { text-wrap: pretty; }

.wrap { padding-left: clamp(20px, 4vw, 34px); padding-right: clamp(20px, 4vw, 34px); }

/* Header becomes a polished, translucent navigation bar. */
.site-header {
  background: rgba(11,18,32,.94);
  border-bottom: 1px solid rgba(240,195,95,.5);
  box-shadow: 0 8px 30px rgba(5, 9, 17, .18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header .wrap { min-height: 76px; padding-top: 12px; padding-bottom: 12px; }
.brand { gap: 13px; }
.brand svg {
  width: 43px; height: 43px;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.2));
}
.brand-word { font-size: 1.65rem; letter-spacing: -.2px; }
.brand-tag { color: #AAB4C9; letter-spacing: 1.35px; }
nav.primary-nav ul { gap: clamp(14px, 2.1vw, 28px); }
nav.primary-nav a {
  position: relative;
  padding: 9px 0 8px;
  border-bottom: 0;
  transition: color .18s ease;
}
nav.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
nav.primary-nav a:hover::after,
nav.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta, .btn {
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.header-cta:hover, .btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.17); }
.header-cta { padding: 10px 18px; }

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(211,161,61,.19), transparent 25rem),
    radial-gradient(circle at 15% 80%, rgba(35,123,87,.20), transparent 30rem),
    linear-gradient(135deg, #0B1220 0%, #14223A 56%, #102B27 100%);
  padding: clamp(60px, 8vw, 100px) 0 clamp(68px, 9vw, 112px);
}
.hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border: 1px solid rgba(240,195,95,.12);
  border-radius: 50%;
  right: -170px; top: -250px;
  box-shadow: 0 0 0 70px rgba(240,195,95,.035), 0 0 0 140px rgba(240,195,95,.018);
  pointer-events: none;
}
.hero .wrap { gap: clamp(38px, 6vw, 76px); align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(240,195,95,.35);
  border-radius: 999px;
  background: rgba(240,195,95,.08);
  letter-spacing: .03em;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(240,195,95,.13); }
.hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.85rem); line-height: .95; max-width: 12ch; }
.hero-lede { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: #D1D7E3; }
.hero-actions { margin-top: 30px; }
.btn { padding: 14px 23px; }
.btn-gold { background: linear-gradient(180deg, #E8B94F 0%, #C99532 100%); }
.btn-gold:hover { background: linear-gradient(180deg, #F3C965 0%, #D7A744 100%); }
.btn-outline { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.24); }

.hero-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-lg);
  padding: 28px 28px 16px;
  background: linear-gradient(180deg, rgba(255,253,248,.99), rgba(247,243,232,.98));
  box-shadow: var(--shadow-lg);
}
.hero-panel::before {
  content: 'MARKET SNAPSHOT';
  position: absolute;
  top: -13px; right: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--turf-dark);
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.hero-panel h2 { font-size: 1.35rem; }
.snap-row { padding: 13px 0; }
.snap-rank { color: var(--gold); }
.snap-rating { border-radius: 999px; padding: 4px 9px; }

/* Page intros and editorial article rhythm */
main > section.tight:first-child {
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(35,123,87,.045), rgba(211,161,61,.045));
  border-bottom: 1px solid rgba(222,216,200,.8);
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 52px);
}
main > section.tight:first-child h1:not(.review-head h1) {
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  max-width: 18ch;
  margin-bottom: 14px;
}
main > section.tight:first-child .wrap > p:not(.crumbs) { font-size: 1.08rem; color: #4D4A42; }
.crumbs { margin-bottom: 22px; color: #766F60; }
.crumbs a { text-decoration: none; border-bottom: 1px solid rgba(118,111,96,.3); }

section { padding-top: clamp(50px, 6vw, 74px); padding-bottom: clamp(50px, 6vw, 74px); }
section.tight { padding-top: clamp(34px, 4.5vw, 52px); padding-bottom: clamp(34px, 4.5vw, 52px); }
.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.section-head p { color: #555044; }
.alt-band { background: rgba(255,253,248,.72); }
.ink-band {
  background:
    radial-gradient(circle at 90% 20%, rgba(211,161,61,.12), transparent 25rem),
    linear-gradient(135deg, #0B1220, #152238);
}

/* Cards and guide rows */
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 26px;
  border-color: rgba(210,202,183,.9);
  background: rgba(255,253,248,.91);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--turf));
  opacity: .85;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #CFC5AF; }
.card h3 { font-size: 1.32rem; }
.card a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.card .card-meta { letter-spacing: .07em; }

.guide-list { border-top: 0; display: grid; gap: 12px; }
.guide-row {
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,248,.78);
  box-shadow: 0 5px 18px rgba(11,18,32,.035);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.guide-row:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); border-color: #CFC4AE; }
.guide-row .g-num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #F3E8CD;
  color: #9A6E18;
  font-size: 1.15rem;
}
.guide-row h3 { font-size: 1.22rem; }

/* Tables */
.table-scroll {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-color: #D5CCB8;
  background: var(--paper-raised);
}
table.compare thead th { background: linear-gradient(180deg, #152238, #0B1220); padding-top: 15px; padding-bottom: 15px; }
table.compare th, table.compare td { padding: 15px 17px; }
table.compare tbody tr { transition: background .15s ease; }
table.compare tbody tr:nth-child(even) { background: rgba(244,241,232,.55); }
table.compare tbody tr:hover { background: #EFE6CF; }
table.compare td.rank { color: #9A6E18; }
.mini-link { text-underline-offset: 4px; text-decoration-thickness: 1px; }

/* Review cards */
.review-head {
  grid-template-columns: auto minmax(0, 1fr) auto;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 34px);
  border-color: #D7CEBA;
  background:
    radial-gradient(circle at 85% 10%, rgba(211,161,61,.13), transparent 16rem),
    linear-gradient(135deg, #FFFDF8, #F8F3E7);
  box-shadow: var(--shadow-md);
}
.review-score {
  min-width: 104px;
  padding: 18px 17px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #172640, #09101C);
  box-shadow: inset 0 0 0 1px rgba(240,195,95,.22), 0 10px 25px rgba(11,18,32,.16);
  font-size: 2.55rem;
}
.review-score span { margin-top: 7px; }
.review-head h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
.stars { margin: 0; letter-spacing: 2px; text-shadow: 0 1px 0 rgba(0,0,0,.08); }

/* Long-form article readability */
.toc {
  border-radius: var(--radius-md);
  padding: 22px 25px;
  border-color: #D6CDB9;
  background: linear-gradient(180deg, #FFFDF8, #FAF7EE);
  box-shadow: var(--shadow-sm);
}
.toc h2 { letter-spacing: .04em; text-transform: uppercase; font-size: .86rem; color: #6C6049; }
.toc ol { line-height: 1.8; }
.toc a { text-underline-offset: 3px; }

section.tight .wrap > h2[id] {
  position: relative;
  margin-top: 2.8rem;
  margin-bottom: .95rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(222,216,200,.9);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  scroll-margin-top: 105px;
}
section.tight .wrap > h2[id]::before {
  content: '';
  position: absolute;
  left: 0; top: -2px;
  width: 54px; height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--turf));
}
section.tight .wrap > p { color: #353A40; }
section.tight .wrap > ul, section.tight .wrap > ol { max-width: 74ch; }
section.tight .wrap > ul li, section.tight .wrap > ol li { margin-bottom: .45em; }

.callout, .warn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 7px 22px rgba(11,18,32,.05);
}
.callout { background: linear-gradient(90deg, rgba(35,123,87,.08), rgba(255,253,248,.96) 24%); padding: 20px 24px; }
.warn { background: linear-gradient(90deg, rgba(162,61,52,.09), #FCF7F1 24%); }

/* FAQs */
.faq-item {
  margin: 10px 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,253,248,.82);
  overflow: hidden;
}
.faq-item summary { padding: 17px 20px; font-size: 1.2rem; }
.faq-item summary::after {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(35,123,87,.10);
  font-family: var(--body);
  font-size: 1.1rem;
}
.faq-item[open] summary { background: rgba(35,123,87,.045); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 20px 19px; margin: 0; }

/* Footer */
footer.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(35,123,87,.12), transparent 26rem),
    #0B1220;
  padding-top: 58px;
}
.footer-grid { gap: 40px; }
.footer-grid h4 { letter-spacing: .035em; text-transform: uppercase; font-size: .82rem; }
.footer-grid a { transition: color .16s ease; }
.footer-bottom { padding-top: 24px; }
.responsible-strip { background: #101B2E; padding: 16px 0; }

/* Better mobile layout - keep navigation visible instead of hiding it. */
@media (max-width: 760px) {
  .site-header { position: relative; }
  .site-header .wrap { flex-wrap: wrap; gap: 10px 14px; min-height: auto; }
  .brand { flex: 1 1 auto; min-width: 210px; }
  .brand-word { font-size: 1.42rem; }
  .brand svg { width: 38px; height: 38px; }
  .header-cta { order: 2; margin-left: auto; }
  nav.primary-nav {
    display: block;
    order: 3;
    flex: 1 0 100%;
    overflow-x: auto;
    margin: 4px -4px -2px;
    scrollbar-width: none;
  }
  nav.primary-nav::-webkit-scrollbar { display: none; }
  nav.primary-nav ul { gap: 6px; min-width: max-content; }
  nav.primary-nav a {
    display: block;
    padding: 8px 10px 10px;
    border-radius: 8px;
    font-size: .88rem;
  }
  nav.primary-nav a:hover, nav.primary-nav a[aria-current="page"] { background: rgba(255,255,255,.055); }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-panel { padding: 24px 20px 14px; }
  .review-head { grid-template-columns: 1fr; text-align: left; }
  .review-score { width: max-content; min-width: 92px; }
  .review-head .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .guide-row { align-items: flex-start; padding: 18px; }
  .guide-row .g-num { width: 40px; height: 40px; flex: 0 0 40px; }
  section.tight .wrap > h2[id] { scroll-margin-top: 22px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .header-cta { font-size: .77rem; padding: 8px 11px; }
  .brand-tag { display: none; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .review-head { padding: 22px 18px; }
  .card { padding: 22px; }
  table.compare th, table.compare td { padding: 12px 13px; }
}


.article-content > .wrap {
  max-width: 980px;
}
.article-content .toc { max-width: 940px; }
.article-content > .wrap > p,
.article-content > .wrap > ul,
.article-content > .wrap > ol { max-width: 76ch; }

/* ========================================================================== 
   Illustrated guide layout - How Sports Betting Works
   ========================================================================== */
.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin: 8px 0 32px;
}
.guide-hero-copy { min-width: 0; }
.article-kicker {
  display: inline-flex;
  margin: 0 0 14px !important;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(35,123,87,.09);
  color: var(--turf-dark) !important;
  font-size: .76rem !important;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-content .guide-hero h1 {
  font-size: clamp(2.65rem, 5.4vw, 4.8rem) !important;
  line-height: .96;
  max-width: 12ch !important;
  margin-bottom: 18px !important;
}
.article-dek {
  max-width: 49ch !important;
  margin: 0 0 20px;
  color: #4B4A44 !important;
  font-size: clamp(1.05rem, 1.55vw, 1.18rem) !important;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #696456;
  font-size: .8rem;
  font-weight: 650;
}
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-meta span:not(:first-child)::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.guide-hero-media,
.editorial-figure {
  margin: 0;
}
.guide-hero-media {
  position: relative;
  padding: 8px;
  border-radius: 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(208,198,177,.9);
  box-shadow: 0 24px 62px rgba(11,18,32,.18);
}
.guide-hero-media picture,
.editorial-figure picture {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  background: #DAD5C7;
}
.guide-hero-media img,
.editorial-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.guide-hero-media figcaption,
.editorial-figure figcaption {
  margin: 9px 7px 2px;
  color: #6A6558;
  font-size: .76rem;
  line-height: 1.45;
}
.betting-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 28px;
  border: 1px solid #D7CFBC;
  border-radius: 15px;
  background: #D7CFBC;
  box-shadow: 0 10px 28px rgba(11,18,32,.055);
}
.betting-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 3px 10px;
  align-content: start;
  padding: 17px 18px 18px;
  background: rgba(255,253,248,.98);
}
.flow-num {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 31px; height: 31px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
}
.betting-flow-step strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
}
.betting-flow-step > span:last-child {
  color: #625E54;
  font-size: .78rem;
  line-height: 1.4;
}
.editorial-figure {
  width: min(100%, 900px);
  margin: 30px 0 38px;
  padding: 7px;
  border-radius: 18px;
  border: 1px solid #D8D0BD;
  background: rgba(255,253,248,.9);
  box-shadow: 0 14px 38px rgba(11,18,32,.09);
}
.editorial-figure picture { border-radius: 12px; }
.editorial-figure figcaption { margin: 9px 7px 3px; }
.mistake-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 34px;
  padding: 0 !important;
  list-style: none;
}
.mistake-list li {
  position: relative;
  margin: 0 !important;
  padding: 18px 19px 18px 47px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,253,248,.86);
  box-shadow: 0 5px 18px rgba(11,18,32,.035);
}
.mistake-list li::before {
  content: '!';
  position: absolute;
  left: 17px; top: 18px;
  display: grid;
  place-items: center;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: rgba(211,161,61,.18);
  color: #8B6218;
  font-weight: 900;
  font-size: .76rem;
}

@media (max-width: 900px) {
  .guide-hero { grid-template-columns: 1fr; }
  .guide-hero-media { max-width: 820px; }
  .betting-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .article-content .guide-hero h1 { font-size: clamp(2.5rem, 13vw, 3.55rem) !important; }
  .article-meta { gap: 6px 12px; }
  .article-meta span:nth-child(3) { flex-basis: 100%; }
  .betting-flow { grid-template-columns: 1fr; }
  .betting-flow-step { padding: 14px 15px; }
  .mistake-list { grid-template-columns: 1fr; }
  .guide-hero-media,
  .editorial-figure { border-radius: 14px; padding: 5px; }
  .guide-hero-media picture,
  .editorial-figure picture { border-radius: 10px; }
  .guide-hero-media figcaption,
  .editorial-figure figcaption { font-size: .72rem; }
}


/* ========================================================================== 
   Insights hub + article templates
   ========================================================================== */
.hero-insights .hero-panel .snap-name { font-size: .94rem; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.insights-grid.compact { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.insight-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,253,248,.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.insight-card.compact { border-radius: 14px; }
.insight-card-media { display: block; }
.insight-card-media picture,
.insight-card-media img { display: block; width: 100%; }
.insight-card-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}
.insight-card:hover .insight-card-media img { transform: scale(1.02); }
.insight-card-body { padding: 22px 22px 24px; }
.insight-card-body h2,
.insight-card-body h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); margin-bottom: 10px; }
.insight-card.compact .insight-card-body { padding: 18px; }
.insight-card.compact .insight-card-body h3 { font-size: 1.12rem; }
.insight-meta {
  display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: .82rem; font-weight: 700; color: #6A6558; margin-top: 14px;
}
.insight-meta span { display:inline-flex; align-items:center; gap:8px; }
.insight-meta span + span::before {
  content:''; width:4px; height:4px; border-radius:50%; background: var(--gold); display:inline-block; margin-right:8px;
}
.insight-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin: 8px 0 34px;
}
.insight-highlight {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,253,248,.92);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.insight-highlight h3 { font-size: 1.08rem; margin-bottom: 8px; }
.insight-highlight p { font-size: .92rem; color: #4A4638; margin: 0; }
.article-prose > p:first-of-type {
  font-size: 1.13rem;
  color: #433f33;
}
.article-prose h2 { margin-top: 1.9em; font-size: clamp(1.6rem, 2.8vw, 2.2rem); scroll-margin-top: 92px; }
.related-insights { margin-top: 50px; padding-top: 10px; }
@media (max-width: 900px) {
  .insights-grid,
  .insights-grid.compact,
  .insight-highlights { grid-template-columns: 1fr; }
}


/* Legal and transparency pages */
.legal-hero {
  padding: 54px 0 34px;
  background: linear-gradient(180deg, rgba(11,18,32,.035), rgba(11,18,32,0));
  border-bottom: 1px solid var(--line);
}
.legal-hero .wrap { max-width: 1040px; }
.legal-hero h1 { font-size: clamp(2.55rem, 5vw, 4.35rem); max-width: 16ch; margin-bottom: 10px; }
.legal-updated { margin: 0; color: #6A6558; font-size: .86rem; font-weight: 650; }
.legal-review-note {
  margin: 24px 0 0;
  padding: 15px 18px;
  border: 1px solid #DFC985;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: #FFF8E6;
  color: #51462B;
  font-size: .9rem;
  line-height: 1.55;
  max-width: 82ch;
}
.legal-layout {
  max-width: 1040px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,253,248,.92);
  box-shadow: var(--shadow-sm);
}
.legal-toc > a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 8px 4px;
  border-top: 1px solid rgba(222,216,200,.7);
  text-decoration: none;
  font-size: .79rem;
  line-height: 1.35;
  color: #4A4638;
}
.legal-toc > a:first-of-type { border-top: 0; }
.legal-toc > a:hover { color: var(--turf-dark); }
.legal-toc > a span { color: var(--gold); font-family: var(--display); font-weight: 800; }
.legal-document { min-width: 0; }
.legal-section {
  padding: 0 0 30px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 104px;
}
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); margin-bottom: 18px; }
.legal-section h2 span { color: var(--gold); }
.legal-section p, .legal-section li { max-width: 76ch; font-size: .97rem; }
.legal-section p { margin: 0 0 16px; }
.legal-list, .legal-alpha { padding-left: 24px; margin: 0 0 18px; }
.legal-list li, .legal-alpha li { margin: 7px 0; }
.legal-alpha { list-style-type: lower-alpha; }
.legal-placeholder {
  display: inline;
  background: #FFF0C7;
  color: #74510F;
  border-radius: 4px;
  padding: 2px 5px;
  font-weight: 750;
}
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0 0 20px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-legal-nav a {
  color: #C0C5D4;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 650;
}
.footer-legal-nav a:hover { color: var(--gold-bright); }
@media (max-width: 760px) {
  .legal-hero { padding-top: 36px; }
  .legal-layout { grid-template-columns: 1fr; gap: 26px; }
  .legal-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .legal-toc .card-meta { grid-column: 1 / -1; }
  .footer-legal-nav { gap: 10px 14px; }
}
@media (max-width: 520px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-review-note { padding: 14px; }
  .footer-legal-nav { display: grid; grid-template-columns: 1fr 1fr; }
}
