/* ============================================
   BesteCasinos.nl — Dark Dashboard Theme
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg: #1a1f2e;
  --bg-card: #222838;
  --bg-hover: #2a3148;
  --bg-elevated: #252b3d;
  --border: #364158;
  --text: #f0f2f5;
  --text-muted: #a0aab8;
  --accent: #f5a623;
  --accent2: #ff6b35;
  --green: #3fb950;
  --blue: #58a6ff;
  --red: #f85149;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --star-color: #f5a623;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1140px;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow: 0 1px 3px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,.5);
  --transition: .2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 32px 0; }
.section + .section { padding-top: 0; }

/* --- Header / Nav --- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(26,31,46,.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.logo img { height: 42px; width: auto; }
.logo:hover { color: var(--text); }

.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text-muted);
  position: absolute; left: 5px; transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 15px; }

/* --- Article Header --- */
.article-header { padding: 32px 0 20px; }
.article-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
img.author-avatar {
  border: 2px solid var(--border);
}
.author-avatar-fallback {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .7rem; color: var(--accent);
  flex-shrink: 0;
}
.article-meta strong { color: var(--text); font-weight: 600; }
.article-intro { font-size: 1rem; color: var(--text-muted); margin-top: 14px; line-height: 1.7; }

/* --- Section Headings --- */
h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}
h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-text p { margin-bottom: 14px; color: var(--text-muted); }
.section-text ul { margin: 10px 0 14px 20px; list-style: disc; color: var(--text-muted); }
.section-text ul li { margin-bottom: 4px; }
.section-text ul li strong { color: var(--text); }
.section-text ol { margin: 10px 0 14px 20px; list-style: decimal; color: var(--text-muted); }
.section-text ol li { margin-bottom: 6px; }
.section-text ol li strong { color: var(--text); }

/* --- Casino Card (dark dashboard style) --- */
.casino-list { display: flex; flex-direction: column; gap: 18px; }
.casino-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: background var(--transition), border-color var(--transition);
}
.casino-card:hover {
  background: var(--bg-hover);
  border-color: rgba(255,255,255,.1);
}

/* Rank badges — top-right corner, slightly outside the card */
.casino-badge {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  z-index: 2;
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.casino-badge.gold,
.casino-badge.silver,
.casino-badge.bronze {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 0;
}
.casino-badge.gold::before,
.casino-badge.silver::before,
.casino-badge.bronze::before {
  content: '★';
  font-size: 2.2rem;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.4), 0 0 12px var(--glow);
}
.casino-badge.gold::after,
.casino-badge.silver::after,
.casino-badge.bronze::after {
  position: absolute;
  font-size: .6rem;
  font-weight: 800;
  color: rgba(0,0,0,.6);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  letter-spacing: 0;
}
.casino-badge.gold { --glow: rgba(245,197,24,.5); }
.casino-badge.gold::before { color: #f5c518; }
.casino-badge.gold::after { content: '1'; }
.casino-badge.silver { --glow: rgba(180,190,200,.4); }
.casino-badge.silver::before { color: #b4bec8; }
.casino-badge.silver::after { content: '2'; }
.casino-badge.bronze { --glow: rgba(200,135,92,.4); }
.casino-badge.bronze::before { color: #c8875c; }
.casino-badge.bronze::after { content: '3'; }

/* Casino logo area */
.casino-logo {
  width: 180px;
  height: 100px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.casino-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 8px;
}
.casino-logo svg { max-width: 100%; max-height: 100%; padding: 8px; }
.casino-logo .logo-initials {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-muted);
  letter-spacing: -1px;
}
.casino-logo .logo-initials.c1 { color: var(--accent); }
.casino-logo .logo-initials.c2 { color: var(--blue); }
.casino-logo .logo-initials.c3 { color: var(--green); }

.casino-info h3 { margin-bottom: 2px; font-size: 1rem; }
.casino-info h3 a { color: var(--text); }
.casino-info h3 a:hover { color: var(--accent); }
.casino-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.casino-rating .stars { color: var(--star-color); letter-spacing: 1px; font-size: .75rem; }
.casino-bonus {
  font-size: .88rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.casino-features li::before {
  content: '\2713';
  color: var(--green);
  margin-right: 4px;
  font-weight: 700;
}
.casino-cta { align-self: center; flex-shrink: 0; }
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(245,166,35,.25);
}
.btn-cta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,166,35,.35); }

/* Top 3 highlight */
.casino-card.top-3 { border-left-color: var(--accent); }

/* "Meer info" link under CTA */
.casino-cta { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.casino-more { font-size: .75rem; color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.casino-more:hover { color: var(--text); }

/* Show more button */
.show-more-wrap {
  text-align: center;
  padding: 16px 0 4px;
}
.btn-show-more {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition), border-color var(--transition);
}
.btn-show-more:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.casino-card.hidden-card { display: none; }
.casino-card.hidden-card.revealed { display: grid; }

/* --- Callout boxes (3D elevated style) --- */
.callout-box {
  position: relative;
  background: #262d3d;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 20px 22px 20px 80px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.callout-box.tip {
  box-shadow: 0 4px 20px rgba(245,166,35,.12), 0 1px 4px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
}
.callout-box.warning {
  box-shadow: 0 4px 20px rgba(248,81,73,.1), 0 1px 4px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.04);
}
.callout-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.4));
}
.callout-box.warning .callout-icon {
  filter: drop-shadow(0 0 8px rgba(248, 81, 73, 0.4));
}
.callout-content { flex: 1; }
.callout-label {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.callout-box.tip .callout-label { color: var(--accent); }
.callout-box.warning .callout-label { color: var(--red); }
.callout-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-image: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent)) 1;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  padding: 24px 20px;
  text-align: center;
  margin: 28px 0;
}
.cta-banner p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 600;
}
.cta-banner .btn-cta {
  padding: 12px 32px;
  font-size: .95rem;
}

/* --- Pros/Cons table (two-column in reviews) --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 16px 0 24px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.pros-col, .cons-col {
  padding: 0;
}
.pros-col {
  border-right: 1px solid rgba(255,255,255,.06);
}
.pros-col h3, .cons-col h3 {
  font-size: 1.1rem;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pros-col h3 { color: var(--green); }
.pros-col h3::before { content: '✓ '; }
.cons-col h3 { color: var(--red); }
.cons-col h3::before { content: '✕ '; }
.pros-list, .cons-list {
  display: flex;
  flex-direction: column;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.pros-list li, .cons-list li {
  list-style: none !important;
}
.pros-list li::marker, .cons-list li::marker {
  content: none;
  display: none;
}
.pros-list li, .cons-list li {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 10px 16px 10px 36px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}
.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: var(--green);
  font-weight: 700;
}
.cons-list li::before {
  content: '✕';
  position: absolute;
  left: 14px;
  color: var(--red);
  font-weight: 700;
}

/* --- Pros/Cons (full-width alternating blocks) --- */
.pros-cons-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.pc-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px 20px 72px;
  position: relative;
}
.pc-block.pro {
  border-left: 4px solid var(--green);
}
.pc-block.con {
  border-left: 4px solid var(--red);
}
.pc-block-icon {
  position: absolute;
  left: 20px;
  top: 22px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.pc-block-icon svg { width: 36px; height: 36px; }
.pc-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pc-block.pro h4 { color: var(--green); }
.pc-block.con h4 { color: var(--red); }
.pc-block p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- Comparison Table --- */
.table-wrap { overflow-x: auto; margin: 20px 0; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.comparison-table th {
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
}
.comparison-table tr:hover { background: var(--bg-hover); }
.comparison-table .score { font-weight: 700; color: var(--accent); }

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 14px 16px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.faq-question:hover { background: var(--bg-hover); }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.active .faq-question { background: var(--bg-hover); }
.faq-item.active .faq-question::after { content: '\2212'; color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner { padding: 0 16px 14px; font-size: .88rem; color: var(--text-muted); line-height: 1.65; }
.faq-item.active .faq-answer { max-height: 600px; }

/* --- Sportsbook Card --- */
.sportsbook-card {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 14px 16px 14px 20px;
  transition: background var(--transition), border-color var(--transition);
}
.sportsbook-card:hover { background: var(--bg-hover); border-color: var(--blue); }
.sportsbook-rank {
  font-size: 1.4rem; font-weight: 800; color: var(--blue);
  text-align: center; line-height: 1; padding-top: 2px;
}

/* --- Contact Form --- */
.contact-form { max-width: 540px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--bg-card);
  color: var(--text);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group .optional-label { color: var(--text-muted); font-weight: 400; }
.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245,166,35,.3); }

/* --- About Page --- */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.criteria-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.criteria-item h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.criteria-item p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* --- Disclaimer Box --- */
.disclaimer-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--text-muted);
  margin: 20px 0;
}
.disclaimer-box strong { color: var(--text); }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, background var(--transition), color var(--transition);
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* --- Footer --- */
.site-footer {
  background: #0a0d12;
  color: var(--text-muted);
  padding: 32px 0 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-disclaimer {
  text-align: center;
  font-size: .82rem;
  line-height: 1.7;
}
.footer-disclaimer .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 2px solid var(--red);
  border-radius: 8px;
  font-weight: 800;
  font-size: .75rem;
  color: var(--red);
  margin-bottom: 12px;
}
.footer-disclaimer p {
  color: var(--text-muted);
  margin-bottom: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.footer-disclaimer a { color: var(--accent); }
.footer-disclaimer a:hover { text-decoration: underline; }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* --- Table of Contents --- */
.toc-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 24px 0;
  overflow: hidden;
}
.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.toc-header:hover { background: var(--bg-hover); }
.toc-header span { display: flex; align-items: center; gap: 8px; }
.toc-toggle {
  transition: transform .3s;
}
.toc-wrapper.active .toc-toggle { transform: rotate(180deg); }
.toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.toc-wrapper.active .toc-content { max-height: 2000px; }
.toc-list {
  padding: 0 20px 16px;
  margin: 0;
  counter-reset: toc;
  list-style: none;
}
.toc-list > li {
  counter-increment: toc;
  padding: 5px 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.toc-list > li::before {
  content: counter(toc) ". ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}
.toc-list > li > a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.toc-list > li > a:hover { color: var(--accent); }
.toc-list > li.toc-group {
  font-weight: 600;
  color: var(--text);
  padding-bottom: 2px;
}
.toc-list > li.toc-group::before { color: var(--accent); }
.toc-list > li.toc-group > ol {
  list-style: none;
  counter-reset: subtoc;
  padding: 4px 0 4px 20px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}
.toc-list > li.toc-group > ol > li {
  counter-increment: subtoc;
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 3px 0;
}
.toc-list > li.toc-group > ol > li::before {
  content: counter(subtoc) ". ";
  color: var(--accent);
  font-weight: 600;
  font-size: .75rem;
  opacity: .6;
}
.toc-list > li.toc-group > ol > li > a {
  color: var(--text-muted);
}
.toc-list > li.toc-group > ol > li > a:hover { color: var(--accent); }

/* --- Casino review screenshot --- */
.review-screenshot {
  display: block;
  max-width: 700px;
  margin: 16px auto 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: .82rem;
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,.4);
  border-top: 1px solid var(--border);
}
.cookie-banner.hidden { display: none; }
.cookie-banner button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition);
}
.cookie-banner button:hover { background: var(--accent2); }

/* --- Redirect Page --- */
.redirect-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
}
.redirect-page h2 { color: var(--text); margin-bottom: 10px; }
.redirect-page p { color: var(--text-muted); margin-bottom: 20px; }
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Highlight picks (one-liner casino features) --- */
.picks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.pick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
}
.pick-item:hover {
  border-color: rgba(255,255,255,.12);
  background: var(--bg-hover);
}
.pick-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(245,166,35,.1);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pick-name {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  margin-right: 4px;
}
.pick-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pick-sep {
  color: var(--border);
  margin: 0 2px;
}

/* ============ RESPONSIVE ============ */

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

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    gap: 12px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  /* Typography */
  .article-header h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }

  /* Casino cards stack */
  .casino-list { max-width: 100%; }
  .casino-card,
  .sportsbook-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .casino-badge {
    right: 8px;
    top: 8px;
    transform: none;
    width: 28px;
    height: 28px;
    font-size: .75rem;
  }
  .casino-badge.gold, .casino-badge.silver, .casino-badge.bronze {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
  }
  .casino-logo { width: 100%; height: 165px; }
  .casino-logo svg { width: 100%; height: 120px; }
  .casino-logo .logo-initials { font-size: 2rem; }
  .casino-cta {
    width: 100%;
  }
  .btn-cta { width: 100%; text-align: center; display: block; }
  .casino-features { flex-direction: column; gap: 2px; }

  /* Pros/Cons */
  .pc-block { padding: 16px 16px 16px 64px; }

  /* Table */
  .comparison-table { font-size: .78rem; }
  .comparison-table th, .comparison-table td { padding: 8px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* About criteria */
  .criteria-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .pros-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }

  /* Cookie */
  .cookie-banner { flex-direction: row; text-align: left; gap: 10px; padding: 10px 16px; font-size: .75rem; }
  .cookie-banner button { padding: 6px 14px; font-size: .75rem; }

  /* CTA banner */
  .cta-banner { padding: 20px 16px; }
}
