/* ===========================================================
   Welke film moet ik kijken? — stylesheet
   =========================================================== */

:root {
  --bg: #0b0d14;
  --bg-soft: #12151f;
  --bg-card: #171a26;
  --bg-card-hover: #1d2130;
  --border: #262a3a;
  --text: #f2f3f7;
  --text-muted: #9497ab;
  --text-faint: #6b6e82;
  --accent: #ef2d56;
  --accent-2: #ff6b6b;
  --accent-gradient: linear-gradient(135deg, #ef2d56 0%, #ff7a45 100%);
  --yellow: #ffcb45;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max-width: 1160px;
}

html[data-theme="light"] {
  --bg: #f6f6fa;
  --bg-soft: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f2f8;
  --border: #e3e4ee;
  --text: #14151f;
  --text-muted: #52546a;
  --text-faint: #85879c;
  --shadow: 0 20px 50px rgba(20, 21, 31, 0.10);
}

html[data-theme="light"] .site-header {
  background: rgba(246, 246, 250, 0.88);
}

html[data-theme="light"] .kicker {
  background: rgba(239, 45, 86, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Het hidden-attribuut moet altijd winnen van display-regels van componenten
   (anders blijft bv. het rekeningnummer zichtbaar terwijl het verborgen hoort). */
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 800; }
p { margin: 0 0 1em; color: var(--text-muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 13, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 46px; width: 46px; border-radius: 12px; display: block; }
.brand-logo-small { height: 42px; width: 42px; border-radius: 11px; margin-bottom: 10px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); }
.site-nav a.active { color: var(--accent-2); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  padding-left: 12px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}
.lang-switch a { color: var(--text-faint); }
.lang-switch a.active { color: var(--accent-2); }
.lang-sep { color: var(--text-faint); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  position: relative;
  margin-left: 6px;
  padding: 0;
}
.theme-toggle:hover { border-color: var(--text-faint); }
.theme-icon { font-size: 1rem; line-height: 1; position: absolute; transition: opacity 0.15s ease, transform 0.15s ease; }
.theme-icon-moon { opacity: 1; }
.theme-icon-sun { opacity: 0; transform: scale(0.7); }
html[data-theme="light"] .theme-icon-moon { opacity: 0; transform: scale(0.7); }
html[data-theme="light"] .theme-icon-sun { opacity: 1; transform: scale(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 10px 30px rgba(239, 45, 86, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(239, 45, 86, 0.5); }
.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-faint); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(239, 45, 86, 0.25), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(239, 45, 86, 0.12);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-note { font-size: 0.85rem; color: var(--text-faint); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-head { max-width: 620px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.section-head p { font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
.step-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; }
.step-card p { margin: 0; font-size: 0.95rem; }

.seo-block {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-block .container { max-width: 760px; text-align: center; }
.seo-block h2 { font-size: 1.6rem; }
.seo-block p { font-size: 1rem; }

.cta-block { text-align: center; }
.cta-block h2 { margin-bottom: 26px; font-size: clamp(1.6rem, 3vw, 2.1rem); }

/* ---------- Advertentiebanner ---------- */
.ad-banner { padding: 0 0 40px; }
.ad-banner-box {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 26px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}
.ad-label {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 2px 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.ad-banner-box h3 { font-size: 1.15rem; margin-bottom: 6px; }
.ad-banner-box p { font-size: 0.9rem; margin-bottom: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  background: var(--bg-soft);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.footer-brand p { max-width: 380px; font-size: 0.9rem; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ---------- Quiz ---------- */
.quiz-wrap { max-width: 640px; margin: 0 auto; padding: 60px 0 100px; }
.quiz-header { text-align: center; margin-bottom: 34px; }
.quiz-header h1 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); }

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}
.progress-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 40px;
}

.quiz-step { display: none; animation: fadeIn 0.25s ease; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }

.quiz-step h2 { font-size: 1.4rem; text-align: center; margin-bottom: 6px; }
.quiz-step .step-subtitle { text-align: center; font-size: 0.9rem; margin-bottom: 26px; }

.option-list { display: flex; flex-direction: column; gap: 12px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.option-card {
  position: relative;
  display: block;
  cursor: pointer;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card .option-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.option-card input:checked + .option-label {
  border-color: var(--accent-2);
  background: linear-gradient(135deg, rgba(239,45,86,0.16), rgba(255,122,69,0.10));
}
.option-card:hover .option-label { border-color: var(--text-faint); }
.option-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
}
.option-card input:checked ~ .option-label .option-check { border-color: var(--accent-2); }
.option-card input:checked ~ .option-label .option-check::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--accent-gradient);
}

.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
label.chip { display: inline-flex; align-items: center; }
label.chip:has(input:checked) {
  border-color: var(--accent-2);
  background: linear-gradient(135deg, rgba(239,45,86,0.18), rgba(255,122,69,0.12));
  color: #fff;
}

.tag-input-wrap {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  padding: 12px 14px;
}
.tag-input-wrap input[type="text"] {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  padding: 6px 4px;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 14px;
  border-radius: 999px;
  background: rgba(239, 45, 86, 0.14);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 600;
}
.tag-pill button {
  background: transparent;
  border: none;
  color: var(--accent-2);
  cursor: pointer;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
}
.tag-pill button:hover { background: rgba(239,45,86,0.25); }

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.quiz-nav .spacer { flex: 1; }

/* ---------- Resultaat ---------- */
.result-wrap { max-width: 880px; margin: 0 auto; padding: 60px 0 100px; }
.result-kicker { text-align: center; font-size: 1.05rem; font-weight: 700; color: var(--accent-2); margin-bottom: 24px; }

.result-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.result-poster {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.result-poster img { width: 100%; height: 100%; object-fit: cover; }
.result-poster .poster-fallback {
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  padding: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.result-poster .poster-icon { font-size: 3rem; margin-bottom: 10px; display:block; }

.result-body { display: flex; flex-direction: column; }
.match-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.match-badge .num { font-size: 1.15rem; }
.match-badge .txt { font-size: 0.8rem; opacity: 0.9; }

.result-title { font-size: 1.9rem; margin-bottom: 4px; }
.result-year { color: var(--text-faint); font-weight: 600; margin-bottom: 18px; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.meta-pill {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.why-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.why-box h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--text); }
.why-box p { margin: 0; font-size: 0.92rem; }

.result-overview { margin-bottom: 24px; }
.result-overview h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--text); }
.result-overview p { margin: 0; font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

.result-streaming {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.result-streaming h3 { font-size: 0.95rem; margin-bottom: 10px; color: var(--text); }
.streaming-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.streaming-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.streaming-empty { margin: 0 0 10px; font-size: 0.88rem; color: var(--text-muted); }
.streaming-intro { margin: 0 0 12px; font-size: 0.86rem; color: var(--text-muted); font-weight: 600; }

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.streaming-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.streaming-chip:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: var(--bg-soft);
}
.streaming-mark {
  flex: 0 0 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.streaming-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---------- Gegenereerde filmposter ---------- */
.poster-generated {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--p1), var(--p2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.poster-generated::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}
.poster-strip {
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(0,0,0,0.32) 0 8px,
    transparent 8px 18px
  );
  opacity: 0.8;
}
.poster-strip-top { top: 0; }
.poster-strip-bottom { bottom: 0; }
.poster-initials {
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.96);
  letter-spacing: 0.06em;
  text-shadow: 0 3px 16px rgba(0,0,0,0.28);
  line-height: 1;
  position: relative;
}
.poster-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  line-height: 1.25;
  position: relative;
}
.poster-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  position: relative;
}

/* ---------- App installeren (PWA-promo) ---------- */
.install-promo {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}
.install-promo-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent-gradient);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 12px;
}
.install-promo h2 { font-size: 1.24rem; margin-bottom: 10px; }
.install-promo > p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 22px; }

.install-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.install-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.install-col h3 { font-size: 1rem; margin-bottom: 14px; }
.install-col ol { margin: 0; padding-left: 20px; counter-reset: none; }
.install-col li {
  font-size: 0.89rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 11px;
  padding-left: 4px;
}
.install-col li::marker { color: var(--accent-2); font-weight: 800; }
.install-col li strong { color: var(--text); font-weight: 700; }
.install-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin: 20px 0 0;
  line-height: 1.6;
}

/* ---------- FAQ-accordeon ---------- */
.faq-list { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item.open { border-color: var(--accent-2); background: var(--bg-card); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--accent-2); }
.faq-question:focus-visible { outline: 2px solid var(--accent-2); outline-offset: -2px; }
.faq-question-text { flex: 1; }
.faq-icon {
  flex: 0 0 20px;
  height: 20px;
  position: relative;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-2);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 13px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 13px; transition: opacity 0.28s ease, transform 0.28s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 18px 18px;
  animation: faqSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p { margin: 0; font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
  .faq-icon { transition: none; }
}
.streaming-link {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
}
.streaming-link:hover { text-decoration: underline; }
.streaming-note { margin: 8px 0 0; font-size: 0.76rem; color: var(--text-faint); }

.result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

.result-empty, .result-exhausted {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ---------- Blogs ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 0 60px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.blog-card:hover { border-color: var(--text-faint); transform: translateY(-2px); }

.blog-card-image {
  display: block;
  margin: -26px -26px 18px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  aspect-ratio: 1000 / 440;
  background: var(--bg-soft);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-post-image {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.blog-post-image img { width: 100%; height: auto; display: block; }

.blog-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(239, 45, 86, 0.12);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; flex: 1; }
.blog-meta { font-size: 0.78rem; color: var(--text-faint); margin: 10px 0 14px; }
.blog-card .btn { align-self: flex-start; }

.blog-post-wrap { max-width: 720px; margin: 0 auto; padding: 50px 0 90px; }
.blog-post-back { display: inline-block; margin-bottom: 20px; color: var(--text-faint); font-weight: 600; font-size: 0.9rem; }
.blog-post-back:hover { color: var(--text); }
.blog-post-tag { margin-bottom: 14px; }
.blog-post-wrap h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 10px; }
.blog-post-meta { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 34px; }
.blog-post-body p { font-size: 1.04rem; color: var(--text-muted); margin-bottom: 1.3em; }
.blog-featured {
  margin: 34px 0;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.blog-featured h3 { font-size: 0.9rem; margin-bottom: 12px; }
.blog-featured .chip-grid { justify-content: flex-start; }
.blog-featured .chip { cursor: default; }
.blog-post-cta {
  text-align: center;
  margin-top: 44px;
  padding: 34px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.blog-post-cta h3 { font-size: 1.25rem; margin-bottom: 6px; }

/* ---------- Over ons / Contact ---------- */
.page-hero {
  text-align: center;
  padding: 70px 0 20px;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); }

.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 0;
}
.content-block h2 { font-size: 1.4rem; margin-bottom: 12px; }
.content-block p { font-size: 1.02rem; }


.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-weight: 700; font-size: 0.9rem; }
.form-field input,
.form-field textarea {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent-2); }
.form-field textarea { resize: vertical; min-height: 130px; }

.form-alert {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-alert.success { background: rgba(60, 200, 120, 0.14); color: #4fd88a; border: 1px solid rgba(60,200,120,0.3); }
.form-alert.error { background: rgba(239, 45, 86, 0.12); color: var(--accent-2); border: 1px solid rgba(239,45,86,0.3); }

.social-links { display: flex; gap: 14px; justify-content: center; margin-top: 30px; }
.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
}
.social-links a:hover { color: var(--text); border-color: var(--text-faint); }

/* ---------- Lijstpagina's (beste films/series) ---------- */
.list-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px 80px; }

.rank-list { list-style: none; counter-reset: none; margin: 0 0 34px; padding: 0; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s ease;
}
.rank-item:hover { background: var(--bg-soft); }
.rank-number {
  flex: 0 0 40px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-2);
  text-align: right;
}
.rank-body { flex: 1; display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; }
.rank-title { font-weight: 700; color: var(--text); }
.rank-meta { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.rank-link {
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
  white-space: nowrap;
}
.rank-link:hover { text-decoration: underline; }

.highlight-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 34px; }
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.highlight-card:hover { border-color: var(--accent-2); transform: translateY(-2px); }
.highlight-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 8px; }
.highlight-head h2 { font-size: 1.14rem; margin: 0; }
.highlight-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 11px;
}
.highlight-card p { margin: 0 0 12px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }
.highlight-link { font-size: 0.82rem; font-weight: 700; color: var(--accent-2); text-decoration: none; }
.highlight-link:hover { text-decoration: underline; }

.list-source {
  font-size: 0.78rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 34px;
}
.list-source a { color: var(--accent-2); text-decoration: none; margin-left: 6px; }

.list-cta {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  text-align: center;
}
.list-cta h3 { font-size: 1.05rem; margin-bottom: 6px; }
.list-cta p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }

/* ---------- PWA: installeerknop ---------- */
.install-app-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-gradient);
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  animation: installIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.install-app-btn:hover { transform: translateY(-2px); }
@keyframes installIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .install-app-btn { animation: none; }
}

/* ---------- Trending films ---------- */
.trending-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 24px;
}
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.trending-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.trending-card:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.trending-poster { position: relative; aspect-ratio: 2/3; overflow: hidden; background: var(--bg-soft); }
.trending-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trending-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.trending-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.trending-body h3 { font-size: 0.96rem; margin: 0; line-height: 1.3; }
.trending-meta { display: flex; gap: 10px; font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }
.trending-genres { font-size: 0.76rem; color: var(--text-faint); margin: 0; }
.trending-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
}
.trending-link:hover { text-decoration: underline; }

.trending-setup {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin-bottom: 30px;
}
.trending-setup h2 { font-size: 1.1rem; margin-bottom: 10px; }
.trending-setup p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 14px; }
.trending-steps { margin: 0 0 14px; padding-left: 20px; }
.trending-steps li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.trending-note { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 0 !important; }

/* ---------- Footer: lijstenkolom ---------- */
.footer-lists {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.footer-lists-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.footer-lists a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.18s ease;
}
.footer-lists a:hover { color: var(--accent-2); }

/* Twee lijstkolommen naast elkaar op breder scherm */
.footer-providers { margin-top: 14px; padding-top: 14px; }
@media (min-width: 720px) {
  .footer-lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px 28px; justify-items: center; }
  .footer-lists-title { grid-column: 1 / -1; }
}

/* ---------- Footer: logo van de maker ---------- */
.footer-maker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-maker-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-maker-link {
  display: inline-block;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-maker-link:hover { opacity: 1; transform: translateY(-2px); }
.luwo-logo { width: 150px; height: auto; display: block; }
.luwo-logo-light { display: none; }
html[data-theme="light"] .luwo-logo-dark { display: none; }
html[data-theme="light"] .luwo-logo-light { display: block; }

/* ---------- Contact: direct mailen + doneren ---------- */
.contact-direct {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 26px;
  text-align: center;
}
.contact-direct h3 { font-size: 0.98rem; margin-bottom: 5px; }
.contact-direct p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 10px; }
.contact-mail {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-2);
  text-decoration: none;
  word-break: break-all;
}
.contact-mail:hover { text-decoration: underline; }

.form-fallback { margin-top: 14px; text-align: center; font-size: 0.82rem; }
.form-fallback a { color: var(--text-muted); }
.form-fallback a:hover { color: var(--accent-2); }

.donate-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.donate-icon { font-size: 2.2rem; display: block; margin-bottom: 8px; }
.donate-box h3 { font-size: 1.15rem; margin-bottom: 8px; }
.donate-box p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; }
.donate-todo { font-size: 0.84rem; color: var(--text-faint); font-style: italic; margin-bottom: 0; }

/* --- Compacte doneer-oproep (o.a. op Contact) --- */
.donate-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
}
.donate-cta h3 { font-size: 1.15rem; margin-bottom: 8px; }
.donate-cta p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; }
.donate-cta-button { margin-bottom: 12px; }
.donate-cta-note {
  font-size: 0.78rem !important;
  color: var(--text-faint) !important;
  margin-bottom: 0 !important;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.donate-choose { font-weight: 700; color: var(--text) !important; margin-bottom: 14px !important; font-size: 0.88rem !important; }

/* --- Bedrag kiezen --- */
.donate-amounts { margin: 4px 0 22px; }
.donate-amounts-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.donate-amount-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.donate-amount {
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 64px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.donate-amount:hover { transform: translateY(-2px); border-color: var(--accent-2); }
.donate-amount.selected {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(239, 45, 86, 0.32);
}
.donate-amount-custom { min-width: 132px; font-size: 0.86rem; }

.donate-custom-wrap { margin-top: 14px; }
.donate-custom-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.donate-custom-field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 4px 8px 4px 16px;
}
.donate-custom-field:focus-within { border-color: var(--accent-2); }
.donate-currency { font-weight: 800; color: var(--text-muted); }
.donate-custom-field input {
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  width: 96px;
  padding: 8px 4px;
  border: none;
  background: none;
  color: var(--text);
  outline: none;
}

/* --- Overmaken: rekening pas na een klik --- */
.donate-transfer { margin-top: 18px; }
.donate-transfer-toggle {
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.donate-transfer-toggle:hover { transform: translateY(-2px); border-color: var(--accent-2); background: var(--bg-card); }
.donate-transfer-toggle.open { border-color: var(--accent-2); }
.donate-transfer-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  max-width: 420px;
  line-height: 1.55;
}
#donateTransferPanel { margin-top: 14px; animation: faqSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
@media (prefers-reduced-motion: reduce) {
  #donateTransferPanel { animation: none; }
  .donate-amount:hover, .donate-transfer-toggle:hover { transform: none; }
}

.donate-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.donate-method {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.donate-method:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  background: var(--bg-card);
}
.donate-method-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.donate-iban {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 16px;
  margin-bottom: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.donate-iban-label { font-size: 0.84rem; color: var(--text); font-weight: 800; }
.donate-iban-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.donate-iban-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 11px;
}
.donate-iban-reflabel { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.donate-copy {
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-2);
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.donate-copy:hover { border-color: var(--accent-2); background: var(--bg-card); }
.donate-copy.copied { color: #fff; background: var(--accent-2); border-color: var(--accent-2); }
.donate-iban-name { font-size: 0.82rem; color: var(--text-muted); }
.donate-iban-hint { font-size: 0.74rem; color: var(--text-faint); max-width: 340px; line-height: 1.5; }
.donate-note { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 0 !important; }

/* --- Betaal-QR (EPC/SEPA) --- */
.donate-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.donate-qr h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.01em;
}
.donate-qr-code {
  width: 176px;
  height: 176px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.donate-qr-code svg { width: 100%; height: 100%; display: block; }
.donate-qr-code.loading { opacity: 0.4; }
.donate-qr-hint {
  font-size: 0.74rem;
  color: var(--text-faint);
  line-height: 1.5;
  max-width: 340px;
  text-align: center;
  margin: 0 !important;
}

/* --- Banklijst --- */
.donate-banks { width: 100%; margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--border); }
.donate-banks-toggle {
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.donate-banks-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.donate-banks-toggle:hover { border-color: var(--accent-2); }
.donate-banks-toggle.open { border-color: var(--accent-2); }
.donate-banks-toggle.open::after { transform: rotate(180deg); }
.donate-banks-panel {
  margin-top: 14px;
  animation: faqSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}
@media (prefers-reduced-motion: reduce) { .donate-banks-panel { animation: none; } }
.donate-banks-intro {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 14px !important;
}
.donate-bank-group { margin-bottom: 16px; }
.donate-bank-region {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}
.donate-bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
}
.donate-bank {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.16s ease, border-color 0.16s ease;
}
.donate-bank:hover { transform: translateY(-2px); border-color: var(--brand); }
@media (prefers-reduced-motion: reduce) { .donate-bank:hover { transform: none; } }
.donate-bank-mark {
  flex: 0 0 auto;
  min-width: 28px;
  height: 24px;
  padding: 0 5px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.donate-bank-name { line-height: 1.3; }
/* Langere namen ('BNP Paribas Fortis') mogen op twee regels; afkappen
   met puntjes maakte ze onherkenbaar. */
.donate-bank { align-items: center; min-height: 42px; }
.donate-banks-note {
  font-size: 0.72rem;
  color: var(--text-faint);
  line-height: 1.5;
  margin: 0 !important;
}

.partner-contact { margin-top: 16px; font-size: 0.93rem; }
.partner-contact a { color: var(--accent-2); font-weight: 700; text-decoration: none; }
.partner-contact a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .rank-item { flex-wrap: wrap; gap: 8px 12px; }
  .rank-number { flex: 0 0 28px; text-align: left; }
  .rank-link { flex: 1 0 100%; }
}


/* ---------- Quiz: extra vraagtypes ---------- */
.option-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.option-list-grid .option-card { margin: 0; }

.service-grid { gap: 8px; }
.chip-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip-service-mark {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 5px;
  background: var(--brand, var(--text-faint));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
}
.chip-service:has(input:checked) { border-color: var(--brand, var(--accent-2)); }

/* De streamingdienst die in de quiz gekozen is, springt eruit */
.streaming-chip.preferred {
  border-color: var(--brand);
  background: var(--bg-card);
  box-shadow: 0 0 0 1px var(--brand) inset;
  order: -1;
}
.streaming-chip.preferred::after {
  content: "★";
  margin-left: auto;
  color: var(--brand);
  font-size: 0.8rem;
}


/* ---------- Download de app ---------- */
.app-promo {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.app-promo-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.app-promo-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--accent-gradient);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 14px;
}
.app-promo-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 12px; }
.app-promo-text > p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; max-width: 520px; }

.app-promo-list { list-style: none; margin: 0 0 26px; padding: 0; }
.app-promo-list li {
  font-size: 0.94rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.app-promo-list li:last-child { border-bottom: none; }

.app-promo-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.app-promo-note { font-size: 0.84rem; color: var(--text-faint); }

/* Telefoonmockup */
.app-promo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 45, 86, 0.28), transparent 68%);
  filter: blur(10px);
  z-index: 0;
}
.phone-mock {
  position: relative;
  z-index: 1;
  width: 232px;
  aspect-ratio: 9 / 18.5;
  background: linear-gradient(160deg, #23273a, #12141d);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 11px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(var(--tilt, -4deg));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-promo:hover .phone-mock { transform: rotate(0deg) translateY(-6px); }

.phone-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 17px;
  background: #0b0d14;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: linear-gradient(170deg, #171a26 0%, #0b0d14 62%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 30px 18px 22px;
  text-align: center;
  overflow: hidden;
}
.phone-app-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}
.phone-app-name { font-size: 0.82rem; font-weight: 800; color: #fff; line-height: 1.25; }
.phone-app-sub { font-size: 0.68rem; color: var(--text-faint); }
.phone-fake-btn {
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  border-radius: 999px;
  padding: 8px 16px;
}
.phone-home-bar {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  z-index: 3;
}

@media (max-width: 860px) {
  .app-promo-inner { grid-template-columns: 1fr; gap: 36px; }
  .app-promo-visual { order: -1; }
  .phone-mock { width: 200px; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-mock, .app-promo:hover .phone-mock { transition: none; transform: none; }
}

/* ---------- Telefoonschermen met echte app-onderdelen ---------- */
.phone-screen-ui {
  justify-content: flex-start;
  gap: 0;
  padding: 34px 14px 26px;
  text-align: left;
}
.phone-topbar { width: 100%; margin-bottom: 14px; }
.phone-topbar-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 7px;
}
.phone-progress {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
}
.phone-progress-bar {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent-gradient);
}
.phone-question {
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 12px;
}
.phone-options { display: flex; flex-direction: column; gap: 7px; width: 100%; margin-bottom: 14px; }
.phone-option {
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 8px 10px;
}
.phone-option.selected {
  color: #fff;
  border-color: var(--accent-2);
  background: rgba(239, 45, 86, 0.18);
}
.phone-fake-btn-wide {
  width: 100%;
  margin-top: auto;
  text-align: center;
  padding: 9px 12px;
}

.phone-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 11px;
  background: linear-gradient(150deg, #2b3050, #171a2b 55%, #3a1f2c);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex: 0 0 auto;
}
.phone-poster-play {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}
.phone-result-title { font-size: 0.78rem; font-weight: 800; color: #fff; line-height: 1.3; }
.phone-badges { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 9px; }
.phone-badge {
  font-size: 0.54rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px 8px;
}
.phone-badge-score { color: #0b0d14; background: #ffc93c; }
.phone-reason {
  font-size: 0.58rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}

/* ---------- "Zo ziet het eruit" op Over de app ---------- */
.app-showcase { padding: 20px 0 10px; }
.app-showcase .section-head p { max-width: 620px; margin-left: auto; margin-right: auto; }
.app-showcase-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin: 32px 0 22px;
}
.app-showcase-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}
.app-showcase-item .phone-mock { width: 216px; }
.app-showcase-item:hover .phone-mock { transform: rotate(0deg) translateY(-6px); }
.app-showcase-item figcaption {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}
.app-showcase-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 620px) {
  .app-showcase-phones { gap: 34px; }
  .app-showcase-item .phone-mock { width: 200px; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .app-showcase-item:hover .phone-mock { transform: none; }
}

/* ---------- Sfeerbeeld-slideshow ---------- */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 520px;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.slideshow-compact { aspect-ratio: 32 / 9; max-height: 300px; }

.slideshow-track { position: absolute; inset: 0; }
.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s ease, transform 7s ease-out;
  pointer-events: none;
}
.slideshow-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slideshow-slide picture { display: block; width: 100%; height: 100%; }
.slideshow-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Donkere waas zodat tekst leesbaar blijft */
.slideshow-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 12, 0.88) 0%, rgba(6, 7, 12, 0.35) 45%, rgba(6, 7, 12, 0.15) 100%);
}
.slideshow-caption {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 15px;
}

.slideshow-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px 58px;
  text-align: center;
}
.slideshow-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.6);
  max-width: 660px;
}
.slideshow-compact .slideshow-overlay { padding-bottom: 44px; gap: 12px; }
.slideshow-compact .slideshow-title { font-size: clamp(1.05rem, 2.2vw, 1.45rem); }

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
}
.slideshow:hover .slideshow-nav,
.slideshow-nav:focus-visible { opacity: 1; }
.slideshow-nav:hover { background: rgba(0, 0, 0, 0.62); }
.slideshow-prev { left: 16px; }
.slideshow-next { right: 16px; }

.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slideshow-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: background 0.2s ease, width 0.25s ease;
}
.slideshow-dot.active { background: #fff; width: 26px; border-radius: 999px; }

/* Losse sfeerbanner (geen slideshow) */
.page-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 34px;
}
.page-banner picture { display: block; width: 100%; height: 100%; }
.page-banner img { width: 100%; height: 100%; object-fit: cover; }
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 12, 0.72), rgba(6, 7, 12, 0.06));
}
.page-banner-caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

@media (max-width: 720px) {
  .slideshow { aspect-ratio: 4 / 3; max-height: 420px; }
  .slideshow-compact { aspect-ratio: 16 / 9; }
  .slideshow-nav { display: none; }
  .slideshow-overlay { padding-bottom: 52px; }
  .page-banner { aspect-ratio: 16 / 9; }
}

@media (prefers-reduced-motion: reduce) {
  .slideshow-slide { transition: opacity 0.3s ease; transform: none; }
  .slideshow-slide.active { transform: none; }
}

/* ---------- Scroll-animaties ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variant: van links inschuiven (voor koppen en tekstblokken) */
.reveal-left { transform: translateX(-26px); }
.reveal-left.visible { transform: translateX(0); }

/* Variant: opschalen ("poppen") — voor kaarten en balkjes */
.reveal-pop { transform: translateY(20px) scale(0.96); }
.reveal-pop.visible { transform: translateY(0) scale(1); }

/* Variant: naar je toe komen — tekst begint klein en ver weg en schuift
   naar voren toe. Dit is het effect dat het meest opvalt bij het scrollen. */
.reveal-zoom {
  transform: scale(0.82) translateY(30px);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease;
}
.reveal-zoom.visible {
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* Variant: van rechts inschuiven — voor afwisseling tussen blokken */
.reveal-right { transform: translateX(26px); }
.reveal-right.visible { transform: translateX(0); }

/* De hero animeert direct bij het laden, niet pas bij scrollen */
.hero-inner > * {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Progressiebalk bovenaan de pagina die meeloopt met het scrollen */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent-gradient);
  z-index: 999;
  transition: width 0.1s linear;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-pop, .reveal-zoom {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-inner > * { opacity: 1; transform: none; animation: none; }
  .scroll-progress { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
  .result-card { grid-template-columns: 1fr; }
  .result-poster { max-width: 220px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .lang-switch { border-left: none; padding-left: 0; margin-left: 0; }
  .option-grid { grid-template-columns: 1fr; }
}
