﻿:root {
  /* Spiele / observer.eumon.org tokens */
  --ink: #16181c;
  --ink-soft: #1f2228;
  --ink-line: #2a2d33;
  --ink-2: #1f2228;
  --bone: #ebebee;
  --bone-soft: #d8d8dc;
  --bone-line: #c4c4ca;
  --paper: #f5f5f7;
  --muted: #6b6f78;
  --line: #c4c4ca;
  --white: #fff;
  --gold: #f0c34a;
  --gold-deep: #d6a72f;
  --gold-soft: #fbe7a8;
  --wine: #dd0000;
  --wine-soft: #ff3333;
  --signal: #46cc77;

  /* Mapped aliases used across the prototype */
  --band-dark: #16181c;
  --band-dark-2: #1f2228;
  --band-white: #ffffff;
  --band-mint: #ebebee;
  --band-slate: #f5f5f7;
  --band-navy: #16181c;
  --pitch: #dd0000;
  --pitch-soft: #fde8e8;
  --accent: #dd0000;
  --accent-soft: #fde8e8;
  --claim: #dd0000;
  --claim-hover: #b00000;
  --ok: #46cc77;
  --live: #dd0000;
  --shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --radius-sm: 4px;
  --font: Arial, Helvetica, sans-serif;
  --font-display: Arial, Helvetica, sans-serif;
  --font-mono: Arial, Helvetica, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink);
  padding: 8px 12px; font-weight: 700; border-radius: 4px;
}
.skip-link:focus { left: 10px; top: 10px; }

img { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

.compliance {
  background: #0e0f12;
  color: #93989f;
  font-size: 0.7rem;
  padding: 7px 0;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.compliance .container {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  justify-content: space-between; align-items: center;
}
.compliance strong { color: var(--bone); }
.compliance a { color: var(--gold); text-decoration: underline; }

.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  position: sticky; top: 0; z-index: 40;
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  min-height: 64px;
  position: relative;
}
.logo {
  display: flex; align-items: baseline; gap: 6px;
  color: var(--bone); text-decoration: none; font-weight: 700;
  letter-spacing: -0.02em; font-size: 1.25rem; flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--bone); }
.logo-mark {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  align-self: center;
  transform: translateY(-2px);
  box-shadow: none;
  font-size: 0;
  color: transparent;
}
.nav {
  display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap;
  align-items: center;
}
.nav a {
  color: #c8cad0; text-decoration: none;
  padding: 0; border-radius: 0; font-weight: 500; font-size: 0.92rem;
  background: transparent;
}
.nav a:hover, .nav a.is-active {
  color: var(--bone); background: transparent; text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--wine);
}
.menu-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid var(--ink-line);
  color: var(--bone); border-radius: 4px; padding: 8px 12px;
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ink-soft); flex-direction: column; gap: 0;
    padding: 12px 16px 16px; border-bottom: 1px solid var(--ink-line);
  }
  .nav a { padding: 10px 0; }
  .nav a.is-active { box-shadow: none; color: var(--gold); }
  .nav.is-open { display: flex; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 18px; border-radius: 4px; font-weight: 700;
  border: 1px solid transparent; text-decoration: none; font-size: 0.9rem;
  transition: background .15s, border-color .15s, transform .1s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-claim {
  background: var(--wine); color: #fff; border-color: var(--wine);
}
.btn-claim:hover { background: var(--claim-hover); color: #fff; border-color: var(--claim-hover); }
.btn-primary {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid #5a5e68;
}
.btn-ghost:hover { background: rgba(255,255,255,.04); color: var(--bone); border-color: var(--bone); }
.btn-outline {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-accent {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}
.btn-accent:hover { background: var(--gold-deep); color: var(--ink); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

.band { padding: 36px 0; }
.band-sm { padding: 28px 0; }
.band-dark {
  background: var(--ink);
  color: var(--bone);
}
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--bone); }
.band-dark p, .band-dark .lede { color: #c8cad0; }
.band-navy {
  background: var(--ink);
  color: var(--bone);
  border-radius: 0;
  border-bottom: 1px solid var(--ink-line);
}
.band-navy h1, .band-navy h2 { color: var(--bone); }
.band-navy p { color: #c8cad0; }
.band-white { background: var(--white); }
.band-mint { background: var(--bone); }
.band-slate { background: var(--paper); }
.band-soft-gold {
  background: var(--bone);
}

.section-head {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  align-items: end; justify-content: space-between;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}
.section-head p {
  margin: 6px 0 0; color: var(--muted); font-size: 0.95rem; max-width: 520px;
}
.section-kicker {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 8px;
  font-family: var(--font-mono);
}
.band-dark .section-kicker,
.band-navy .section-kicker { color: var(--gold); }

.home-hero {
  padding: 48px 0 44px;
  text-align: left;
}
.home-hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.05;
  max-width: 14ch;
}
.home-hero .lede {
  font-size: 1.05rem;
  max-width: 54ch;
  margin: 0 0 28px;
  color: #c8cad0;
  line-height: 1.6;
}
.sport-tiles {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-start; margin-top: 8px;
}
.sport-tile {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 88px; padding: 14px 12px;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  color: var(--bone); text-decoration: none;
  transition: background .15s, border-color .15s;
}
.sport-tile:hover {
  background: rgba(255,255,255,.04);
  border-color: #5a5e68;
  text-decoration: none; color: var(--bone);
}
.sport-tile .ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(240,195,74,.15);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 800;
}
.sport-tile span { font-size: 0.78rem; font-weight: 700; }

.bet-hero { padding: 40px 0 36px; }
.bet-hero h1 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  max-width: 22ch;
}
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  margin-bottom: 18px;
}
.byline-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wine);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.byline-meta { font-size: 0.88rem; color: #93989f; }
.byline-meta strong { color: var(--bone); display: block; font-size: 0.95rem; }
.exp-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 2px;
  margin-top: 4px;
}
.updated { font-size: 0.8rem; color: #6b6f78; }

.intro[data-intro] .intro-body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #c8cad0;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.intro.is-expanded .intro-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.intro-toggle {
  background: none; border: none;
  color: var(--gold); font-weight: 700;
  padding: 0; font-size: 0.95rem;
}
.intro-toggle:hover { text-decoration: underline; }

.jump-toc {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--ink-line);
}
.jump-toc a {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--bone); font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--ink-soft);
  font-family: var(--font-mono);
}
.jump-toc a:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.offer-list, .bk-list { display: flex; flex-direction: column; gap: 14px; }

.offer-card, .bk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 0;
  align-items: stretch;
}
@media (max-width: 720px) {
  .offer-card, .bk-card { grid-template-columns: 44px 1fr; }
  .offer-cta-col, .bk-cta-col {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

.offer-rank, .bk-rank {
  background: var(--band-dark);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.15rem;
}
.offer-rank.is-top, .bk-rank.is-top {
  background: var(--wine);
}

.offer-main, .bk-main {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}
.offer-top, .bk-top {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  align-items: center;
}
.bk-logo {
  width: 120px; height: 44px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 0.95rem; color: #fff;
  letter-spacing: -0.02em;
}
.bk-logo.betano { background: #1a1a1a; }
.bk-logo.bet365 { background: #027b5b; }
.bk-logo.winamax { background: #e31837; }
.bk-logo.neobet { background: #0b3d91; }
.bk-logo.tipico { background: #ffcc00; color: #111; }

.badge {
  display: inline-flex; align-items: center;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
}
.badge-top { background: var(--ink); color: var(--gold); }
.badge-live { background: var(--live); color: #fff; }
.badge-odds { background: var(--ink-soft); color: var(--gold); border: 1px solid var(--ink-line); }
.badge-ggl { background: #e8f8ee; color: #1a7a45; }

.offer-bonus, .bk-bonus {
  font-size: 1.25rem; font-weight: 850; letter-spacing: -0.02em;
  margin: 0; color: var(--ink);
}
.offer-bonus small, .bk-bonus small {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--wine); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 2px;
}
.offer-meta, .bk-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.metric { font-size: 0.82rem; }
.metric strong { display: block; font-size: 0.95rem; color: var(--ink); }
.metric span { color: var(--muted); font-size: 0.75rem; }
.stars { color: var(--gold-deep); letter-spacing: 1px; }

.promo-code {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px dashed var(--wine);
  border-radius: 4px; padding: 8px 12px; font-size: 0.82rem; font-weight: 700; color: var(--ink); background: #fff5f5;
  cursor: pointer;
}
.promo-code:hover { background: #ffe8e8; }

.offer-cta-col, .bk-cta-col {
  padding: 16px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: stretch;
  gap: 8px; min-width: 160px;
  background: var(--band-slate);
}
.offer-cta-col .btn, .bk-cta-col .btn { width: 100%; }
.link-review {
  text-align: center; font-size: 0.8rem; font-weight: 700;
  color: var(--wine);
}
.bk-details {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  background: #fafbfa;
  font-size: 0.9rem; color: var(--ink-2);
}
.bk-card.is-open .bk-details { display: block; }
.bk-details ul { list-style: disc; padding-left: 1.2em; margin: 8px 0; }
.bk-actions-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) {
  .promo-grid { grid-template-columns: 1fr; }
}
.promo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow);
}
.promo-card h3 { font-size: 1rem; margin: 0; }
.promo-card .promo-offer {
  font-size: 1.35rem; font-weight: 850; letter-spacing: -0.02em;
  margin: 0;
}
.promo-card .btn { margin-top: auto; }

.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 18px;
}
.filter-chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700; font-size: 0.82rem;
  color: var(--ink-2);
}
.filter-chip.is-active,
.filter-chip:hover {
  border-color: var(--wine); background: #fff5f5; color: var(--wine);
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.review-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.review-tile:hover {
  border-color: var(--wine);
  box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
}
.review-tile h3 { font-size: 1.05rem; margin: 0 0 6px; }
.review-tile p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.review-score {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800; color: var(--wine); font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: box-shadow .15s;
}
.content-card:hover { box-shadow: var(--shadow); text-decoration: none; color: inherit; }
.content-card .thumb {
  height: 120px;
  background: var(--ink);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 0.85rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.content-card .thumb.alt { background: var(--ink-soft); }
.content-card .thumb.gold { background: linear-gradient(135deg, #2a2410, var(--gold-deep)); }
.content-card .body { padding: 14px 16px 18px; }
.content-card h3 { font-size: 1rem; margin: 0 0 6px; }
.content-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.league-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.league-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 0.88rem;
  transition: border-color .15s, background .15s;
}
.league-tile:hover {
  border-color: var(--wine);
  background: #fff5f5;
  text-decoration: none; color: var(--wine);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.trust-item h3 {
  font-size: 1rem; margin: 0 0 6px;
  display: flex; align-items: center; gap: 8px;
}
.trust-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.trust-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); color: #fff;
  display: inline-grid; place-items: center;
  font-size: 0.8rem; font-weight: 800;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary {
  font-weight: 700; cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: 8px; color: var(--wine); }
.faq details p { margin: 0; color: var(--ink-2); font-size: 0.92rem; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
.compare {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: 0.9rem;
}
.compare th, .compare td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th {
  background: var(--band-dark); color: #fff;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em;
}
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: var(--band-mint); }

.prose { max-width: 68ch; }
.prose h3 { margin-top: 1.2em; }
.prose ul { list-style: disc; padding-left: 1.25em; margin: 0 0 1em; }
.prose li { margin-bottom: 0.35em; }

.related {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.related a {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 700; font-size: 0.88rem;
  color: var(--ink); text-decoration: none;
}
.related a:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.breadcrumb {
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--muted); }
.band-navy .breadcrumb, .band-navy .breadcrumb a { color: #93989f; }
.band-dark .breadcrumb, .band-dark .breadcrumb a { color: #93989f; }

.site-footer {
  background: var(--ink);
  color: #93989f;
  padding: 40px 0 28px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.site-footer h4 {
  color: var(--bone); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: .08em; margin: 0 0 12px;
  font-family: var(--font-mono);
}
.site-footer a { color: #93989f; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul li { margin-bottom: 6px; }
.footer-brand { font-weight: 700; color: var(--bone); font-size: 1.15rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.footer-bottom {
  border-top: 1px solid var(--ink-line);
  padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  justify-content: space-between;
  font-size: 0.78rem;
}

.cookie {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 420px; z-index: 50;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
  font-size: 0.88rem;
}
.cookie p { margin: 0 0 12px; color: var(--ink-2); }
.cookie-actions { display: flex; gap: 8px; }

.text-center { text-align: center; }
[hidden] { display: none !important; }

/* —— Review page —— */
.review-score-hero {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  align-items: center; margin: 8px 0 18px;
}
.score-ring {
  width: 88px; height: 88px; border-radius: 50%;
  background: conic-gradient(var(--gold) 0 84%, rgba(255,255,255,.15) 0);
  display: grid; place-items: center; flex-shrink: 0;
}
.score-ring span {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--band-navy); color: #fff;
  display: grid; place-items: center;
  font-weight: 850; font-size: 1.35rem;
}
.band-white .score-ring span { background: var(--white); color: var(--ink); }
.review-quick-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  flex: 1;
  min-width: 220px;
}
.review-quick-metrics .metric strong { color: #fff; }
.band-white .review-quick-metrics .metric strong { color: var(--ink); }

.score-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.score-table th, .score-table td {
  text-align: left; padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}
.score-table th {
  color: var(--muted); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.bar {
  height: 8px; background: var(--band-slate);
  border-radius: 999px; overflow: hidden; min-width: 100px;
}
.bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  border-radius: inherit;
}

.verdict {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px) {
  .verdict { grid-template-columns: 1fr; }
}
.verdict-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.verdict-box h3 { font-size: 0.95rem; margin: 0 0 10px; }
.verdict-box.pro h3 { color: var(--ok); }
.verdict-box.con h3 { color: var(--claim); }
.verdict-box ul { list-style: none; padding: 0; margin: 0; }
.verdict-box li {
  font-size: 0.9rem; color: var(--ink-2);
  padding: 4px 0; padding-left: 1.1em; position: relative;
}
.verdict-box.pro li::before { content: "+"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.verdict-box.con li::before { content: "−"; position: absolute; left: 0; color: var(--claim); font-weight: 800; }

.sticky-cta {
  position: sticky; bottom: 16px; z-index: 20;
  margin: 0 auto 24px;
  width: min(100% - 32px, var(--max));
  background: var(--ink);
  color: var(--bone);
  border-radius: 8px;
  border: 1px solid var(--ink-line);
  padding: 14px 16px;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow);
}
.sticky-cta p { margin: 0; font-size: 0.9rem; color: #93989f; }
.sticky-cta strong { color: var(--bone); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none; color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.guide-card:hover {
  border-color: var(--wine);
  box-shadow: var(--shadow);
  text-decoration: none; color: inherit;
}
.guide-card h3 { font-size: 1rem; margin: 0 0 6px; }
.guide-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.bonus-terms-note {
  margin: 0; font-size: 0.78rem; color: var(--muted);
}
