/* ============================================================
   LALABET CASINO NL — styles.css
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --yellow:    #F2F230;
  --black:     #1B191C;
  --purple:    #3C2C94;
  --white:     #FFFFFF;
  --navy:      #1E1450;
  --navy-mid:  #251a62;
  --navy-light:#2e2175;
  --yellow-dark: #d4d400;
  --yellow-glow: rgba(242,242,48,0.35);
  --purple-dim: rgba(60,44,148,0.6);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-btn: 0 4px 18px rgba(242,242,48,0.45), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.22s ease;
  --header-h: 72px;
  --container: 1200px;
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.65;
  font-size: 16px;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

p { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover  { background: #fffb5e; box-shadow: 0 6px 28px rgba(242,242,48,0.65), 0 2px 8px rgba(0,0,0,0.5); transform: translateY(-2px) scale(1.02); }
.btn--primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 2px 8px rgba(242,242,48,0.3); }

.btn--ghost {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 0 0 var(--yellow-glow);
}
.btn--ghost:hover  { background: var(--yellow-glow); box-shadow: 0 0 18px var(--yellow-glow); transform: translateY(-2px); }
.btn--ghost:active { transform: translateY(0); }

.btn--xl { min-height: 56px; padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn--sm { min-height: 40px; padding: 9px 20px; font-size: 0.9rem; }

/* ---------- MEDIA CARD ---------- */
.mediaCard {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(242,242,48,0.2);
  background: var(--navy-mid);
  display: block;
}
.mediaCard__img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.mediaCard:hover .mediaCard__img { transform: scale(1.03); }
.mediaCard--tall .mediaCard__img { max-height: 480px; }
.mediaCard--wide .mediaCard__img { max-height: 280px; }

/* ---------- SECTION BASE ---------- */
.section {
  padding-block: clamp(56px, 8vw, 100px);
  position: relative;
}

.dark-section {
  background: var(--black);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section__header--left { text-align: left; }

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.section__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}
.section__header--left .section__title::after { margin-left: 0; }
.section__header:not(.section__header--left) .section__title::after { margin-inline: auto; }

.section__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin-inline: auto;
}
.section__header--left .section__sub { margin-inline: 0; }

.section__cta-wrap {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal, .reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible, .reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CATFISH ---------- */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, var(--purple) 0%, var(--navy-mid) 100%);
  border-top: 2px solid var(--yellow);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.catfish.is-hidden { transform: translateY(110%); }
.catfish__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px clamp(12px, 3vw, 24px);
  max-width: var(--container);
  margin-inline: auto;
  flex-wrap: nowrap;
}
.catfish__text {
  flex: 1;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: var(--white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}
.catfish__cta { flex-shrink: 0; white-space: nowrap; }
.catfish__close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color var(--transition);
}
.catfish__close:hover { color: var(--white); }

/* ---------- EXIT POPUP ---------- */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.82);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.exit-overlay.is-visible { display: flex; }

.exit-popup {
  background: linear-gradient(145deg, var(--navy-mid), var(--black));
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  max-width: 540px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: popIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}
.exit-popup__close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition);
}
.exit-popup__close:hover { color: var(--white); }
.exit-popup__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.exit-popup__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--yellow);
  margin-bottom: 12px;
}
.exit-popup__text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-size: 1rem;
}
.exit-popup__cta { width: 100%; }
.exit-popup__fine {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: rgba(27, 25, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,242,48,0.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.header__container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.header__nav { flex: 1; overflow: hidden; }
.header__nav-list {
  display: flex;
  gap: clamp(8px, 2vw, 28px);
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.header__nav-list::-webkit-scrollbar { display: none; }

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  transition: color var(--transition);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__cta { white-space: nowrap; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.hero__media-link { display: block; }
.hero__media {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.hero__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--black) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 5vw, 56px) 0 clamp(48px, 7vw, 80px);
  background: var(--black);
}
.hero__container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
  text-align: center;
}
.hero__badge {
  display: inline-block;
  background: var(--purple);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid var(--yellow);
}
.hero__title {
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  color: var(--white);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 32px;
  line-height: 1.25;
}
.hero__highlight {
  color: var(--yellow);
  text-shadow: 0 0 28px rgba(242,242,48,0.5);
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero__fine {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- VOORDELEN ---------- */
.voordelen { background: var(--navy); }
.voordelen__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.voordelen__card {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.voordelen__card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(242,242,48,0.12);
}
.voordelen__icon { font-size: 2.4rem; margin-bottom: 14px; }
.voordelen__card-title { font-size: 1.05rem; color: var(--yellow); margin-bottom: 8px; }
.voordelen__card-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ---------- BONUSSEN ---------- */
.bonussen { background: var(--black); }
.bonussen__featured {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--purple-dim) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.bonussen__featured-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.bonussen__featured-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.35;
}
.bonussen__steps {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonussen__steps li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
  min-width: 0;
}
.bonussen__dep { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.bonussen__reward { font-size: 0.9rem; font-weight: 800; color: var(--yellow); }

.bonussen__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px, 2vw, 24px);
}
.bonussen__card {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonussen__card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.bonussen__card-icon { font-size: 2rem; }
.bonussen__card-title { font-size: 0.95rem; font-weight: 800; color: var(--yellow); }
.bonussen__card-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); flex: 1; }

/* ---------- HOE BEGINNEN ---------- */
.hoebeginnen { background: var(--navy); }
.hoebeginnen__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(20px, 3vw, 36px);
}
.hoebeginnen__step {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.12);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vw, 40px);
  text-align: center;
  position: relative;
  min-width: 0;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hoebeginnen__step:hover { border-color: var(--yellow); transform: translateY(-4px); }
.hoebeginnen__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(242,242,48,0.15);
  line-height: 1;
  font-feature-settings: "tnum";
}
.hoebeginnen__step-title { font-size: 1.1rem; color: var(--yellow); }
.hoebeginnen__step-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); flex: 1; }

/* ---------- SPORT ---------- */
.sport { background: var(--navy); }
.sport__layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,480px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.sport__text {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 1rem;
}
.sport__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.sport__cat {
  display: inline-block;
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  min-width: 0;
  white-space: nowrap;
}
.sport__cat:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.sport__media { min-width: 0; }

/* ---------- CASINO ---------- */
.casino { background: var(--black); }
.casino__media-wrap { margin-bottom: clamp(28px, 4vw, 48px); }
.casino__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px, 2vw, 24px);
}
.casino__cat {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.casino__cat:hover { border-color: var(--yellow); transform: translateY(-4px); }
.casino__cat-icon { font-size: 2.4rem; }
.casino__cat-title { font-size: 1rem; font-weight: 800; color: var(--yellow); }
.casino__cat-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); flex: 1; }

/* ---------- MOBIEL ---------- */
.mobiel { background: var(--navy); }
.mobiel__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.mobiel__feature {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.5vw, 28px);
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.mobiel__feature:hover { border-color: var(--yellow); transform: translateY(-3px); }
.mobiel__feature-icon { font-size: 2rem; margin-bottom: 10px; }
.mobiel__feature-title { font-size: 0.95rem; font-weight: 800; color: var(--yellow); margin-bottom: 6px; }
.mobiel__feature-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---------- BETALINGEN ---------- */
.betalingen { background: var(--black); }
.betalingen__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: 28px;
}
.betalingen__card {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 2vw, 22px) 12px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.betalingen__card:hover { border-color: var(--yellow); transform: translateY(-3px); }
.betalingen__icon { font-size: 2rem; margin-bottom: 8px; }
.betalingen__name { font-size: 0.85rem; font-weight: 800; color: var(--white); margin-bottom: 4px; overflow-wrap: anywhere; }
.betalingen__info { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.betalingen__infobar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  padding: 16px 24px;
  background: rgba(242,242,48,0.06);
  border: 1px solid rgba(242,242,48,0.2);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* ---------- ONDERSTEUNING ---------- */
.ondersteuning { background: var(--navy); }
.ondersteuning__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 36px;
}
.ondersteuning__card {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.1);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.ondersteuning__card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.ondersteuning__icon { font-size: 2.4rem; }
.ondersteuning__title { font-size: 1.1rem; font-weight: 800; color: var(--yellow); }
.ondersteuning__text { font-size: 0.9rem; color: rgba(255,255,255,0.75); flex: 1; }

.ondersteuning__responsible {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(60,44,148,0.25);
  border: 1px solid rgba(242,242,48,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 28px);
  min-width: 0;
}
.ondersteuning__resp-icon { font-size: 2rem; flex-shrink: 0; }
.ondersteuning__resp-content h4 { color: var(--yellow); margin-bottom: 6px; font-size: 1rem; }
.ondersteuning__resp-content p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ---------- FAQ ---------- */
.faq { background: var(--black); }
.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--navy-mid);
  border: 1px solid rgba(242,242,48,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:has(.faq__q[aria-expanded="true"]) { border-color: var(--yellow); }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  background: none;
  border: none;
  color: var(--white);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
  min-width: 0;
  overflow-wrap: anywhere;
}
.faq__q:hover { color: var(--yellow); }

.faq__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__a p {
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- FINALE CTA ---------- */
.finale-cta { background: var(--navy); }
.finale-cta__box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy-mid) 60%, var(--black) 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finale-cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(242,242,48,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.finale-cta__deco {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  display: block;
}
.finale-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.finale-cta__text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.finale-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.finale-cta__fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); }
.footer__top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-block: clamp(36px, 5vw, 60px);
}
.footer__top-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer__nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--yellow); }

.footer__bottom { padding-block: clamp(20px, 3vw, 32px); }
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

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

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .voordelen__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bonussen__grid  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .casino__grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mobiel__grid    { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .betalingen__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sport__layout   { grid-template-columns: minmax(0,1fr); }
  .sport__media    { order: -1; }
  .bonussen__featured { grid-template-columns: minmax(0,1fr); }
  .bonussen__featured-media { order: -1; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 2px solid var(--yellow);
    padding: 16px 0;
    z-index: 799;
  }
  .header__nav.is-open { display: block; }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: visible;
    padding: 0 24px;
  }
  .header__nav-list li { width: 100%; }
  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-right: none;
  }
  .header__cta { display: none; }
  .burger { display: flex; }

  .hoebeginnen__grid  { grid-template-columns: minmax(0,1fr); }
  .ondersteuning__grid { grid-template-columns: minmax(0,1fr); }
  .betalingen__grid   { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__cta-group .btn { width: 100%; }
  .finale-cta__buttons .btn { width: 100%; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .voordelen__grid  { grid-template-columns: minmax(0,1fr); }
  .bonussen__grid   { grid-template-columns: minmax(0,1fr); }
  .casino__grid     { grid-template-columns: minmax(0,1fr); }
  .mobiel__grid     { grid-template-columns: minmax(0,1fr); }
  .betalingen__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .catfish__cta     { padding: 10px 14px; font-size: 0.8rem; }
  .hero__title      { font-size: clamp(1.15rem, 5vw, 1.7rem); }
  .bonussen__steps li { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ---- 360px ---- */
@media (max-width: 360px) {
  .betalingen__grid { grid-template-columns: minmax(0,1fr); }
  .catfish__text    { display: none; }
  .catfish__cta     { flex: 1; }
  .hero__cta-group  { flex-direction: column; }
}
/* ============================================================
   LALABET — KSA / CRUKS / Belasting / Wagering Context Block
   Namespace: lalabet-context__
   Page palette: #050607 (bg), #0f1114 (panel), #ffd200 (yellow),
                 #ffb300 (yellow-2), #f7f7f8 (text), rgba(247,247,248,.74) (muted)
   ============================================================ */

.lalabet-context__section {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(255, 210, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0b0d 0%, #050607 100%);
  padding: 4rem 0;
  color: #f7f7f8;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.lalabet-context__container {
  width: min(73.75rem, calc(100% - 2rem));
  margin: 0 auto;
}

/* ---- Headings ---- */
.lalabet-context__title {
  font-size: clamp(1.4rem, 3.4vw, 2.2rem);
  font-weight: 950;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lalabet-context__h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 950;
  color: #ffd200;
  margin: 0 0 0.85rem;
  line-height: 1.35;
  letter-spacing: -0.2px;
  border-left: 3px solid #ffd200;
  padding-left: 0.85rem;
}

.lalabet-context__h4 {
  font-size: 0.95rem;
  font-weight: 900;
  color: rgba(255, 240, 190, 0.95);
  margin: 1.1rem 0 0.55rem;
  letter-spacing: 0.02em;
}

/* ---- Lead block ---- */
.lalabet-context__lead {
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(255, 210, 0, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #ffd200;
  border-radius: 1.125rem;
  padding: 1.5rem 1.6rem;
  margin: 0 auto 2rem;
  max-width: 56rem;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
}

.lalabet-context__lead p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(247, 247, 248, 0.92);
  margin: 0;
}

/* ---- Articles ---- */
.lalabet-context__article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.125rem;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lalabet-context__article:hover {
  border-color: rgba(255, 210, 0, 0.22);
  transform: translateY(-2px);
}

.lalabet-context__article p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(247, 247, 248, 0.85);
  margin: 0 0 0.85rem;
}

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

.lalabet-context__article strong {
  color: #ffffff;
  font-weight: 900;
}

.lalabet-context__article em {
  color: #ffd200;
  font-style: italic;
  font-weight: 700;
}

/* ---- Lists ---- */
.lalabet-context__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.85rem;
  counter-reset: lal-counter;
}

.lalabet-context__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.7rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(247, 247, 248, 0.88);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.lalabet-context__list li:last-child {
  border-bottom: none;
}

.lalabet-context__list li::before {
  content: "▸";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  color: #ffd200;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.lalabet-context__list--ordered {
  counter-reset: lal-counter;
}

.lalabet-context__list--ordered li {
  padding-left: 2.5rem;
  counter-increment: lal-counter;
}

.lalabet-context__list--ordered li::before {
  content: counter(lal-counter);
  left: 0;
  top: 0.55rem;
  width: 1.65rem;
  height: 1.65rem;
  background: linear-gradient(180deg, #ffd200 0%, #ffb300 100%);
  color: #0a0b0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 4px 14px rgba(255, 210, 0, 0.25);
  border: 1px solid rgba(255, 210, 0, 0.4);
}

/* ---- Table ---- */
.lalabet-context__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.85rem 0 1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  font-size: 0.9rem;
}

.lalabet-context__table thead {
  background: rgba(5, 6, 7, 0.92);
}

.lalabet-context__table thead th {
  padding: 0.85rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffd200;
  text-align: left;
  border-bottom: 1px solid rgba(255, 210, 0, 0.25);
}

.lalabet-context__table tbody td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  vertical-align: top;
  line-height: 1.6;
  color: rgba(247, 247, 248, 0.88);
}

.lalabet-context__table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.lalabet-context__table tbody tr:last-child td {
  border-bottom: none;
}

.lalabet-context__table td:first-child {
  font-weight: 900;
  color: #ffd200;
  width: 22%;
}

/* ---- Aside ---- */
.lalabet-context__aside {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.14) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-left: 3px solid #ffd200;
  border-radius: 0 0.75rem 0.75rem 0;
}

.lalabet-context__aside .lalabet-context__h4 {
  margin-top: 0;
  color: #ffd200;
}

.lalabet-context__aside p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---- Final CTA-style article ---- */
.lalabet-context__article--cta {
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(255, 210, 0, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 210, 0, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 210, 0, 0.3);
  text-align: center;
}

.lalabet-context__article--cta .lalabet-context__h3 {
  border-left: none;
  padding-left: 0;
  text-align: center;
  color: #ffd200;
}

.lalabet-context__cta-line {
  margin-top: 0.85rem !important;
  font-size: 0.88rem;
  color: rgba(255, 240, 190, 0.95);
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1020px)
   ============================================================ */
@media (max-width: 63.75em) {
  .lalabet-context__section { padding: 3.25rem 0; }
  .lalabet-context__article { padding: 1.4rem 1.25rem; }
  .lalabet-context__lead { padding: 1.25rem; }
  .lalabet-context__table { font-size: 0.85rem; }
  .lalabet-context__table thead th,
  .lalabet-context__table tbody td { padding: 0.65rem 0.65rem; }
  .lalabet-context__table td:first-child { width: 27%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 40em) {
  .lalabet-context__section { padding: 2.5rem 0; }
  .lalabet-context__container { width: calc(100% - 1.5rem); }

  .lalabet-context__title { font-size: 1.3rem; line-height: 1.3; }
  .lalabet-context__h3 {
    font-size: 1.05rem;
    border-left-width: 3px;
    padding-left: 0.7rem;
  }
  .lalabet-context__h4 { font-size: 0.9rem; }

  .lalabet-context__lead { padding: 1.1rem; margin-bottom: 1.5rem; }
  .lalabet-context__lead p { font-size: 0.92rem; line-height: 1.75; }

  .lalabet-context__article { padding: 1.1rem 1rem; margin-bottom: 1rem; }
  .lalabet-context__article p { font-size: 0.9rem; }

  .lalabet-context__list li,
  .lalabet-context__list--ordered li { font-size: 0.9rem; }

  /* Card-style table on mobile */
  .lalabet-context__table {
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .lalabet-context__table thead { display: none; }
  .lalabet-context__table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #ffd200;
    border-radius: 0.75rem;
    padding: 0.7rem 0.95rem;
  }
  .lalabet-context__table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .lalabet-context__table tbody td {
    display: block;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    font-size: 0.88rem;
    width: 100% !important;
  }
  .lalabet-context__table tbody td:last-child { border-bottom: none; }
  .lalabet-context__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    color: #ffd200;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    font-weight: 900;
  }

  .lalabet-context__aside { padding: 0.9rem 1rem; }
}

/* ============================================================
   RESPONSIVE — Small (≤480px)
   ============================================================ */
@media (max-width: 30em) {
  .lalabet-context__title { font-size: 1.18rem; }
  .lalabet-context__h3 { font-size: 1rem; }
  .lalabet-context__article { padding: 0.95rem 0.85rem; }
  .lalabet-context__list--ordered li { padding-left: 2.2rem; }
  .lalabet-context__list--ordered li::before { width: 1.45rem; height: 1.45rem; font-size: 0.74rem; }
}