/* ============================================================
   Treason Night — website
   Donker kasteelthema met goud, passend bij de app.
   ============================================================ */
:root {
  --bg: #12081f;
  --bg-deep: #0b0513;
  --panel: #1d1128;
  --panel-2: #241533;
  --border: #3a2a4a;
  --gold: #d8a93e;
  --gold-light: #ecc462;
  --gold-dark: #a07d2e;
  --text: #f0e6d8;
  --text-soft: #c4b49e;
  --text-mute: #8d7d6a;
  --danger: #c62828;
  --max: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; }
a { color: var(--gold); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* --- Topbalk --- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 5, 19, 0.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 20px; max-width: var(--max); margin: 0 auto; }
.topbar img { height: 44px; width: auto; }
.topnav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topnav a { color: var(--text-soft); text-decoration: none; font-size: 15px; }
.topnav a:hover { color: var(--gold-light); }
.lang-switch {
  border: 1.5px solid var(--gold-dark); border-radius: 999px;
  padding: 4px 10px; color: var(--gold) !important; font-weight: bold; text-decoration: none;
  background: rgba(0,0,0,0.4); font-size: 13px;
}
.lang-switch.on { background: var(--gold); color: #1a0a2e !important; }
.lang-row { display: flex; gap: 6px; align-items: center; }

/* --- Hero --- */
/* Neutrale donkere overlay (geen paarse gloed): het kasteel blijft zichtbaar. */
.hero {
  position: relative; text-align: center; padding: 64px 20px 72px;
  background: url('bg-play.webp') center 20%/cover no-repeat;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
/* De donkere waas ligt als aparte laag ÓVER het vlag/fakkel-canvas (z-index 0),
   zodat de vlag exact even donker wordt als de achtergrond — net als in het spel. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(rgba(0,0,0,0.42), rgba(5,4,8,0.86));
}
.hero > :not(.fx):not(.fx-canvas) { position: relative; z-index: 2; }

/* --- Sfeer-animaties in de hero (vlag, vonken, bliksem) --- */
.fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Vast 1920x1080-canvas, door fx.js exact op de achtergrondfoto gelegd (cover,
   center 20%). Alles hierin staat in game-coördinaten en beweegt NOOIT t.o.v.
   de achtergrond, hoe je het venster ook schaalt — precies zoals in het spel. */
.fx-canvas {
  position: absolute; left: 0; top: 0;
  width: 1920px; height: 1080px;
  transform-origin: 0 0;
  z-index: 0; pointer-events: none;
}
/* Vlag: identiek aan het spel — 300x653 op (353, 386) van het canvas.
   Zwaait af en toe zachtjes vanuit de vaste bovenkant (max 2.28 graden). */
.fx-flag-wrap {
  position: absolute; left: 353px; top: 386px;
  width: 300px; height: 653px;
  transform-origin: top center;
  animation: flagsway 21s ease-in-out infinite;
}
.fx-flag { display: block; width: 100%; height: 100%; }
@keyframes flagsway {
  0%, 42% { transform: skewX(0deg); }
  52% { transform: skewX(2.28deg); }
  64% { transform: skewX(-2.28deg); }
  76%, 100% { transform: skewX(0deg); }
}
.ember {
  position: absolute; bottom: -8px;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px 1px rgba(236,196,98,0.8);
  opacity: 0;
  animation: emberrise linear infinite;
}
@keyframes emberrise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: 0.9; }
  45% { opacity: 0.7; }
  70% { opacity: 0.9; }
  100% { transform: translateY(-340px) translateX(var(--drift, 20px)); opacity: 0; }
}
/* Fakkels: nagebouwd van de Torch-component uit het spel — kleine opstijgende
   warme vonkjes met een zachte gloed, op de vaste game-posities in het canvas. */
.fx-torch { position: absolute; width: 11px; height: 15px; }
.torch-glow {
  position: absolute; left: 50%; bottom: -4px;
  width: 24px; height: 24px; margin-left: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,42,0.38) 0%, rgba(255,110,30,0.14) 45%, rgba(255,110,30,0) 70%);
  animation: torchglow 2.6s ease-in-out infinite;
}
.torch-flame {
  position: absolute; bottom: 2px;
  border-radius: 50%;
  box-shadow: 0 0 3px 1px rgba(255,138,42,0.8);
  opacity: 0;
  animation: torchrise ease-out infinite;
}
@keyframes torchrise {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: 0.85; }
  100% { transform: translate(var(--tdx, 0px), var(--tdy, -9px)) scale(0.5); opacity: 0; }
}
@keyframes torchglow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
.fx-lightning {
  position: absolute; inset: 0;
  background: #dce6ff; opacity: 0;
}
.fx-lightning.flash { animation: lflash 0.5s ease-out; }
@keyframes lflash {
  0% { opacity: 0; } 12% { opacity: 0.32; } 28% { opacity: 0.08; }
  40% { opacity: 0.22; } 100% { opacity: 0; }
}
.fx-bolt { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; }
.fx-bolt.strike { animation: boltshow 0.45s ease-out; }
@keyframes boltshow { 0% { opacity: 1; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .fx-flag-wrap, .ember, .fx-lightning, .fx-bolt,
  .torch-flame, .torch-glow { animation: none !important; }
  .ember, .torch-flame { display: none; }
}
.hero img.logo { width: min(520px, 82vw); margin-bottom: 18px; }
.hero .slogan { font-size: clamp(20px, 3.4vw, 30px); font-style: italic; color: var(--gold-light); margin-bottom: 10px; }
.hero .sub { color: var(--text-soft); max-width: 640px; margin: 0 auto 30px; font-size: clamp(15px, 2.2vw, 18px); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  padding: 14px 30px; border-radius: 10px; font-weight: bold; font-size: 17px;
  border: 1.5px solid var(--gold-dark); min-width: 220px;
}
.btn-primary { background: linear-gradient(#8b1a1a, #5c0e0e); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: linear-gradient(#a32020, #6d1111); }
.btn-secondary { background: rgba(0,0,0,0.55); color: var(--gold-light); }
.btn-secondary:hover { background: rgba(0,0,0,0.75); }

/* --- Ornament-knoppen (game-look welkomscherm) --- */
.cta-row.ornament { flex-direction: column; align-items: center; gap: 18px; margin-top: 10px; }
.btn-ornament {
  position: relative;
  display: block;
  min-width: min(420px, 88vw);
  padding: 18px 56px;
  border: 2px solid var(--gold);
  outline: 1px solid var(--gold-dark);
  outline-offset: 4px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.55), inset 0 0 24px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn-ornament .label { display: block; font-size: clamp(20px, 3vw, 26px); font-variant: small-caps; letter-spacing: 0.08em; font-weight: 700; }
.btn-ornament .sublabel { display: block; margin-top: 4px; font-size: 13px; color: rgba(255,255,255,0.75); font-style: italic; letter-spacing: 0.02em; }
.btn-ornament::before, .btn-ornament::after {
  content: ''; position: absolute; top: 50%; width: 10px; height: 10px;
  background: var(--gold); transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 6px rgba(216,169,62,0.7);
}
.btn-ornament::before { left: -6px; }
.btn-ornament::after  { right: -6px; }
.btn-ornament:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 10px 26px rgba(0,0,0,0.65), inset 0 0 30px rgba(0,0,0,0.4); }
.btn-ornament.primary   { background: linear-gradient(#8b1a1a, #4a0b0b); }
.btn-ornament.secondary { background: linear-gradient(#1a0e2a, #0a0514); color: var(--gold-light); }
.btn-ornament.secondary .sublabel { color: rgba(236,196,98,0.75); }

/* --- Utility-pillen rechtsboven (naast taal-pillen: tandwiel/zoom/muziek) --- */
.topbar-utility { display: flex; gap: 6px; align-items: center; margin-left: 4px; }
.util-pill {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 26px; padding: 0 8px;
  border: 1.5px solid var(--gold-dark); border-radius: 999px;
  background: rgba(0,0,0,0.4); color: var(--gold);
  cursor: pointer; font-family: inherit; font-size: 13px; font-weight: bold;
  transition: background 0.15s ease, transform 0.15s ease;
}
.util-pill:hover { background: rgba(20,12,40,0.7); transform: translateY(-1px); }
.util-pill.is-on { background: var(--gold); color: #1a0a2e; }
.util-pill svg { display: block; width: 15px; height: 15px; }
.util-zoom { display: inline-flex; align-items: stretch; gap: 0; border: 1.5px solid var(--gold-dark); border-radius: 999px; background: rgba(0,0,0,0.4); overflow: hidden; }
.util-zoom button { border: 0; background: transparent; color: var(--gold); font-family: inherit; font-weight: bold; font-size: 15px; line-height: 1; padding: 0 10px; cursor: pointer; height: 26px; }
.util-zoom button:hover { background: rgba(20,12,40,0.7); }
.util-zoom button + button { border-left: 1px solid var(--gold-dark); }
@media (max-width: 640px) {
  .util-pill { min-width: 28px; height: 24px; padding: 0 6px; }
  .util-zoom button { padding: 0 8px; height: 24px; }
}

/* --- Play-gate modal ("binnenkort speelbaar") --- */
.tn-gate-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5,3,10,0.72); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.tn-gate-overlay.open { display: flex; }
.tn-gate {
  position: relative;
  max-width: 460px; width: 100%;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1.5px solid var(--gold-dark); border-radius: 8px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
}
.tn-gate h3 { color: var(--gold); font-size: 22px; font-variant: small-caps; letter-spacing: 0.06em; margin-bottom: 12px; }
.tn-gate p { color: var(--text-soft); margin-bottom: 20px; line-height: 1.55; }
.tn-gate p strong { color: var(--gold-light); }
.tn-gate-cta {
  display: inline-block; padding: 12px 24px;
  background: var(--gold); color: #0a061a !important; text-decoration: none;
  border-radius: 6px; font-weight: 700; font-variant: small-caps; letter-spacing: 0.05em;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.tn-gate-cta:hover { transform: translateY(-1px); filter: brightness(1.08); }
.tn-gate-close {
  position: absolute; top: 8px; right: 12px;
  background: transparent; border: 0; color: var(--text-mute);
  font-size: 28px; line-height: 1; cursor: pointer;
}
.tn-gate-close:hover { color: var(--gold-light); }
.hero .note { margin-top: 16px; color: var(--text-mute); font-size: 14px; }
.hero-scroll { margin-top: 28px; text-align: center; }
.hero-scroll a { color: var(--text-mute); text-decoration: none; font-size: 14px; font-style: italic; letter-spacing: 0.03em; transition: color 0.15s ease; }
.hero-scroll a:hover { color: var(--gold-light); }

/* --- Secties --- */
section { padding: 56px 0; border-bottom: 1px solid rgba(58,42,74,0.5); }
h2 { color: var(--gold); font-size: clamp(24px, 3.4vw, 32px); text-align: center; margin-bottom: 10px; }
.section-intro { text-align: center; color: var(--text-soft); max-width: 680px; margin: 0 auto 34px; }

/* Stappen (hoe werkt het) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 24px 20px; text-align: center; }
.step-card .num {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 14px;
  background: rgba(216,169,62,0.12); border: 1.5px solid var(--gold-dark);
  color: var(--gold); font-weight: bold; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.step-card h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 19px; }
.step-card p { color: var(--text-soft); font-size: 15px; }

/* Twee kolommen (host vs gast, rollen) */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.duo-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; }
.duo-card.host { border-color: var(--gold-dark); }
.duo-card h3 { color: var(--gold); font-size: 21px; margin-bottom: 4px; }
.duo-card .tagline { color: var(--text-mute); font-size: 14px; margin-bottom: 14px; font-style: italic; }
.duo-card ul { list-style: none; }
.duo-card li { padding: 7px 0 7px 28px; position: relative; color: var(--text-soft); font-size: 15px; }
.duo-card li::before { content: '✦'; position: absolute; left: 4px; color: var(--gold-dark); }
.duo-card li strong { color: var(--text); }
.role-treasoner h3 { color: #ef5350; }
.role-card-badge { display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mute); border: 1px solid var(--border); border-radius: 999px; padding: 2px 10px; margin-bottom: 12px; }

/* Rondes-strip */
.rounds { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.round-pill { border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: bold; border: 1px solid var(--border); }
.round-pill.mission { background: rgba(216,169,62,0.10); color: var(--gold-light); }
.round-pill.council { background: rgba(216,169,62,0.18); color: var(--gold); border-color: var(--gold-dark); }
.round-pill.murder { background: rgba(198,40,40,0.18); color: #ef867f; border-color: #7c2020; }

/* Beloningen */
.rewards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reward-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; }
.reward-card .icon { font-size: 34px; margin-bottom: 10px; }
.reward-card h3 { color: var(--gold-light); font-size: 18px; margin-bottom: 8px; }
.reward-card p { color: var(--text-soft); font-size: 14.5px; }
.challenge {
  margin-top: 30px; text-align: center; background: linear-gradient(rgba(139,26,26,0.25), rgba(139,26,26,0.1));
  border: 1px solid #7c2020; border-radius: 14px; padding: 28px 24px;
}
.challenge h3 { color: var(--gold); font-size: 24px; margin-bottom: 8px; }
.challenge p { color: var(--text-soft); max-width: 560px; margin: 0 auto; }

/* Prijzen */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price-card { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 26px 20px; text-align: center; position: relative; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--gold); background: var(--panel-2); }
.price-card .flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a0a2e; font-size: 12px; font-weight: bold;
  padding: 3px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { color: var(--gold-light); font-size: 19px; margin-bottom: 2px; }
.price-card .games { color: var(--text-mute); font-size: 13.5px; margin-bottom: 12px; }
.price-card .amount { font-size: 34px; color: var(--text); font-weight: bold; }
.price-card .per { color: var(--text-mute); font-size: 13px; margin-bottom: 12px; }
.price-card .save { color: #7fbf7f; font-size: 13.5px; font-weight: bold; margin-top: auto; }
.price-note { text-align: center; color: var(--text-soft); margin-top: 22px; font-size: 15px; }
.price-note strong { color: var(--gold-light); }

/* Accounts / uitleg-blokken */
.explain { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; margin-bottom: 16px; }
.explain h3 { color: var(--gold-light); margin-bottom: 8px; font-size: 19px; }
.explain p, .explain li { color: var(--text-soft); font-size: 15px; }
.explain ol { padding-left: 22px; }
.explain li { margin: 6px 0; }

/* FAQ */
.faq details { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 16px 20px; color: var(--gold-light); font-weight: bold; font-size: 16px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: '⚔ '; color: var(--gold-dark); }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq .answer { padding: 14px 20px 18px; color: var(--text-soft); font-size: 15px; }

/* Oorsprong */
.origin { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px; align-items: center; }
.origin p { color: var(--text-soft); margin-bottom: 12px; }
.origin .origin-card { background: var(--panel); border: 1px solid var(--gold-dark); border-radius: 14px; padding: 24px; text-align: center; }
.origin .origin-card h3 { color: var(--gold); margin-bottom: 8px; }
.origin .origin-card p { font-size: 14.5px; }

/* Footer */
footer { padding: 36px 20px 46px; text-align: center; color: var(--text-mute); font-size: 14px; }
footer .foot-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
footer a { color: var(--text-soft); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

/* Juridische pagina's */
.legal { max-width: 780px; margin: 0 auto; padding: 40px 20px 70px; }
.legal h1 { color: var(--gold); font-size: 30px; margin-bottom: 6px; }
.legal .updated { color: var(--text-mute); font-size: 14px; margin-bottom: 28px; }
.legal h2 { text-align: left; font-size: 20px; margin: 30px 0 8px; }
.legal p, .legal li { color: var(--text-soft); font-size: 15px; }
.legal ul, .legal ol { padding-left: 24px; margin: 8px 0; }
.legal li { margin: 5px 0; }
.legal .box { background: var(--panel); border: 1px solid var(--border); border-left: 3px solid var(--gold-dark); border-radius: 8px; padding: 14px 18px; margin: 14px 0; font-size: 14.5px; }

/* Responsief */
@media (max-width: 900px) {
  .prices { grid-template-columns: repeat(2, 1fr); }
  .steps, .rewards { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .origin { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .prices { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .topnav { gap: 12px; }
  .topnav a:not(.lang-switch) { font-size: 13.5px; }
}

/* --- Knoppen op de prijskaarten + lanceringsregel --- */
.price-btn {
  display: block; margin-top: 14px; padding: 12px 10px;
  border-radius: 8px; text-align: center;
  font-weight: bold; font-size: 16px;
}
.price-btn.soon {
  border: 1.5px dashed rgba(212,169,78,0.55);
  color: var(--gold-light);
  background: rgba(212,169,78,0.07);
  cursor: default;
}
/* Klaar-voor-verkoop: solide gouden knop; wordt automatisch gezet door
   checkout.js zodra er een Mollie-betaallink voor dit pakket is ingevuld. */
.price-btn.live {
  border: 2px solid var(--gold, #C9A84C);
  color: #0a061a;
  background: var(--gold, #C9A84C);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.price-btn.live:hover { transform: translateY(-1px); filter: brightness(1.08); }
.launch-note {
  text-align: center; color: var(--gold-light);
  font-size: 17px; margin: 22px auto 6px; max-width: 640px;
}

/* --- Bestelvenster (checkout-voorportaal) --- */
.tn-checkout-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 3, 10, 0.82);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.tn-checkout-overlay.open { display: flex; }
.tn-checkout {
  position: relative; width: 100%; max-width: 440px;
  background: var(--panel); border: 1.5px solid var(--gold-dark);
  border-radius: 14px; padding: 26px 24px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.tn-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; color: var(--text-mute);
  font-size: 28px; cursor: pointer; line-height: 1;
}
.tn-close:hover { color: var(--gold-light); }
.tn-title { color: var(--gold); font-size: 22px; margin-bottom: 14px; }
.tn-pack {
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px; margin-bottom: 16px;
}
.tn-pack-name { color: var(--gold-light); font-weight: bold; font-size: 19px; }
.tn-pack-games { color: var(--text-soft); font-size: 15px; margin-top: 2px; }
.tn-pack-price { color: var(--text); font-size: 30px; font-weight: bold; margin-top: 6px; }
.tn-methods-label { color: var(--text-soft); font-size: 15px; margin-bottom: 8px; }
.tn-methods { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 14px; }
.tn-method {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 13px 6px 8px; font-size: 14px; color: var(--text);
  background: rgba(255,255,255,0.06);
}
.tn-method img { display: block; width: 32px; height: 24px; border-radius: 4px; background: #fff; }
.tn-note { color: var(--text-soft); font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
.tn-pay {
  display: block; width: 100%; padding: 13px 10px; border-radius: 10px;
  border: 1.5px dashed rgba(212,169,78,0.55); background: rgba(212,169,78,0.07);
  color: var(--gold-light); font-weight: bold; font-size: 16px;
  font-family: inherit; cursor: default;
}
.tn-secure { color: var(--text-mute); font-size: 13px; margin-top: 10px; }

/* Prijs per persoon op de prijskaarten */
.pp { color: var(--gold-light); font-size: 14px; margin-top: 4px; }

/* --- Nette footer --- */
footer { border-top: 1px solid var(--border); }
.foot-logo { height: 42px; width: auto; opacity: 0.9; margin-bottom: 16px; }
.foot-links a { font-size: 15px; }
.foot-langs { display: flex; gap: 6px; justify-content: center; margin: 4px 0 2px; }
.foot-divider { width: min(520px, 80%); height: 1px; margin: 18px auto 14px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.foot-legal { font-size: 13px; }
.foot-copy { font-size: 13px; margin-top: 6px; opacity: 0.85; }

/* === Professionele afwerking: game-typografie, echte art, hover-leven === */
h2, .step-card h3, .duo-card h3, .reward-card h3, .price-card h3, .challenge h3, .notify h2 {
  font-family: 'Iowan Old Style', Palatino, 'Palatino Linotype', Georgia, serif;
  font-variant: small-caps; letter-spacing: 0.04em;
}
.icon-img { display: block; height: 72px; width: auto; margin: 0 auto 14px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); }
.role-art { display: block; height: 170px; width: auto; margin: 0 auto 12px; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.55)); }
.step-card, .duo-card, .reward-card, .price-card { transition: transform 0.18s ease, border-color 0.18s ease; }
.step-card:hover, .duo-card:hover, .reward-card:hover, .price-card:hover { transform: translateY(-3px); border-color: var(--gold-dark); }
.btn { transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,0.45); }

/* Blijf-op-de-hoogte-band */
.notify { background: linear-gradient(180deg, rgba(216,169,62,0.06), transparent); border-bottom: none; text-align: center; }
.notify-in { max-width: 640px; }
.notify h2 { margin-bottom: 8px; }
.notify p { color: var(--text-soft); margin-bottom: 22px; }

/* 404-pagina */
.notfound { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.notfound img { height: 72px; width: auto; margin-bottom: 22px; }
.notfound h1 { color: var(--gold); font-size: 30px; margin-bottom: 10px; font-variant: small-caps; letter-spacing: 0.04em; }
.notfound p { color: var(--text-soft); max-width: 460px; margin-bottom: 26px; }

/* Sfeer-audio knop (rechtsonder, floating) */
.tn-audio-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold, #C9A84C);
  background: rgba(10,6,26,0.78);
  color: var(--gold, #C9A84C);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.tn-audio-btn:hover { transform: translateY(-1px); background: rgba(20,12,40,0.92); box-shadow: 0 10px 24px rgba(0,0,0,0.55); }
.tn-audio-btn.is-on { background: var(--gold, #C9A84C); color: #0a061a; box-shadow: 0 0 0 3px rgba(201,168,76,0.25), 0 6px 18px rgba(0,0,0,0.45); }
.tn-audio-btn.is-on::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  animation: tn-audio-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes tn-audio-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 640px) {
  .tn-audio-btn { right: 12px; bottom: 12px; width: 42px; height: 42px; }
}
