:root {
  --primary: #1E3A8A;
  --primary-deep: #172C68;
  --secondary: #0F5132;
  --secondary-deep: #0B3B25;
  --accent: #EFF6FF;
  --gold-soft: #DBEAFE;
  --bg: #0D172E;
  --bg-alt: #12203E;
  --surface: #193058;
  --surface-soft: #3A2B24;
  --text: #EFF6FF;
  --text-muted: #C9D9F7;
  --border: #35507F;
  --line: #4F6FA8;
  --success: #60A5FA;
  --warning: #34D399;
  --danger: #059669;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(29, 78, 216, 0.08) 0%, transparent 35%), linear-gradient(180deg, var(--bg) 0%, #111827 100%);
  color: var(--text);
  font-family: "Inter", "Noto Sans TC", -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.72;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(250, 204, 21, 0.14);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.18rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); text-transform: uppercase;
}
.brand::before {
  content: ""; width: 18px; height: 18px; border-radius: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 65%, var(--accent) 100%);
  box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.15);
}
.main-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.main-nav a { padding: 8px 12px; border-radius: 999px; color: var(--text-muted); font-size: 0.9rem; font-weight: 700; }
.main-nav a:hover, .main-nav a:focus-visible { background: rgba(29, 78, 216, 0.14); color: var(--text); }
.nav-cta, .button, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta, .button {
  background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
  color: #111827; box-shadow: 0 14px 32px rgba(250, 204, 21, 0.2);
}
.button-secondary {
  background: rgba(29, 78, 216, 0.16); border-color: rgba(29, 78, 216, 0.24); color: #BFDBFE;
}
.nav-cta:hover, .button:hover, .button-secondary:hover { transform: translateY(-2px); }
.hero { padding: 74px 0 54px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr); gap: 28px; align-items: stretch; }
.hero-copy h1, .section-title, h1, h2, h3, h4 {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}
.hero-copy h1 { margin: 14px 0 16px; font-size: clamp(2.5rem, 4.8vw, 4.2rem); line-height: 1.02; text-transform: uppercase; }
.hero-copy h1 .accent { color: var(--accent); }
.lede, .section-sub, .hero-copy p, .footer-meta, .faq-a, .meta-note { color: var(--text-muted); }
.hero-panel {
  position: relative; overflow: hidden; padding: 22px;
  background: linear-gradient(180deg, rgba(24,33,47,0.96) 0%, rgba(17,24,39,1) 100%);
  border: 1px solid rgba(250, 204, 21, 0.12); border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.hero-image { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; border-radius: 16px; border: 1px solid rgba(250, 204, 21, 0.12); }
.data-wall {
  position: absolute; left: 22px; right: 22px; bottom: 20px; display: grid; gap: 10px;
}
.score-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.score-pill {
  padding: 12px 14px; border-radius: 12px; background: rgba(15, 23, 42, 0.84); border: 1px solid rgba(250, 204, 21, 0.14);
}
.score-pill strong { display: block; color: var(--accent); font-size: 0.95rem; }
.score-pill span { display: block; color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.data-cell {
  padding: 12px; border-radius: 12px; background: rgba(15, 23, 42, 0.84); border: 1px solid rgba(29, 78, 216, 0.14);
}
.data-cell .k { display: block; color: #93C5FD; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.data-cell .v { display: block; color: var(--text); font-size: 1rem; font-weight: 800; margin-top: 5px; }
.section { padding: 56px 0; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; padding: 6px 14px; border-radius: 999px;
  background: rgba(124, 45, 18, 0.18); color: #FDBA74; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}
.section-title { margin: 0 0 24px; font-size: clamp(1.7rem, 3vw, 2.5rem); text-transform: uppercase; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.odds-compare-card, .card, .starter-panel, .callout-card, .trust-card, .resource-card, .stat-item, .method-step, .tl-item {
  background: linear-gradient(180deg, rgba(24,33,47,1) 0%, rgba(20,28,40,1) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.odds-compare-card { overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.odds-compare-card:hover, .card:hover, .starter-panel:hover { transform: translateY(-4px); border-color: rgba(250, 204, 21, 0.3); }
.article-thumb { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; background: var(--surface-soft); }
.card-copy { padding: 18px; }
.card-copy h3 { margin: 0 0 10px; font-size: 1.1rem; text-transform: uppercase; }
.card-copy p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.odds-row { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; padding: 16px 18px 0; }
.odds-row:last-child { padding-bottom: 18px; }
.market-side { color: var(--text); font-weight: 700; }
.market-nums { display: flex; gap: 8px; justify-content: flex-end; }
.market-chip {
  min-width: 68px; text-align: center; padding: 8px 10px; border-radius: 999px; font-size: 0.82rem; font-weight: 800;
  background: rgba(29, 78, 216, 0.16); color: #BFDBFE; border: 1px solid rgba(29, 78, 216, 0.2);
}
.market-chip.highlight { background: rgba(250, 204, 21, 0.16); color: #FDE68A; border-color: rgba(250, 204, 21, 0.22); }
.callout-grid, .panel-grid, .trust-grid, .stat-row { display: grid; gap: 18px; }
.callout-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.callout-card { padding: 22px; }
.callout-card h3 { margin: 0 0 10px; font-size: 1.05rem; color: var(--accent); text-transform: uppercase; }
.callout-card p { margin: 0; color: var(--text-muted); }
.panel-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.panel-banner {
  padding: 10px 16px; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}
.panel-body { padding: 18px; }
.panel-body h3 { margin: 14px 0 8px; font-size: 1.14rem; text-transform: uppercase; }
.panel-body p { margin: 0; color: var(--text-muted); }
.card a, .odds-compare-card a, .starter-panel a { display: block; }
.card h3 { margin: 14px 16px 8px; font-size: 1.05rem; text-transform: uppercase; }
.card p { margin: 0 16px 16px; color: var(--text-muted); }
.cta-box {
  padding: 38px; text-align: center; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(124, 45, 18, 0.24) 0%, rgba(29, 78, 216, 0.2) 100%);
  border: 1px solid rgba(250, 204, 21, 0.18);
}
.cta-box h3 { margin: 0 0 12px; font-size: 1.5rem; text-transform: uppercase; }
.cta-box p { margin: 0 0 18px; color: var(--text-muted); }
.site-footer { padding: 48px 0 24px; background: #0B1220; border-top: 1px solid rgba(250, 204, 21, 0.1); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.footer-grid h3 { margin: 0 0 10px; font-size: 1rem; text-transform: uppercase; }
.footer-grid p { margin: 0 0 8px; }
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--accent); }
.article-hero { width: min(calc(100% - 32px), var(--max-width)); margin: 28px auto 0; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(250, 204, 21, 0.12); }
.article-hero img { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; }
.prose { width: min(calc(100% - 32px), 820px); margin: 0 auto; padding: 30px 0 70px; }
.breadcrumb { margin: 0 0 18px; color: var(--text-muted); font-size: 0.85rem; }
.prose h1 { margin: 0 0 16px; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.prose h2 { margin: 34px 0 14px; font-size: 1.45rem; color: var(--accent); text-transform: uppercase; }
.prose h3 { margin: 28px 0 10px; font-size: 1.14rem; color: #BFDBFE; text-transform: uppercase; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul, .prose ol { padding-left: 22px; }
.prose strong { color: var(--text); }
.score-table { width: 100%; border-collapse: collapse; margin: 22px 0; }
.score-table th, .score-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.score-table th { color: var(--accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.score-table td { color: var(--text-muted); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }
.pros-cons > div { padding: 18px; border-radius: var(--radius-md); border: 1px solid var(--border); }
.pros-cons .pros { background: rgba(34, 197, 94, 0.08); }
.pros-cons .cons { background: rgba(239, 68, 68, 0.08); }
.pros-cons h4 { margin: 0 0 10px; text-transform: uppercase; }
.pros-cons ul { margin: 0; }
.review-header { display: grid; grid-template-columns: 88px 1fr; gap: 20px; align-items: center; }
.review-score-badge {
  width: 88px; height: 88px; border-radius: 22px; background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
  color: #111827; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 900;
}
.review-score-badge .score-num { font-size: 2rem; line-height: 1; }
.review-score-badge .score-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; }
.review-meta h1 { margin: 0 0 10px; }
.review-meta p { margin: 0; color: var(--text-muted); }
.inline-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; margin: 24px 0;
  border: 1px solid rgba(250, 204, 21, 0.16); border-radius: var(--radius-md); background: rgba(250, 204, 21, 0.06);
}
.inline-cta p { margin: 0; }
.faq-q {
  margin: 24px 0 8px; padding-left: 14px; border-left: 4px solid var(--accent); font-size: 1.02rem; font-weight: 800; color: var(--text);
}
.faq-a { margin: 0 0 18px; padding-left: 14px; }
.alert-box {
  margin: 22px 0; padding: 16px 18px; border-radius: var(--radius-md); background: rgba(250, 204, 21, 0.08); border: 1px solid rgba(250, 204, 21, 0.16);
}
.alert-box strong { color: var(--accent); }
.listing-header { padding: 54px 0 28px; text-align: center; }
.listing-header h1 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.listing-header p { margin: 0 auto; max-width: 640px; color: var(--text-muted); }
.article-listing { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.article-listing a {
  display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 16px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24,33,47,1) 0%, rgba(20,28,40,1) 100%); border: 1px solid var(--border);
}
.article-listing .thumb { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; border-radius: 12px; }
.article-listing .info h3 { margin: 0 0 8px; font-size: 1rem; text-transform: uppercase; }
.article-listing .info p { margin: 0; color: var(--text-muted); }
.trust-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.trust-card { padding: 18px; }
.trust-card h3 { margin: 0 0 8px; font-size: 1rem; text-transform: uppercase; color: var(--accent); }
.trust-card p { margin: 0; color: var(--text-muted); }
.resource-card { padding: 18px; }
.resource-card h3 { margin: 0 0 8px; font-size: 1rem; text-transform: uppercase; }
.resource-card p { margin: 0; color: var(--text-muted); }
.stat-row { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.stat-item { padding: 20px; text-align: center; }
.stat-item .num { display: block; font-size: 1.9rem; font-weight: 900; color: var(--accent); }
.stat-item .label { display: block; margin-top: 6px; color: var(--text-muted); text-transform: uppercase; font-size: 0.76rem; }
.method-step { position: relative; padding: 20px 20px 20px 56px; counter-increment: method; }
.method-step::before {
  content: counter(method); position: absolute; left: 18px; top: 18px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #111827; display: grid; place-items: center; font-weight: 900;
}
.method-step h3 { margin: 0 0 8px; font-size: 1rem; text-transform: uppercase; }
.method-step p { margin: 0; color: var(--text-muted); }
.tl-item { position: relative; padding: 18px 18px 18px 44px; }
.tl-item::before {
  content: ""; position: absolute; left: 16px; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.14);
}
.tl-item strong { color: var(--text); }
.tl-item p { margin: 6px 0 0; color: var(--text-muted); }
.comparison-bar { display: grid; grid-template-columns: 92px 1fr 46px; gap: 10px; align-items: center; margin: 10px 0; }
.comparison-bar .bar-label { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; }
.comparison-bar .bar-track { height: 10px; border-radius: 999px; background: rgba(29, 78, 216, 0.12); overflow: hidden; }
.comparison-bar .bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%); }
.comparison-bar .bar-value { text-align: right; color: var(--accent); font-size: 0.82rem; font-weight: 800; }
.footnote { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.82rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.tag-list span { padding: 6px 10px; border-radius: 999px; background: rgba(29, 78, 216, 0.12); color: #BFDBFE; font-size: 0.76rem; font-weight: 700; }
.divider { border: 0; border-top: 1px solid var(--border); margin: 34px 0; }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--text); font-size: 1.35rem; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .review-header { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .score-strip { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .article-listing a { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero { padding: 42px 0 28px; }
  .hero-copy h1 { font-size: 2rem; }
  .card-grid, .panel-grid, .callout-grid, .trust-grid, .stat-row { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .odds-row { grid-template-columns: 1fr; }
}

/* ── Responsive nav toggle ── */
.nav-toggle { display: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--text); fill: none; stroke-width: 2; stroke-linecap: round; }
@media (max-width: 720px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(15, 23, 42, 0.98); border-bottom: 1px solid rgba(250, 204, 21, 0.12);
    padding: 12px 16px 20px; gap: 4px; z-index: 49;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; border-radius: var(--radius-sm); width: 100%; }
  .nav-cta { margin-top: 8px; width: 100%; text-align: center; }
}

/* ── Hover animations ── */
.odds-compare-card:hover .article-thumb { transform: scale(1.03); transition: transform 0.3s ease; }
.article-thumb { transition: transform 0.3s ease; }
.starter-panel:hover .article-thumb { transform: scale(1.03); }
.card:hover .article-thumb { transform: scale(1.03); }

/* ── Focus styles ── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.button:focus-visible, .button-secondary:focus-visible { outline-offset: 4px; }

/* ── Selection ── */
::selection { background: rgba(250, 204, 21, 0.28); color: var(--text); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--line); }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px; padding: 12px 20px; background: var(--accent); color: #111827;
  font-weight: 800; border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 100; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Article meta ── */
.article-meta {
  display: flex; align-items: center; gap: 14px; margin: 0 0 18px;
  color: var(--text-muted); font-size: 0.84rem;
}
.article-meta time { font-weight: 700; }
.article-meta .author { color: var(--accent); font-weight: 700; }

/* ── Related articles ── */
.related { padding: 40px 0; border-top: 1px solid var(--border); }
.related h2 { margin: 0 0 18px; font-size: 1.2rem; text-transform: uppercase; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }

/* ── Table of contents ── */
.toc { margin: 0 0 28px; padding: 18px; border-radius: var(--radius-md); background: rgba(29, 78, 216, 0.06); border: 1px solid rgba(29, 78, 216, 0.12); }
.toc h3 { margin: 0 0 10px; font-size: 0.9rem; color: var(--accent); text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 18px; }
.toc li { margin-bottom: 6px; font-size: 0.9rem; }
.toc a { color: #BFDBFE; }
.toc a:hover { color: var(--accent); }

/* ── Key stat highlight ── */
.key-stat {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 14px; margin: 6px 0; border-radius: var(--radius-sm);
  background: rgba(250, 204, 21, 0.1); border: 1px solid rgba(250, 204, 21, 0.14);
}
.key-stat .val { font-size: 1.3rem; font-weight: 900; color: var(--accent); }
.key-stat .unit { font-size: 0.82rem; color: var(--text-muted); }

/* ── Progress bar ── */
.progress-bar { margin: 12px 0; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.82rem; }
.progress-label span:first-child { color: var(--text-muted); }
.progress-label span:last-child { color: var(--accent); font-weight: 800; }
.progress-track { height: 8px; border-radius: 999px; background: rgba(29, 78, 216, 0.12); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; transition: width 0.6s ease; }
.progress-fill.high { background: linear-gradient(90deg, #22C55E 0%, #4ADE80 100%); }
.progress-fill.mid { background: linear-gradient(90deg, var(--accent) 0%, #F59E0B 100%); }
.progress-fill.low { background: linear-gradient(90deg, #EF4444 0%, #F87171 100%); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-primary { background: rgba(124, 45, 18, 0.2); color: #FDBA74; border: 1px solid rgba(124, 45, 18, 0.3); }
.badge-secondary { background: rgba(29, 78, 216, 0.16); color: #BFDBFE; border: 1px solid rgba(29, 78, 216, 0.2); }
.badge-accent { background: rgba(250, 204, 21, 0.14); color: #FDE68A; border: 1px solid rgba(250, 204, 21, 0.2); }
.badge-success { background: rgba(34, 197, 94, 0.12); color: #86EFAC; border: 1px solid rgba(34, 197, 94, 0.2); }
.badge-danger { background: rgba(239, 68, 68, 0.12); color: #FCA5A5; border: 1px solid rgba(239, 68, 68, 0.2); }

/* ── Quote block ── */
.quote-block {
  margin: 22px 0; padding: 18px 22px; border-left: 4px solid var(--secondary);
  background: rgba(29, 78, 216, 0.06); border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block p { margin: 0; font-style: italic; }
.quote-block cite { display: block; margin-top: 10px; font-size: 0.84rem; color: var(--text-muted); font-style: normal; }

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; margin: 18px 0; }
.checklist li {
  position: relative; padding: 8px 0 8px 30px; color: var(--text-muted);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px;
  border-radius: 6px; background: rgba(34, 197, 94, 0.14); color: #22C55E;
  display: grid; place-items: center; font-size: 0.82rem; font-weight: 900;
}

/* ── Print styles ── */
@media print {
  .site-header, .site-footer, .nav-cta, .inline-cta, .cta-box { display: none; }
  body { background: #fff; color: #111; }
  .prose h2 { color: #333; }
  a { color: #1D4ED8; text-decoration: underline; }
  .article-hero img { max-height: 200px; }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-copy h1 { animation: fadeInUp 0.6s ease both; }
.hero-copy .lede { animation: fadeInUp 0.6s ease 0.1s both; }
.hero-copy .button, .hero-copy .button-secondary { animation: fadeInUp 0.6s ease 0.2s both; }
.hero-panel { animation: fadeInUp 0.6s ease 0.15s both; }

/* ── Favicon placeholder ── */
.brand-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 65%, var(--accent) 100%);
}

/* ── Footer links hover ── */
.footer-grid a { transition: color 0.15s ease; }
.footer-grid a:hover { color: var(--accent); }

/* ── Image overlay gradient ── */
.hero-image-wrap { position: relative; overflow: hidden; border-radius: 16px; }
.hero-image-wrap::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Score pill hover ── */
.score-pill { transition: border-color 0.2s ease; }
.score-pill:hover { border-color: rgba(250, 204, 21, 0.3); }

/* ── Data cell pulse ── */
.data-cell { transition: background 0.2s ease, border-color 0.2s ease; }
.data-cell:hover { background: rgba(15, 23, 42, 0.95); border-color: rgba(29, 78, 216, 0.3); }

/* ── Market chip animation ── */
.market-chip { transition: transform 0.15s ease, background 0.15s ease; }
.market-chip:hover { transform: scale(1.05); }
.market-chip.highlight:hover { background: rgba(250, 204, 21, 0.24); }

/* ── Section divider with accent ── */
.section-divider {
  display: flex; align-items: center; gap: 16px; margin: 0 0 28px;
}
.section-divider::before, .section-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.section-divider span {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(124, 45, 18, 0.18); color: #FDBA74;
  font-size: 0.76rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Visited links ── */
.prose a:visited { color: #C4B5FD; }
.footer-grid a:visited { color: #C4B5FD; }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Card variants ── */
.card-compact { padding: 14px; }
.card-compact h3 { font-size: 0.95rem; }
.card-compact p { font-size: 0.86rem; }

/* ── Notification bar ── */
.notif-bar {
  padding: 10px 16px; text-align: center;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff; font-size: 0.82rem; font-weight: 700;
}
.notif-bar a { color: var(--accent); text-decoration: underline; }

/* ── Tooltip ── */
[data-tooltip] { position: relative; cursor: help; border-bottom: 1px dashed var(--text-muted); }
[data-tooltip]::after {
  content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  padding: 8px 12px; border-radius: var(--radius-sm); background: var(--surface);
  color: var(--text); font-size: 0.78rem; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease; z-index: 10;
}
[data-tooltip]:hover::after { opacity: 1; }

/* ── Accordion ── */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  width: 100%; padding: 14px 18px; background: transparent; border: 0; color: var(--text);
  font-size: 0.95rem; font-weight: 700; text-align: left; cursor: pointer;
}
.accordion-header:hover { background: rgba(29, 78, 216, 0.06); }
.accordion-body { padding: 0 18px 14px; color: var(--text-muted); }

/* ── Step indicator ── */
.step-row { display: flex; gap: 16px; align-items: flex-start; margin: 14px 0; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #111827;
  display: grid; place-items: center; font-weight: 900; font-size: 0.9rem;
}
.step-content { flex: 1; }
.step-content strong { color: var(--text); }
.step-content p { margin: 6px 0 0; color: var(--text-muted); }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 22px 0; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; }
.compare-table thead th {
  background: rgba(29, 78, 216, 0.1); color: var(--accent); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 2px solid var(--border);
}
.compare-table tbody tr:hover { background: rgba(29, 78, 216, 0.04); }
.compare-table td { border-bottom: 1px solid var(--border); color: var(--text-muted); }
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 700; }
.compare-table .best { color: var(--accent); font-weight: 900; }

/* ── Icon button ── */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); cursor: pointer; transition: all 0.2s ease;
}
.icon-btn:hover { background: rgba(29, 78, 216, 0.14); color: var(--text); border-color: rgba(29, 78, 216, 0.3); }

/* ── Skeleton loading ── */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-soft) 50%, var(--surface) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s ease infinite; border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive fine-tune ── */
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 1.7rem; }
  .brand { font-size: 0.95rem; }
  .container { width: calc(100% - 20px); }
}

/* === safe casino-specific components === */
.wedge-bet-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; }
.wedge-bet-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.wedge-bet-card a { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.wedge-bet-card .article-thumb { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; }
.wedge-bet-card .card-copy { padding: 16px 18px; }
.wedge-bet-card h3 { font-family: var(--display); margin: 0 0 6px; font-size: 1.05rem; }
.wedge-bet-card p { margin: 0; color: var(--text-muted); font-size: 0.88rem; }

.review-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 20px; text-align: center; transition: transform 0.22s, box-shadow 0.22s; position: relative; }
.review-panel:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-panel .article-thumb { width: 100%; aspect-ratio: 1216 / 640; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 14px; }
.review-panel h3 { font-family: var(--display); margin: 0 0 8px; font-size: 1.05rem; }
.review-panel .button { margin-top: 12px; }

.rank-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: var(--accent); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; }
.rank-meta { font-size: 0.82rem; color: var(--text-muted); margin: 0 0 6px; }
.rank-score { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--accent); margin: 8px 0 0; }

.button-primary { background: var(--primary); color: var(--accent); border-color: var(--primary); }
.button-primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); }

.cta-section { background: var(--bg-alt); border-top: 1px solid var(--border); text-align: center; }

.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; background: linear-gradient(to top, rgba(22,17,14,0.95) 0%, rgba(22,17,14,0.6) 60%, transparent 100%); }
.hero-overlay h1 { font-family: var(--display); margin: 0 0 10px; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.hero-overlay p { margin: 0 0 16px; max-width: 560px; color: var(--text-muted); font-size: 0.95rem; }
