/* ============================================================
   B7-NL — Stylesheet
   Dark, modern, casino-geïnspireerd designsysteem
   ============================================================ */

/* ---------- 1. Variabelen & reset ---------- */
:root {
  /* Centrale kleuren — pas het hele thema hier aan */
  --primary-dark: #12101B;   /* diep navy-zwart */
  --accent-green: #FF7A1A;   /* hoofdaccent: oranje (naam behouden voor compatibiliteit) */
  --purple: #7C3AED;         /* paars voor gradients en glow */
  --purple-deep: #2A1B4A;
  --black: #000000;
  --white: #FFFFFF;

  /* Afgeleide tinten van het hoofdpalet */
  --bg: var(--primary-dark);
  --bg-secondary: var(--black);
  --accent: var(--accent-green);
  --accent-light: #FF9A3D;
  --accent-dark: #D95F00;
  --text-secondary: #C9C4D4;
  --card: #1B1726;
  --card-border: rgba(255, 122, 26, 0.22);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.6);
  --glow-purple: 0 0 26px rgba(124, 58, 237, 0.3);
  --glow-orange: 0 0 18px rgba(255, 122, 26, 0.25);
  --transition: all 0.25s ease;
  --container: 1160px;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif; /* moderne sans, conform referentie */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background-color: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

ul,
ol {
  list-style-position: inside;
}

/* ---------- 2. Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

.section-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.accent-text { color: var(--accent); }

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
}

.title-underline {
  width: 64px;
  height: 3px;
  margin: 0.9rem auto 2rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 4. Knoppen ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
  color: #000000;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 122, 26, 0.35);
  color: #000000;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: rgba(255, 122, 26, 0.12);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.92rem;
}

/* ---------- 5. Header & navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 16, 27, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0.4rem 0.1rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta { flex-shrink: 0; }

/* ---------- Dropdown mega-menu ---------- */
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0.4rem 0.1rem;
  transition: var(--transition);
}

.nav-drop-btn .caret {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  color: var(--accent);
}

.has-dropdown:hover .nav-drop-btn,
.has-dropdown.open .nav-drop-btn {
  color: var(--white);
}

.has-dropdown.open .nav-drop-btn .caret {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 999;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 122, 26, 0.07);
  border-color: var(--card-border);
  transform: translateY(-2px);
}

.dropdown-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.25), rgba(255, 122, 26, 0.08));
  border: 1px solid var(--card-border);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-text strong {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 600;
}

.dropdown-text small {
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.45;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 120px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 85%, rgba(255, 122, 26, 0.12), transparent 60%),
    linear-gradient(180deg, #1A1230 0%, var(--bg) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 122, 26, 0.18);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -140px;
}

.hero::after {
  width: 300px;
  height: 300px;
  bottom: -140px;
  left: -110px;
}

.hero-suits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-family: var(--font-heading);
  color: rgba(255, 122, 26, 0.08);
  user-select: none;
}

.hero-suits span {
  position: absolute;
  font-size: 5.5rem;
  line-height: 1;
}

.hero-suits span:nth-child(1) { top: 12%; left: 6%; transform: rotate(-14deg); }
.hero-suits span:nth-child(2) { top: 62%; left: 14%; font-size: 3.6rem; transform: rotate(10deg); }
.hero-suits span:nth-child(3) { top: 18%; right: 10%; font-size: 4.4rem; transform: rotate(12deg); }
.hero-suits span:nth-child(4) { top: 68%; right: 6%; transform: rotate(-8deg); }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.15rem;
  max-width: 660px;
  margin: 1.2rem auto 2.2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- 7. Kaarten ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 122, 26, 0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.22), rgba(255, 122, 26, 0.06));
  border: 1px solid var(--card-border);
  color: var(--accent);
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.card p:last-child { margin-bottom: 0; }

.card ul {
  list-style: none;
  margin-top: 0.4rem;
}

.card ul li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.card ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.7rem;
  line-height: 2.4;
}

/* ---------- 7b. Spellen-grid ---------- */
.games-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3rem 0 1.6rem;
}

.games-header h3 {
  margin: 0;
  font-size: 1.3rem;
  white-space: nowrap;
}

.games-header .games-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.4), rgba(255, 122, 26, 0.05));
}

.games-header a {
  font-size: 0.92rem;
  white-space: nowrap;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 1.1rem;
}

.game-tile {
  text-align: center;
  transition: var(--transition);
}

.game-tile:hover {
  transform: translateY(-4px);
}

.game-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.game-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 45%);
  pointer-events: none;
}

.game-tile:hover .game-art {
  box-shadow: 0 10px 26px rgba(255, 122, 26, 0.25);
  border-color: rgba(255, 122, 26, 0.45);
}

.game-name {
  display: block;
  margin-top: 0.6rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.game-tag {
  display: block;
  color: var(--text-secondary);
  font-size: 0.76rem;
  margin-top: 0.1rem;
}

/* Nieuwe slots-grid (Populaire Spellen) */
.slots-header h3 { display: flex; align-items: center; gap: 0.5rem; }

.slots-heart { color: var(--accent-green); }

.slots-rule {
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.55), rgba(255, 122, 26, 0.06)) !important;
}

.slots-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 122, 26, 0.55);
  background: rgba(255, 122, 26, 0.08);
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.slots-viewall:hover {
  background: rgba(255, 122, 26, 0.18);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(255, 122, 26, 0.35);
  transform: translateY(-1px);
}

.slots-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent-green);
  color: #000000;
  font-size: 0.78rem;
  font-weight: 700;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.slot-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.slot-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 122, 26, 0.28);
}

.slot-art {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000000;
  padding: 6px;
}

.slot-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}

.slot-card:hover .slot-art img { opacity: 0.92; }

.slot-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem 0.8rem;
  background: #000000;
  border-top: 1px solid rgba(255, 122, 26, 0.25);
}

.slot-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.25;
}

.slot-provider {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }

  .slots-header .slots-viewall { margin-left: auto; }
}

.game-extra { display: none; }

.game-extra.revealed { display: block; }

.games-more {
  text-align: center;
  margin-top: 1.8rem;
}

.games-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.4rem;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 0.8rem; }
  .game-art { font-size: 2.1rem; border-radius: 12px; }
  .games-header { flex-wrap: wrap; gap: 0.6rem; }
}

/* ---------- 8. Inhoudsopgave (TOC) ---------- */
.toc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}

.toc h2 { text-align: center; }

.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.6rem;
  margin-top: 1.2rem;
}

.toc ol li { counter-increment: toc-counter; }

.toc ol a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: var(--transition);
}

.toc ol a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.toc ol a:hover {
  color: var(--white);
  border-color: var(--card-border);
  background: rgba(255, 122, 26, 0.07);
  transform: translateX(4px);
}

/* ---------- 9. Stappen / tijdlijn ---------- */
.steps {
  list-style: none;
  counter-reset: step-counter;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.steps li {
  counter-increment: step-counter;
  position: relative;
  padding: 0 0 2rem 74px;
}

.steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.steps li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.4), rgba(255, 122, 26, 0.08));
}

.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }

.steps h3 { margin-bottom: 0.3rem; }
.steps p { margin-bottom: 0; }

/* ---------- 9a. Vergelijkingstabel ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--card);
  font-size: 0.93rem;
}

.compare-table caption {
  caption-side: top;
  text-align: left;
  padding: 1.2rem 1.3rem 0.9rem;
  background: var(--card);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table thead th {
  background: var(--bg-secondary);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  white-space: nowrap;
}

.compare-table tbody th {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.compare-table tbody tr:hover {
  background: rgba(255, 122, 26, 0.05);
}

.check-yes {
  color: var(--accent-green);
  font-weight: 700;
}

.check-no {
  color: #8A8F9F;
  font-weight: 700;
}

.table-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: var(--text-secondary);
}

/* ---------- 9b. Zo werkt het (proces-uitleg met afbeeldingen) ---------- */
.howto-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.howto-row:last-of-type { margin-bottom: 0; }

.howto-row.reverse .howto-image { order: 2; }

.howto-image img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.howto-image img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.howto-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.howto-content .howto-label {
  display: inline-block;
  padding: 0.2rem 0.9rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid var(--card-border);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.howto-steps {
  list-style: none;
  counter-reset: howto-counter;
  margin-top: 1rem;
}

.howto-steps li {
  counter-increment: howto-counter;
  position: relative;
  padding: 0 0 0.9rem 44px;
}

.howto-steps li::before {
  content: counter(howto-counter);
  position: absolute;
  left: 0;
  top: -1px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .howto-row,
  .howto-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .howto-row.reverse .howto-image { order: 0; }

  .howto-image {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ---------- 10. FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(255, 122, 26, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.3rem 1.2rem;
}

.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ---------- 10b. Recensies / testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.35);
}

.testimonial-badge {
  align-self: flex-start;
  padding: 0.15rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px dashed rgba(255, 122, 26, 0.5);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}

.stars .star-off { color: rgba(255, 255, 255, 0.28); }

.testimonial-text {
  flex: 1;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.35), rgba(255, 122, 26, 0.1));
  border: 1px solid var(--card-border);
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  display: block;
}

.testimonial-date {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- 11. CTA-sectie ---------- */
.cta-section {
  position: relative;
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(ellipse 55% 65% at 50% 0%, rgba(124, 58, 237, 0.30), transparent 65%),
    radial-gradient(ellipse 40% 45% at 80% 100%, rgba(255, 122, 26, 0.10), transparent 60%),
    var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cta-section p {
  max-width: 640px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- 12. Waarschuwing / 18+ ---------- */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.notice-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 122, 26, 0.07);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  margin: 2rem auto 0;
  max-width: 820px;
}

.notice-box p { margin: 0; }

/* ---------- 13. Footer ---------- */
.site-footer {
  background: #000000;
  border-top: 1px solid var(--card-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
}

.footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-col p { font-size: 0.95rem; }

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-warning {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-warning p {
  font-size: 0.88rem;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 0.88rem;
}

.footer-bottom p { margin: 0; }

/* ---------- 14. Pagina-header (subpagina's) ---------- */
.page-header {
  padding: 70px 0 56px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 65%),
    var(--bg-secondary);
  border-bottom: 1px solid var(--card-border);
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.45rem;
  color: var(--accent);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb li[aria-current="page"] { color: var(--white); }

/* ---------- 15. Tekstpagina's (privacy, voorwaarden, e.d.) ---------- */
.content-page {
  max-width: 840px;
  margin: 0 auto;
}

.content-page h2 {
  margin-top: 2.4rem;
  font-size: 1.45rem;
}

.content-page h2:first-child { margin-top: 0; }

.content-page h3 {
  margin-top: 1.6rem;
  font-size: 1.15rem;
}

.content-page ul,
.content-page ol {
  margin: 0 0 1.2rem 0;
  list-style-position: outside;
  padding-left: 1.4rem;
}

.content-page ul li,
.content-page ol li {
  margin-bottom: 0.5rem;
}

.content-page ul { list-style-type: none; }

.content-page ul li {
  position: relative;
  padding-left: 0.4rem;
}

.content-page ul li::marker { content: ""; }

.content-page ul li::before {
  content: "◆";
  position: absolute;
  left: -1.3rem;
  color: var(--accent);
  font-size: 0.65rem;
  top: 0.45rem;
}

.updated-date {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* ---------- 16. Contactformulier ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group label .required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
}

.form-note {
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ---------- 16b. Promo popup (entry overlay) ---------- */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-overlay.visible { opacity: 1; }

.promo-overlay.closing { opacity: 0; }

body.popup-open { overflow: hidden; }

.promo-dialog {
  position: relative;
  width: 100%;
  max-width: 880px; /* ±65% van desktop-breedte */
  background: var(--card);
  border: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 122, 26, 0.18);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  overflow: hidden;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-overlay.visible .promo-dialog { transform: scale(1) translateY(0); }

.promo-overlay.closing .promo-dialog { transform: scale(0.94) translateY(8px); }

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000000;
  border: 2px solid var(--accent-green);
  color: #FFFFFF;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 0 16px rgba(255, 122, 26, 0.6);
}

.promo-content {
  padding: 2.6rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.promo-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.15);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.promo-content h2 {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0;
}

.promo-content h2 .promo-accent { color: var(--accent-green); }

.promo-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  margin: 0;
}

.promo-offers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.3rem 0 0.5rem;
  padding: 0;
}

.promo-offers li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-size: 0.94rem;
  font-weight: 500;
}

.promo-offers li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-green);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
}

.promo-cta {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #02cc19, var(--accent-green) 55%, #018f10);
  color: #000000;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 20px rgba(255, 122, 26, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 122, 26, 0.65);
  color: #000000;
}

.promo-secondary {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-secondary:hover { color: var(--accent-green); }

.promo-terms {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.4rem;
}

/* Visual (rechterkant) */
.promo-visual {
  position: relative;
  background:
    radial-gradient(circle at 65% 35%, rgba(255, 122, 26, 0.32), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(255, 122, 26, 0.15), transparent 50%),
    #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.promo-visual::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 122, 26, 0.4);
  animation: promo-spin 24s linear infinite;
}

@keyframes promo-spin {
  to { transform: rotate(360deg); }
}

.promo-coin {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 32% 28%, #03e01f, var(--accent-green) 55%, #016b0c);
  border: 4px solid var(--card);
  box-shadow: 0 0 45px rgba(255, 122, 26, 0.55), inset 0 -8px 18px rgba(0, 0, 0, 0.35);
  color: #000000;
  font-family: var(--font-heading);
  text-align: center;
}

.promo-coin strong {
  font-size: 2.4rem;
  line-height: 1;
}

.promo-coin span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.promo-suits span {
  position: absolute;
  color: rgba(255, 122, 26, 0.5);
  font-size: 1.7rem;
  z-index: 1;
}

.promo-suits span:nth-child(1) { top: 12%; left: 14%; transform: rotate(-14deg); }
.promo-suits span:nth-child(2) { top: 18%; right: 12%; transform: rotate(12deg); font-size: 1.3rem; }
.promo-suits span:nth-child(3) { bottom: 14%; left: 18%; transform: rotate(8deg); font-size: 1.4rem; }
.promo-suits span:nth-child(4) { bottom: 10%; right: 16%; transform: rotate(-10deg); }

.promo-age {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 760px) {
  .promo-dialog {
    grid-template-columns: 1fr;
    max-width: 94vw;
    max-height: 92vh;
    overflow-y: auto;
  }

  .promo-visual {
    order: -1;
    min-height: 150px;
  }

  .promo-visual::before { width: 130px; height: 130px; }

  .promo-coin {
    width: 96px;
    height: 96px;
    border-width: 3px;
  }

  .promo-coin strong { font-size: 1.5rem; }

  .promo-content { padding: 1.6rem 1.4rem 1.9rem; }

  .promo-close { top: 10px; right: 10px; }
}

/* ---------- 17. Toegankelijkheid ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  padding: 0.7rem 1.2rem;
  background: var(--accent);
  color: #000000;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: #000000;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- 18. Responsief ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .main-nav a { font-size: 0.9rem; }
  .main-nav ul { gap: 1rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  /* Dropdowns worden inklapbare sublijsten op mobiel */
  .has-dropdown { position: relative; }

  .nav-drop-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.4rem;
    font-size: 1.02rem;
  }

  .dropdown-panel {
    position: static;
    box-shadow: none;
    border-bottom: none;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.18);
  }

  .has-dropdown:hover .dropdown-panel { visibility: hidden; }

  .has-dropdown.open .dropdown-panel {
    visibility: visible;
    max-height: 600px;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.6rem 0.8rem 1rem;
  }

  .dropdown-item { padding: 0.7rem 0.8rem; }

  .dropdown-item:hover { transform: none; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1.4rem;
    font-size: 1.02rem;
  }

  .main-nav a::after { display: none; }

  .main-nav a:hover,
  .main-nav a.active {
    background: rgba(255, 122, 26, 0.08);
    color: var(--accent-light);
  }

  .main-nav .nav-cta-item {
    padding: 0.9rem 1.4rem;
  }

  .main-nav .nav-cta-item .btn { width: 100%; }

  .contact-layout { grid-template-columns: 1fr; }
}

@media (min-width: 861px) {
  .main-nav .nav-cta-item { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }

  .hero { padding: 80px 0 90px; }

  .hero p { font-size: 1.05rem; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .toc ol { grid-template-columns: 1fr; }

  .toc { padding: 1.4rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .steps li { padding-left: 62px; }

  .steps li::before {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .steps li::after { left: 20px; top: 46px; }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  .notice-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-warning { flex-direction: column; }
}

@media (max-width: 375px) {
  .container { padding: 0 14px; }

  .logo-link img { height: 36px; }
}

/* ---------- 16c. Promo popup — vereenvoudigde bonus-layout & typografie ---------- */
.promo-dialog,
.promo-dialog h2,
.promo-dialog p,
.promo-dialog a,
.promo-dialog span,
.promo-dialog button {
  font-family: Arial, Helvetica, sans-serif;
}

.promo-content {
  gap: 1rem;
  justify-content: center;
}

.promo-content h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
}

.promo-content p {
  color: var(--white);
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 34ch;
}

.promo-offer {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 122, 26, 0.55);
  background: rgba(255, 122, 26, 0.1);
  box-shadow: 0 0 26px rgba(255, 122, 26, 0.25);
  color: var(--accent-green);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.promo-cta {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 700;
}

.promo-terms {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 400;
}

/* Grotere, rustigere visual */
.promo-visual { min-height: 380px; }

.promo-coin {
  width: 170px;
  height: 170px;
}

.promo-coin strong {
  font-size: 3.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.promo-coin span {
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.promo-chips {
  position: absolute;
  bottom: 26px;
  left: 26px;
  z-index: 1;
}

.promo-chips span {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #231C33, #000000 70%);
  border: 4px dashed rgba(255, 122, 26, 0.75);
}

.promo-chips span:nth-child(1) { bottom: 0; left: 0; }
.promo-chips span:nth-child(2) { bottom: 10px; left: 30px; }
.promo-chips span:nth-child(3) { bottom: 22px; left: 6px; }

.promo-spark {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.9);
  z-index: 1;
}

.promo-spark-1 { width: 8px; height: 8px; top: 24%; right: 22%; }
.promo-spark-2 { width: 5px; height: 5px; bottom: 30%; right: 34%; }

@media (max-width: 760px) {
  .promo-visual { min-height: 170px; }

  .promo-coin { width: 104px; height: 104px; }

  .promo-coin strong { font-size: 2rem; }

  .promo-content p { font-size: 0.95rem; }

  .promo-offer { font-size: 1.25rem; }
}

/* ---------- 13b. Nieuwe footer (4 kolommen) ---------- */
.footer-grid-4 {
  grid-template-columns: 1fr 1.1fr 1fr 1.3fr;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.fc-icon {
  color: var(--accent-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pay-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.5);
}

.pay-visa { color: #1A1F71; font-weight: 800; font-style: italic; font-size: 0.85rem; letter-spacing: 0.5px; font-family: Arial, sans-serif; }
.pay-mc { display: inline-flex; }
.pay-mc i { width: 18px; height: 18px; border-radius: 50%; display: inline-block; }
.pay-mc i:first-child { background: #EB001B; margin-right: -7px; }
.pay-mc i:last-child { background: #F79E1B; opacity: 0.9; }
.pay-btc { color: #F7931A; font-weight: 800; font-size: 1.2rem; font-family: Arial, sans-serif; }
.pay-ideal { color: #C06; font-weight: 800; font-size: 0.8rem; font-family: Arial, sans-serif; }
.pay-wallet { color: var(--card); font-weight: 700; font-size: 0.72rem; font-family: Arial, sans-serif; }
.pay-bank { font-size: 1.1rem; }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--primary-dark);
}

.trust-badge {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.trust-badge:hover {
  color: var(--white);
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.35);
}

.trust-note {
  width: 100%;
  text-align: center;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.footer-trust .age-badge { width: 42px; height: 42px; font-size: 0.9rem; }

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

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

/* ---------- 5b. Header: zoekknop + extra knop ---------- */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-toggle svg { width: 18px; height: 18px; }

.search-toggle:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.35);
}

.btn-outline { background: var(--black); }

@media (max-width: 860px) {
  .header-cta { display: flex; }
  .header-cta .btn { display: none; }
}

@media (max-width: 1200px) and (min-width: 861px) {
  .header-cta .btn-outline { display: none; }
}

/* ---------- Zoek-overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 20px 20px;
  background: rgba(0, 0, 0, 0.82);
}

.search-overlay.open { display: flex; }

.search-box {
  width: 100%;
  max-width: 560px;
  background: var(--primary-dark);
  border: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.search-box input {
  width: 100%;
  padding: 1.05rem 1.2rem;
  background: var(--black);
  border: none;
  border-bottom: 1px solid rgba(255, 122, 26, 0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.search-box input:focus { outline: none; }

.search-results {
  list-style: none;
  max-height: 46vh;
  overflow-y: auto;
}

.search-results li a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.search-results li a strong { color: var(--white); display: block; font-size: 0.98rem; }

.search-results li a:hover,
.search-results li.selected a {
  background: rgba(255, 122, 26, 0.1);
  color: var(--white);
}

.search-empty {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---------- 10c. Testimonials: rating & beoordelingsformulier ---------- */
.t-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.t-id { display: flex; flex-direction: column; gap: 0.25rem; }

.t-id .testimonial-name { font-size: 1rem; }

.t-rating {
  margin-bottom: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.t-rating .star-on { color: var(--accent-green); }

.rating-num {
  color: var(--white);
  font-weight: 700;
  margin-left: 0.45rem;
  letter-spacing: 0;
}

.rating-max {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0;
}

.rating-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Modal */
.rating-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
}

.rating-overlay.open { display: flex; }

.rating-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--primary-dark);
  border: 1px solid rgba(255, 122, 26, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 122, 26, 0.15);
  padding: 2rem 1.8rem;
}

.rating-modal h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 1.35rem;
}

.rating-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--accent-green);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.rating-close:hover { transform: rotate(90deg); }

.rating-field { margin-bottom: 1.1rem; }

.rating-field label,
.rating-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  font-family: Arial, Helvetica, sans-serif;
}

.rating-field input,
.rating-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--black);
  border: 1px solid rgba(255, 122, 26, 0.45);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.rating-field textarea { min-height: 110px; resize: vertical; }

.rating-field input:focus,
.rating-field textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

.star-select { display: flex; gap: 0.3rem; }

.star-btn {
  background: transparent;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0.1rem;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-btn:hover { transform: scale(1.15); }

.star-btn.on { color: var(--accent-green); }

.rating-error {
  color: #FF8080;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}

.rating-submit { width: 100%; }

.rating-success { text-align: center; padding: 1.4rem 0 0.6rem; }

.rating-success p { color: var(--white); margin-bottom: 0.4rem; }

.rating-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.15);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  font-size: 1.6rem;
}

/* ---------- 16d. Promo popup — afbeeldingsversie ---------- */
.promo-image-dialog {
  display: block;
  max-width: 372px;
  background: var(--black);
}

.promo-image-dialog .promo-image-link {
  display: block;
  line-height: 0;
}

.promo-image-dialog img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.promo-image-dialog .promo-close {
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
}

@media (max-height: 560px) {
  .promo-image-dialog { max-width: 300px; }
}

/* ---------- 5c. Account-knoppen (Aanmelden / Inloggen) ---------- */
.btn-account {
  background: var(--accent-green);
  color: #FFFFFF;
  font-weight: 700;
  border: 2px solid transparent;
}

.btn-account:hover {
  background: var(--accent-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 122, 26, 0.4);
}

/* Ruimte in de header bewaken nu er meer knoppen staan */
@media (max-width: 1400px) and (min-width: 861px) {
  .header-cta .btn-outline { display: none; }
}

@media (max-width: 1150px) and (min-width: 861px) {
  .header-cta .btn-primary { display: none; }
}

/* Account-knoppen in het mobiele menu */
@media (max-width: 860px) {
  .main-nav .nav-account-item {
    display: flex;
    gap: 0.7rem;
    padding: 0.9rem 1.4rem 0.3rem;
  }

  .main-nav .nav-account-item .btn {
    flex: 1;
    display: block;
  }
}

@media (min-width: 861px) {
  .main-nav .nav-account-item { display: none; }
}


/* ---------- Thema: paars/oranje verfijning ---------- */
.btn-primary,
.btn-account,
.promo-cta,
.rating-submit {
  color: #FFFFFF;
}

.btn-primary:hover { color: #FFFFFF; }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 122, 26, 0.1);
  color: #FFFFFF;
}

.card:hover,
.slot-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 22px rgba(124, 58, 237, 0.25), 0 0 14px rgba(255, 122, 26, 0.18);
}

.promo-dialog {
  border-color: rgba(255, 122, 26, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 46px rgba(124, 58, 237, 0.35), 0 0 24px rgba(255, 122, 26, 0.2);
}

.section-alt {
  background:
    radial-gradient(ellipse 45% 55% at 90% 8%, rgba(124, 58, 237, 0.10), transparent 60%),
    var(--black);
}

.games-header h3 .slots-heart,
.games-header .games-title .slots-heart,
.slots-heart { color: var(--accent); }

.skip-link { color: #000000; }

/* Knopkleur wint van .main-nav a in het mobiele menu */
.main-nav a.btn-primary,
.main-nav a.btn-account {
  color: #FFFFFF;
}

.main-nav a.btn-primary:hover,
.main-nav a.btn-account:hover {
  color: #FFFFFF;
}


/* ---------- STAP 1: globale typografie-hiërarchie (sans, referentiestijl) ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.3px;
}

h3, h4 { font-weight: 700; }

.section-title { letter-spacing: -0.5px; }

/* Consistente kaart-radius en glow-tokens toepasbaar via vars */
.card,
.testimonial-card,
.slot-card,
.contact-form,
.toc,
.table-wrap { border-radius: var(--radius); }

.promo-dialog,
.rating-modal { border-radius: var(--radius-lg); }

/* ---------- STAP 4: nieuwe hero-banner (referentiestijl) ---------- */
.hero {
  padding: 34px 0 52px;
  text-align: left;
}

.hero::before,
.hero::after { display: none; }

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 340px;
  padding: 2.6rem 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 122, 26, 0.28);
  background:
    radial-gradient(ellipse 60% 90% at 88% 50%, rgba(255, 122, 26, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 0%, rgba(124, 58, 237, 0.30), transparent 65%),
    linear-gradient(115deg, #1A1230 0%, #0C0A12 55%, #120A08 100%);
  box-shadow: var(--shadow), var(--glow-purple);
  overflow: hidden;
}

.hero-left h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  margin: 0;
  color: var(--white);
}

.hero-brand { color: var(--accent); }

.hero-sub {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  margin: 0.7rem 0 1.8rem;
}

.hero-register {
  padding: 0.85rem 2.3rem;
  font-size: 1.02rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  max-width: 430px;
  filter: drop-shadow(0 0 34px rgba(255, 90, 40, 0.35));
}

/* Feature-strip onder de banner */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0C0A12;
}

.hf-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
}

.hf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.4rem;
  }

  .hero-art { order: -1; }

  .hero-art img { max-width: 260px; }

  .hero-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 430px) {
  .hero-features { grid-template-columns: 1fr; }

  .hf-item { justify-content: flex-start; }
}

/* Hero-artwork: exacte aangeleverde afbeelding, vierkant beeldformaat */
.hero-art img {
  max-width: 340px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 90, 40, 0.35));
}

@media (max-width: 900px) {
  .hero-art img { max-width: 240px; }
}

/* ---------- Dashboard-layout met sidebar (referentiestructuur) ---------- */
.page-layout { display: block; }

.side-nav { display: none; }

@media (min-width: 1200px) {
  .page-layout {
    display: grid;
    grid-template-columns: 212px minmax(0, 1fr);
    gap: 1.6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .page-content { min-width: 0; }

  .page-content .container {
    max-width: 100%;
    padding: 0 6px;
  }

  .side-nav {
    display: block;
    position: sticky;
    top: 86px;
    align-self: start;
    background: #0C0A12;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 0.9rem 0.7rem;
    margin-top: 14px;
  }
}

.side-nav ul { list-style: none; }

.side-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.52rem 0.75rem;
  margin-bottom: 2px;
  border-radius: 9px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.side-nav a:hover {
  color: var(--white);
  background: rgba(255, 122, 26, 0.09);
}

.side-nav a.active {
  color: var(--accent);
  background: rgba(255, 122, 26, 0.13);
  font-weight: 700;
}

.sn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-size: 0.92rem;
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.sn-divider {
  height: 1px;
  margin: 0.7rem 0.4rem;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Compacte dashboard-proporties ---------- */
.page-content .section { padding: 34px 0; }

.page-content .hero { padding: 14px 0 6px; }

.hero-banner {
  min-height: 265px;
  padding: 2rem 2.4rem;
  gap: 1rem;
}

.hero-left h1 { font-size: clamp(1.6rem, 2.6vw, 2.35rem); }

.hero-sub { margin: 0.5rem 0 1.3rem; }

.hero-register { padding: 0.7rem 1.9rem; font-size: 0.95rem; }

.hero-art img { max-width: 260px; }

/* Feature-strip: 4 losse compacte kaarten */
.hero-features {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0.9rem;
}

.hf-item {
  background: #0C0A12;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.75rem 0.6rem;
  font-size: 0.88rem;
}

/* ---------- Spellenrijen: één horizontale rij, 5 zichtbaar ---------- */
.slots-grid {
  display: flex;
  overflow-x: auto;
  gap: 0.85rem;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 122, 26, 0.5) transparent;
}

.slots-grid::-webkit-scrollbar { height: 6px; }
.slots-grid::-webkit-scrollbar-thumb { background: rgba(255, 122, 26, 0.45); border-radius: 3px; }
.slots-grid::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }

.slots-grid .slot-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
}

@media (min-width: 1200px) {
  .slots-grid .slot-card { flex-basis: calc((100% - 4 * 0.85rem) / 5); }
}

@media (max-width: 560px) {
  .slots-grid .slot-card { flex-basis: 146px; }
}

.section-games .games-header { margin: 0 0 1.1rem; }

/* Live casino kaarten: liggende (3:2) dealer-afbeeldingen */
.live-grid .slot-card { flex-basis: 224px; }

.live-card .slot-art {
  aspect-ratio: 3 / 2;
  padding: 0;
}

.live-card .slot-art img { object-fit: cover; }

@media (min-width: 1200px) {
  .live-grid .slot-card { flex-basis: calc((100% - 3 * 0.85rem) / 4); }
}

@media (max-width: 560px) {
  .live-grid .slot-card { flex-basis: 200px; }
}

/* Live badge */
.slot-art { position: relative; }

.live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 122, 26, 0.7);
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* ---------- Alle Spellen pagina ---------- */
.allgames-section .container { max-width: 1180px; }

.allgames-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.1rem;
}

.allgames-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.allgames-search {
  position: relative;
  flex: 1 1 260px;
}

.allgames-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.allgames-search input {
  width: 100%;
  padding: 0.68rem 1rem 0.68rem 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0C0A12;
  color: var(--white);
  font-size: 0.95rem;
}

.allgames-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

.provider-select select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.68rem 2.4rem 0.68rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0C0A12 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9C4D4' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.provider-select select:focus {
  outline: none;
  border-color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.chip {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: #1B1726;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.chip:hover {
  color: var(--white);
  border-color: rgba(255, 122, 26, 0.5);
}

.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

/* 4-koloms grid (overschrijft de flex-rij van .slots-grid) */
.all-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  overflow: visible;
  padding-bottom: 0;
}

.all-games-grid .slot-card {
  flex-basis: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.all-games-grid .slot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.65);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.35), 0 0 40px rgba(124, 58, 237, 0.18);
}

.all-games-grid .slot-card[hidden] { display: none; }

.all-games-grid .live-card .slot-art {
  aspect-ratio: 1 / 1;
  padding: 0;
}

@media (max-width: 1024px) {
  .all-games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .all-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.games-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 2.2rem 0 1rem;
}

/* Paginering */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.7rem 0 0.4rem;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 0.6rem;
  border-radius: 10px;
  background: #1B1726;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.page-btn:hover { border-color: rgba(255, 122, 26, 0.55); }

.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.page-btn.ellipsis {
  background: transparent;
  border: none;
  cursor: default;
  color: var(--text-secondary);
}

/* Kruimelpad */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin: 0 0 0.8rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.18s ease;
}

.breadcrumbs a:hover { color: var(--accent); }

.bc-sep { color: var(--text-secondary); opacity: 0.7; }

.bc-current { color: var(--accent); font-weight: 600; }

/* ---------- Testimonials: avatar boven de naam (gecentreerde kaartkop) ---------- */
.t-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.t-id { align-items: center; }

.t-rating { justify-content: center; }

.testimonial-card .testimonial-avatar {
  width: 72px;
  height: 72px;
  font-size: 1.6rem;
  color: #FFFFFF;
  background:
    linear-gradient(#1B1726, #1B1726) padding-box,
    linear-gradient(135deg, var(--purple), var(--accent)) border-box;
  border: 3px solid transparent;
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
}

.testimonial-card .testimonial-text { text-align: center; }

@media (max-width: 560px) {
  .testimonial-card .testimonial-avatar { width: 60px; height: 60px; font-size: 1.35rem; }
}

/* Alle Spellen: intro + volledige zichtbaarheid van liggende live-art in het grid */
.allgames-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: -0.4rem 0 1.1rem;
  max-width: 640px;
}

.all-games-grid .live-card .slot-art img { object-fit: contain; }

/* Hero: bonusregel */
.hero-offer {
  color: var(--accent-light);
  font-weight: 700;
  font-size: 1rem;
  margin: 0.1rem 0 1rem;
}

.hero-left h1 { font-size: clamp(1.35rem, 2.6vw, 2.05rem); line-height: 1.25; }

/* ---------- Live Casino pagina ---------- */
.lc-head { padding-bottom: 0 !important; }

.lc-section .games-header { margin-bottom: 1rem; }

.lc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.lc-grid .slot-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lc-grid .slot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 26, 0.65);
  box-shadow: 0 0 22px rgba(255, 122, 26, 0.35), 0 0 40px rgba(124, 58, 237, 0.18);
}

.lc-grid .slot-art {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #000000;
}

.lc-grid .slot-art img { object-fit: contain; }

@media (max-width: 1024px) {
  .lc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .lc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.lc-pending { text-align: left; }

/* Live Bets tabel */
.live-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 122, 26, 0.7);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.bets-tabs { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0 0 1rem; }

.bets-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: #14111D;
}

.bets-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 0.9rem; }

.bets-table th {
  text-align: left;
  padding: 0.8rem 1rem;
  color: var(--text-secondary);
  font-size: 0.74rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 122, 26, 0.25);
  background: #0C0A12;
}

.bets-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.bets-table tbody tr:last-child td { border-bottom: none; }

.bets-table tbody tr:hover { background: rgba(255, 122, 26, 0.05); }

.bets-mult { color: var(--purple); font-weight: 700; }

.bets-win { color: var(--accent); font-weight: 700; }

.bets-zero { color: var(--text-secondary); }

/* ---------- Live Casino: compacte 6-koloms kaartrijen (referentie-layout) ---------- */
.lc-grid { gap: 0.8rem; }

@media (min-width: 1200px) {
  .lc-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .lc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.lc-grid .slot-info { padding: 0.5rem 0.6rem 0.6rem; gap: 0.1rem; }

.lc-grid .slot-name { font-size: 0.83rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.lc-grid .slot-provider { font-size: 0.66rem; }

.lc-section { padding: 30px 0 !important; }

/* Live Bets tabel: referentie-detaillering */
.bets-tabs { align-items: center; }

.live-pill {
  border-color: rgba(34, 197, 94, 0.75);
  color: #22C55E;
}

.bets-views { margin-left: auto; display: inline-flex; gap: 0.4rem; }

.bets-view {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
}

.bets-view:hover { color: var(--white); }

.bets-view.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
}

.bets-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.03); }

.bets-table tbody tr:hover { background: rgba(255, 122, 26, 0.07); }

.bets-mult {
  display: inline-block;
  padding: 0.14rem 0.6rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #7EB3FF;
  font-weight: 700;
  font-size: 0.82rem;
}

.bets-table td.bets-win { color: #FFC93D; font-weight: 700; }

/* ---------- Slots pagina ---------- */
.slots-intro { max-width: 760px; }

.slots-intro p { color: var(--text-secondary); font-size: 0.95rem; margin: 0 0 0.75rem; }

.btn-playnow {
  display: inline-block;
  margin: 0.35rem 0 0.2rem;
  padding: 0.75rem 2.2rem;
  font-size: 1rem;
}

.slots-page-grid .slot-card[hidden] { display: none; }

.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.fav-btn:hover { transform: scale(1.1); border-color: rgba(255, 122, 26, 0.7); }

.fav-btn.active { color: var(--accent); border-color: rgba(255, 122, 26, 0.8); }

/* Categorie-afbeeldingen in de Populaire Casinospellen-kaarten */
.card.card-catimg { overflow: hidden; }

.cat-img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 122, 26, 0.25);
  margin: 0 0 1.1rem;
}

@media (max-width: 560px) {
  .cat-img { height: 128px; }
}

/* Betaalmethode-iconen bovenaan de kaarten */
.pay-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.pay-ico svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Echte proces-screenshots in Zo Werkt Het */
.howto-image img[src*="-echt"], .howto-image img[src*="-nl.svg"] {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 26, 0.25);
  box-shadow: var(--glow-purple);
}

/* Echte mobiele screenshot in Mobiel Casino-sectie */
.howto-image img.mobiel-echt {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 26, 0.25);
  box-shadow: var(--glow-purple);
  object-fit: contain;
}

/* B7 overzicht: tekstblok */
.prose-block { max-width: 860px; margin: 0 auto; }

.prose-block p { color: var(--text-secondary); font-size: 0.97rem; line-height: 1.75; margin: 0 0 1rem; }

.prose-block h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.7rem;
}

/* Afbeelding binnen tekstblokken */
.prose-img { margin: 0.4rem auto 1.2rem; }

/* Kaarttitels en spelrij-labels: zelfde uiterlijk als voorheen (h3-stijl),
   maar semantisch geen kop zodat de H2/H3-hi&euml;rarchie zuiver blijft */
.card-heading,
.games-title {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.games-header .games-title {
  margin: 0;
  font-size: 1.3rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Extra topnavigatie-items (nieuwe pagina's) */
.main-nav a.nav-extra.active { color: var(--accent); }

@media (min-width: 992px) and (max-width: 1280px) {
  .main-nav > ul { gap: 0.45rem; }
  .main-nav a { font-size: 0.88rem; }
  .main-nav a.nav-extra { font-size: 0.84rem; }
  .header-cta .btn-account { padding: 0.45rem 0.8rem; font-size: 0.82rem; }
  .header-inner { gap: 0.6rem; }
  .logo-link img { width: 110px; height: auto; }
}

/* Artikelpagina's: linkse uitlijning + bijgewerkt-datum */
.prose-left { margin: 0; }

.prose-left h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.8rem;
  color: var(--white);
}

.prose-left h3 { margin-top: 1.3rem; }

.page-updated {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: -0.4rem 0 1.4rem;
}

/* Review: verdict-box en voor/nadelen */
.verdict-box {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(255, 122, 26, 0.10));
  border: 1px solid rgba(255, 122, 26, 0.35);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin: 0 0 1.6rem;
  max-width: 860px;
}

.verdict-score {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background:
    linear-gradient(#14111D, #14111D) padding-box,
    linear-gradient(135deg, var(--purple), var(--accent)) border-box;
  border: 4px solid transparent;
  padding-top: 30px;
}

.verdict-num { font-size: 2.1rem; font-weight: 800; color: var(--white); line-height: 1; }

.verdict-max { font-size: 1rem; color: var(--text-secondary); }

.verdict-line { color: var(--white); font-weight: 600; margin: 0 0 0.6rem; }

.verdict-subs { list-style: none; padding: 0; margin: 0; }

.verdict-subs li { color: var(--text-secondary); font-size: 0.92rem; padding: 0.15rem 0; }

.methodology-note {
  background: #14111D;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
}

.pros-cons { margin: 1rem 0 0.6rem; }

.pros-cons .card ul { margin: 0; padding-left: 1.1rem; }

.pros-cons .card li { margin-bottom: 0.5rem; color: var(--text-secondary); }

@media (max-width: 700px) {
  .verdict-box { flex-direction: column; text-align: center; }
  .verdict-subs { text-align: left; }
}

/* Voor/nadelen: nooit breder dan de viewport */
.pros-cons { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

@media (max-width: 760px) {
  .pros-cons { grid-template-columns: 1fr !important; }
}

.pros-cons .card { min-width: 0; }

.pros-cons .card li { overflow-wrap: break-word; hyphens: auto; }

/* Bonus-card en opsommingen op artikelpagina's */
.bonus-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(255, 122, 26, 0.10));
  border: 1px solid rgba(255, 122, 26, 0.35);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin: 0.4rem 0 1.4rem;
}

.bonus-card-status {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.bonus-card-list { list-style: none; padding: 0; margin: 0 0 1.1rem; }

.bonus-card-list li {
  color: var(--text-secondary);
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.bonus-card-list li:last-child { border-bottom: none; }

.bonus-card-note { color: var(--text-secondary); font-size: 0.85rem; margin: 0.8rem 0 0; }

.bullets { padding-left: 1.2rem; margin: 0 0 1rem; }

.bullets li { color: var(--text-secondary); margin-bottom: 0.55rem; line-height: 1.65; }

/* Afbeeldingen in tekstblokken: nooit paginavullend hoog */
.prose-block img.prose-img {
  width: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  margin: 0.4rem auto 1.2rem;
}

/* Bijschrift onder afbeeldingen in tekstblokken */
.img-caption {
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-align: center;
  max-width: 640px;
  margin: -0.6rem auto 1.4rem;
}

/* Audit-fixes: gelinkte kaarttitels, slot-kaart met los favoriet-knopje */
.card h3 a { color: inherit; text-decoration: none; transition: color 0.18s ease; }

.card h3 a:hover { color: var(--accent); }

.slots-page-grid .slot-card { position: relative; }

.slot-link { display: block; color: inherit; text-decoration: none; }

.fav-btn { z-index: 2; }

.lc-grid div.slot-card { cursor: default; }

/* Affiliate-disclosure regel + review-index kaart */
.affiliate-note {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-style: italic;
  max-width: 760px;
  margin: 0.2rem auto 1rem;
}

#bonus-code-pagina .affiliate-note, #review-pagina .affiliate-note { margin-left: 0; }

a.review-index-card { display: block; text-decoration: none; }

.review-index-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.2rem 0 0.4rem;
}

.review-index-score span { font-size: 1rem; color: var(--text-secondary); font-weight: 600; }

.review-index-meta { color: var(--text-secondary); font-size: 0.85rem; }

.review-index-cta { color: var(--accent); font-weight: 700; font-size: 0.92rem; }

a.review-index-card:hover { border-color: rgba(255, 122, 26, 0.6); }

/* ---------- Dropdown-fix: paneel direct onder het eigen menu-item ---------- */
@media (min-width: 861px) {
  .main-nav .has-dropdown { position: relative; }

  .dropdown-panel {
    left: 0;
    right: auto;
    top: 100%;
    width: 330px;
    padding-top: 10px;            /* vaste ruimte onder het item + hover-brug */
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    z-index: 1200;
  }

  .dropdown-panel .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.55rem;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0;
  }

  .dropdown-item { padding: 0.65rem 0.75rem; }

  .dropdown-item:hover { transform: none; }

  /* Laatste dropdown (Reviews) rechts uitlijnen zodat hij nooit buiten beeld valt */
  .main-nav > ul > li.has-dropdown:nth-child(4) .dropdown-panel {
    left: auto;
    right: 0;
  }
}


/* Single-file routing */
.route[hidden] { display: none; }
