/* =============================================
   BETSIXTY V4 — Article layout
   Single-column, max-w-5xl centered
   Dark green: #1A2F26 | Gold CTA: #FFD700
   Inter body + Bebas display | NL geo
   ============================================= */

/* --- Local Fonts --- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens --- */
:root {
  --base-100:  #1A2F26;
  --base-200:  #243B32;
  --base-300:  #2A4A3A;
  --base-content: #E5E7EB;
  --primary:   #00FF88;
  --primary-dk:#00cc6e;
  --gold:      #FFD700;
  --gold-dk:   #FFED4E;
  --accent:    #FF6B35;
  --border:    #2A4A3A;
  --border-gn: rgba(0,255,136,0.2);
  --text:      #E5E7EB;
  --text-muted:rgba(229,231,235,0.7);
  --text-dim:  rgba(229,231,235,0.45);
  --card-bg:   #243B32;
  --card-hover:#2A4A3A;
  --card-border:#2A4A3A;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill:50px;
  --font-display:'Bebas Neue','Arial Black',sans-serif;
  --font-body: 'Outfit','Inter',system-ui,sans-serif;
  --tr:        0.2s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.6);
  --shadow-card: 0 4px 12px rgba(0,0,0,0.5);
  --max-w:     64rem; /* 1024px — matches competitor max-w-5xl */
  --header-h:  64px;
}

/* --- Reset --- */
*, *::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);
  background: var(--base-100);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { line-height: 1.25; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--base-100); }
::-webkit-scrollbar-thumb { background: var(--base-300); border-radius: 3px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   HEADER — minimal, sticky, single CTA
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(26,47,38,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 2px 8px rgba(0,0,0,0.6); }

.header-wrap {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link { display: inline-flex; align-items: center; transition: opacity var(--tr); }
.logo-link:hover { opacity: 0.8; }
.logo-link img { height: 34px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--tr);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--tr);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(26,47,38,0.99);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px 18px;
  z-index: 39;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.mobile-nav ul a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all var(--tr);
}
.mobile-nav ul a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-nav-btns { display: flex; gap: 8px; }
.mobile-nav-btns .btn { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-cta {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255,215,0,0.35);
  animation: pulse-cta 2.5s cubic-bezier(0.4,0,0.6,1) infinite;
}
.btn-cta:hover {
  background: var(--gold-dk);
  box-shadow: 0 4px 16px rgba(255,215,0,0.5);
  animation: none;
  transform: scale(1.03) translateY(-1px);
}
@keyframes pulse-cta {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.btn-green {
  background: var(--primary);
  color: #003320;
  font-weight: 700;
}
.btn-green:hover { background: #33FF9F; box-shadow: 0 0 14px rgba(0,255,136,0.35); }

.btn-sm  { font-size: 13px; padding: 8px 16px; }
.btn-lg  { font-size: 15px; padding: 13px 28px; border-radius: var(--radius-md); }
.btn-xl  { font-size: 16px; padding: 15px 36px; border-radius: var(--radius-md); }
.btn-wide { padding-left: 3rem; padding-right: 3rem; }
.btn-full { width: 100%; }

/* =============================================
   HERO — centered H1, intro, CTA, then games
   ============================================= */
.hero-section {
  padding: 2.5rem 0 0;
  text-align: center;
}

.hero-h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-h1 span { color: var(--primary); }

.hero-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hero-trust svg { width: 13px; height: 13px; color: var(--primary); flex-shrink: 0; }

/* Hero image — full width banner */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap a { display: block; }
.hero-img-wrap img { width: 100%; height: auto; display: block; }

/* =============================================
   REVIEW TABLE — casino overview "in het kort"
   ============================================= */
.review-table-wrap {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.review-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--tr);
}
.review-table tr:last-child { border-bottom: none; }
.review-table tr:hover { background: rgba(0,255,136,0.04); }
.review-table td {
  padding: 11px 16px;
  vertical-align: middle;
}
.review-table td:first-child {
  font-weight: 600;
  color: var(--text);
  background: rgba(42,74,58,0.5);
  width: 42%;
  white-space: nowrap;
}
.review-table td:last-child {
  color: var(--text-muted);
  background: rgba(36,59,50,0.5);
}

/* =============================================
   GAMES GRID — 3:4 aspect ratio like competitor
   ============================================= */
.games-section { padding: 2rem 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.game-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.game-item:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.game-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--base-200);
  flex-shrink: 0;
}
.game-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.4s ease;
}
.game-item:hover .game-img-wrap img { transform: scale(1.06); }

.game-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,47,38,0.85), rgba(26,47,38,0.3), transparent);
  opacity: 0;
  transition: opacity var(--tr);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
}
.game-item:hover .game-img-overlay { opacity: 1; }
.game-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px;
  border-radius: var(--radius);
  transition: background var(--tr);
  text-decoration: none;
}
.game-play-btn:hover { background: var(--gold-dk); }

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}
.badge-hot { background: #FF4757; color: #fff; }
.badge-new { background: var(--primary); color: #003320; }
.badge-top { background: var(--gold); color: #000; }

.game-info {
  padding: 8px 10px 10px;
  text-align: center;
  border-top: 1px solid var(--card-border);
}
.game-name {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--tr);
}
.game-item:hover .game-name { color: var(--primary); }
.game-provider {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* =============================================
   TOC — inline accordion like competitor
   ============================================= */
.toc-wrap {
  margin: 2rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.toc-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: background var(--tr);
  user-select: none;
}
.toc-toggle:hover { background: rgba(255,255,255,0.04); }
.toc-toggle svg { color: var(--primary); flex-shrink: 0; width: 18px; height: 18px; }
.toc-label { flex: 1; }
.toc-chevron {
  width: 18px; height: 18px;
  color: var(--primary);
  transition: transform var(--tr);
  flex-shrink: 0;
}
.toc-wrap.open .toc-chevron { transform: rotate(180deg); }

.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 0 solid var(--border);
}
.toc-wrap.open .toc-body {
  max-height: 600px;
  border-top-width: 1px;
}

.toc-list {
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 8px;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: all var(--tr);
  text-decoration: none;
}
.toc-list a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(0,255,136,0.05);
  padding-left: 14px;
}
.toc-list a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(0,255,136,0.05);
}

/* =============================================
   PROSE — SEO content
   ============================================= */
.prose { max-width: none; }

.prose h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  scroll-margin-top: calc(var(--header-h) + 16px);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--primary);
  margin: 1.75rem 0 0.5rem;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.prose p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose a:hover { color: var(--gold); }

/* Prose lists */
.prose ol, .prose ul {
  padding-left: 1.5em;
  margin: 0.75rem 0 1rem;
  max-width: 100%;
  box-sizing: border-box;
}
.prose ol { list-style: decimal; }
.prose ul { list-style: disc; }
.prose ol li, .prose ul li {
  padding-left: 0.3em;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.prose ol li::marker { color: var(--gold); font-weight: 700; }
.prose ul li::marker { color: var(--gold); }

/* Prose tables */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto 2rem;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.prose thead {
  background: linear-gradient(135deg, var(--base-300), rgba(0,255,136,0.08));
  border-bottom: 2px solid var(--gold);
}
.prose th {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
}
.prose tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--tr);
}
.prose tbody tr:last-child { border-bottom: none; }
.prose tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.prose tbody tr:hover { background: rgba(0,255,136,0.04); }
.prose td {
  padding: 11px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
}
.prose td:first-child { font-weight: 600; color: var(--text); }

/* Standalone content lists */
.list-content {
  padding-left: 1.5em !important;
  margin: 0.75rem 0 1rem !important;
  max-width: 100%;
  box-sizing: border-box;
}
.list-content.list-ul { list-style: disc !important; }
.list-content.list-ol { list-style: decimal !important; }
.list-content li {
  padding-left: 0.3em;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.list-content.list-ul li::marker { color: var(--gold); }
.list-content.list-ol li::marker { color: var(--gold); font-weight: 700; }

/* Protect nav lists */
nav ul, .header-nav, .mobile-nav ul, .footer-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

/* =============================================
   PROS / CONS — styled table
   ============================================= */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.5rem 0 2rem;
}
.pros-card, .cons-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pros-card-head, .cons-card-head {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pros-card-head { background: rgba(0,255,136,0.12); color: var(--primary); border-bottom: 2px solid var(--primary); }
.cons-card-head { background: rgba(255,71,87,0.10); color: #FF4757; border-bottom: 2px solid #FF4757; }
.pros-card-body, .cons-card-body { padding: 12px 16px; }
.pros-card-body li, .cons-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.pros-card-body li:last-child, .cons-card-body li:last-child { border-bottom: none; }
.pros-card-body li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-card-body li::before { content: '✗'; color: #FF4757; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   PROVIDERS GRID — 4 col with real images
   ============================================= */
.providers-section { padding: 2rem 0; }

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.provider-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.provider-item:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
}

.provider-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--base-200);
}
.provider-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.4s ease;
}
.provider-item:hover .provider-img-wrap img { transform: scale(1.06); }
.provider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,47,38,0.8), rgba(26,47,38,0.3), transparent);
  opacity: 0;
  transition: opacity var(--tr);
}
.provider-item:hover .provider-overlay { opacity: 1; }

.provider-info {
  padding: 8px 10px 10px;
  text-align: center;
  border-top: 1px solid var(--card-border);
}
.provider-name {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  transition: color var(--tr);
}
.provider-item:hover .provider-name { color: var(--primary); }

/* =============================================
   PAYMENT METHODS — logo grid
   ============================================= */
.payments-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(42,74,58,0.2);
  margin: 2rem 0;
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.payment-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 44px;
  transition: all var(--tr);
}
.payment-item:hover {
  border-color: var(--border-gn);
  box-shadow: 0 0 10px rgba(0,255,136,0.12);
}
.payment-item img {
  max-height: 24px;
  max-width: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter var(--tr);
}
.payment-item:hover img { filter: brightness(1.1); }
.payment-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* =============================================
   FAQ — details/summary native, Schema ready
   ============================================= */
.faq-section { padding: 2rem 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
  box-shadow: var(--shadow-card);
}
.faq-item:hover { border-color: var(--border-gn); }
.faq-item.open { border-color: rgba(0,255,136,0.25); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: color var(--tr), background var(--tr);
  user-select: none;
}
.faq-question:hover { color: var(--primary); background: rgba(255,255,255,0.02); }

h3.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 12px;
  transition: color var(--tr), background var(--tr);
  user-select: none;
  letter-spacing: normal;
}
h3.faq-question:hover { color: var(--primary); background: rgba(255,255,255,0.02); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all var(--tr);
}
.faq-item.open .faq-icon { background: rgba(0,255,136,0.18); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 0 solid var(--border);
  padding: 0 20px;
}
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0; }
.faq-item.open .faq-answer {
  max-height: 500px;
  border-top-width: 1px;
  padding: 14px 20px 18px;
}

/* =============================================
   TRUSTPILOT BADGE
   ============================================= */
.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.trustpilot-bar img { height: 28px; width: auto; }
.trustpilot-text { font-size: 13px; color: var(--text-muted); }
.trustpilot-text strong { color: var(--text); }

/* =============================================
   FOOTER — 3 columns, minimal
   ============================================= */
.site-footer {
  background: var(--base-300);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-logo { height: 28px; margin-bottom: 12px; }
.footer-about {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all var(--tr);
  user-select: none;
}
.social-btn:hover { background: rgba(0,255,136,0.1); border-color: var(--border-gn); color: var(--primary); transform: translateY(-2px); }

.footer-col-title { font-weight: 700; font-size: 13px; color: var(--text); margin-bottom: 12px; letter-spacing: 0.3px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--tr); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-age {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,255,136,0.08);
  border: 1.5px solid rgba(0,255,136,0.3);
  color: var(--primary);
  font-weight: 900;
  font-size: 10px;
  margin-top: 2px;
}
.footer-disclaimer { font-size: 11px; color: var(--text-dim); line-height: 1.65; max-width: 560px; }
.footer-copy { font-size: 11px; color: var(--text-dim); white-space: nowrap; align-self: flex-end; }

/* =============================================
   FADE IN
   ============================================= */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-right { gap: 8px; }
  .burger { display: flex; }
  .mobile-nav { display: block; }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
  :root { --header-h: 58px; }

  .container { padding: 0 1rem; }
  .mobile-nav { top: 58px; }

  .hero-h1 { font-size: 1.8rem; }
  .hero-cta-wrap { flex-direction: column; align-items: center; }
  .hero-cta-wrap .btn { width: 100%; max-width: 340px; }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .review-table td { padding: 9px 12px; font-size: 13px; }
  .review-table td:first-child { width: 45%; }

  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .prose th, .prose td { padding: 9px 12px; font-size: 13px; }

  .pros-cons { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-copy { align-self: flex-start; }
  .footer-about { max-width: 100%; }

  .toc-toggle { padding: 13px 16px; font-size: 14px; }
  .toc-list { padding: 10px 16px 14px; }

  .faq-question, h3.faq-question { padding: 13px 16px; font-size: 14px; }
  .faq-item.open .faq-answer { padding: 10px 16px 14px; }

  .payments-section { padding: 1.5rem 0; }
  .payment-item { min-width: 70px; padding: 7px 12px; }
}

@media (max-width: 420px) {
  .games-grid { gap: 0.5rem; }
  .game-name { font-size: 12px; }
  .hero-h1 { font-size: 1.6rem; }
}
