:root {
  --bg: #fff7f1;
  --bg-2: #fffdfb;
  --text: #1f2937;
  --muted: rgba(31, 41, 55, 0.72);
  --line: rgba(31, 41, 55, 0.12);
  --shadow: 0 14px 40px rgba(31, 41, 55, 0.12);

  --orange: #ff6a00;
  --orange-2: #ff9a3c;
  --orange-soft: rgba(255, 106, 0, 0.12);
  --cream: #fff1e6;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 15% -5%, rgba(255, 106, 0, 0.16), transparent 60%),
    radial-gradient(1000px 650px at 92% 12%, rgba(255, 154, 60, 0.18), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(31, 41, 55, 0.045) 0 1px, transparent 1px 18px),
    radial-gradient(900px 500px at 40% 120%, rgba(255, 106, 0, 0.06), transparent 60%);
  opacity: 0.7;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: -6vh 0 -6vh;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.38)),
    url("../img/background.jpg");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  filter: saturate(1.05) contrast(1.06);
  opacity: 0.44;
  z-index: -2;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: none;
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  background: rgba(255, 241, 230, 0.65);
}

.topbar-inner {
  min-height: 34px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-note {
  font-weight: 700;
  font-size: 0.86rem;
  color: rgba(31, 41, 55, 0.7);
}

.toplink {
  font-weight: 800;
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(31, 41, 55, 0.76);
  transition: 0.18s ease;
}

.toplink:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.22);
  color: rgba(31, 41, 55, 0.95);
}

.header-inner {
  min-height: 74px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.header-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255, 255, 255, 0.85), transparent 60%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.brand-name {
  font-size: 1.05rem;
}

.brand::after {
  content: "18+ • Speelpunten • Geen echt geld";
  margin-left: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.1);
  color: rgba(31, 41, 55, 0.78);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.1);
  color: rgba(31, 41, 55, 0.78);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(31, 41, 55, 0.78);
  transition: 0.18s ease;
}

.site-nav a:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.22);
  color: rgba(31, 41, 55, 0.95);
}

.site-nav a.active {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.3);
  color: rgba(31, 41, 55, 0.98);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  background: rgba(255, 106, 0, 0.08);
  color: rgba(31, 41, 55, 0.95);
  font-size: 1.12rem;
}

.wallet-pill {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.08);
  font-weight: 800;
  color: rgba(31, 41, 55, 0.84);
  white-space: nowrap;
}

.wallet-pill strong {
  color: rgba(31, 41, 55, 0.98);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-strong {
  border-color: rgba(255, 106, 0, 0.32);
  background: rgba(255, 106, 0, 0.12);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: 0.18s ease;
  user-select: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(31, 41, 55, 0.14);
  color: rgba(31, 41, 55, 0.92);
}

.btn-ghost:hover {
  border-color: rgba(255, 106, 0, 0.3);
  background: rgba(255, 106, 0, 0.08);
}

.btn-link {
  padding: 12px 10px;
  border-radius: 12px;
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
  font-weight: 900;
}

/* Hero */
.hero {
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.hero-home {
  padding: 34px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.72);
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 10px 0 10px;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: rgba(31, 41, 55, 0.78);
  line-height: 1.65;
  font-weight: 650;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.trust-chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.18);
  font-weight: 900;
  font-size: 0.84rem;
}

.hero-art {
  display: grid;
  justify-items: end;
}

.hero-visual {
  display: grid;
  justify-items: end;
}

.hero-photo {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.12);
  box-shadow: var(--shadow);
  filter: saturate(1.05) contrast(1.06);
}

.poster {
  width: min(440px, 100%);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 41, 55, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
}

.poster-top {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.poster-badge {
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.22);
}

.poster-badge.subtle {
  background: rgba(31, 41, 55, 0.05);
  border-color: rgba(31, 41, 55, 0.12);
}

.poster-mid {
  margin-top: 14px;
  border-radius: 18px;
  background: radial-gradient(220px 180px at 50% 40%, rgba(255, 106, 0, 0.18), transparent 65%),
    linear-gradient(135deg, rgba(255, 241, 230, 0.9), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(31, 41, 55, 0.1);
  padding: 18px;
  position: relative;
  min-height: 180px;
}

.poster-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
  opacity: 0.32;
}

.poster-ring {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 2px dashed rgba(255, 106, 0, 0.35);
  opacity: 0.9;
}

.poster-icons {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 1.55rem;
}

.poster-foot {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-stat {
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 12px;
}

.mini-stat .k {
  display: block;
  font-weight: 900;
  font-size: 0.82rem;
  color: rgba(31, 41, 55, 0.62);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-stat .v {
  display: block;
  margin-top: 6px;
  font-weight: 900;
  font-size: 1.25rem;
}

/* Page hero / sections */
.page-hero {
  margin: 26px 0 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 28px;
}

.page-hero h1 {
  margin-top: 8px;
}

.wallet-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.08);
  font-weight: 900;
  margin-top: 12px;
}

.section {
  margin-top: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
  padding: 16px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.22);
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.1);
  padding: 20px;
}

.card-link {
  transition: 0.18s ease;
}

.card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 18px 44px rgba(31, 41, 55, 0.14);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.22);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-photo {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.12);
  margin: 10px 0 12px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  line-height: 1.6;
  font-weight: 650;
}

.card-cta {
  margin-top: 12px;
  display: inline-flex;
  font-weight: 900;
  color: rgba(255, 106, 0, 1);
}

.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Banner */
.banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(255, 255, 255, 0.8));
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.banner-soft {
  border-color: rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.banner h2 {
  margin: 0 0 6px;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Game pages */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 20px;
}

.game-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.game-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.12);
  margin-top: 12px;
}

.game-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.12);
}

.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.game-surface {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: 20px;
}

.surface-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.control-row {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
  margin-top: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 900;
  font-size: 0.92rem;
}

select,
input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.16);
  padding: 12px 12px;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-weight: 650;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.output {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 106, 0, 0.34);
  background: rgba(255, 106, 0, 0.08);
  padding: 14px;
  font-weight: 800;
  line-height: 1.55;
}

/* Reels */
.reels-machine {
  border-radius: 20px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: linear-gradient(135deg, rgba(255, 241, 230, 0.85), rgba(255, 255, 255, 0.85));
  padding: 16px;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reel-window {
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  height: 96px;
}

.reel-track {
  will-change: transform;
}

.reel-cell {
  height: 96px;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

/* Wheel */
.wheel-wrap {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  margin: 10px auto 0;
  position: relative;
  display: grid;
  place-items: center;
}

.wheel-pointer {
  position: absolute;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 24px solid var(--orange);
  filter: drop-shadow(0 10px 18px rgba(31, 41, 55, 0.22));
}

.wheel {
  width: 100%;
  height: 100%;
  --label-radius: 140px;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.14);
  box-shadow: 0 18px 44px rgba(31, 41, 55, 0.14);
  background:
    conic-gradient(
      from -22.5deg,
      rgba(255, 106, 0, 0.95) 0deg 45deg,
      rgba(255, 154, 60, 0.95) 45deg 90deg,
      rgba(255, 106, 0, 0.88) 90deg 135deg,
      rgba(31, 41, 55, 0.22) 135deg 180deg,
      rgba(255, 154, 60, 0.95) 180deg 225deg,
      rgba(255, 106, 0, 0.78) 225deg 270deg,
      rgba(255, 154, 60, 0.92) 270deg 315deg,
      rgba(31, 41, 55, 0.26) 315deg 360deg
    );
  position: relative;
  transform: rotate(0deg);
  transition: transform 4.2s cubic-bezier(0.1, 0.86, 0.1, 1);
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: radial-gradient(180px 180px at 50% 50%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  z-index: 1;
}

.wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--slice-angle) * 1deg))
    translateY(calc(-1 * var(--label-radius)))
    rotate(calc(var(--slice-angle) * -1deg));
  transform-origin: center;
  font-weight: 900;
  color: rgba(31, 41, 55, 0.92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  z-index: 2;
}

/* Cards (Polder 21) */
.cards-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.hand h3 {
  margin: 0 0 10px;
}

.card-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.play-card {
  width: 64px;
  height: 92px;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.16);
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(31, 41, 55, 0.12);
}

.scoreline {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

/* Achievements */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.achievement {
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.1);
  padding: 16px;
}

.achievement h3 {
  margin: 0 0 6px;
}

.achievement .status {
  margin-top: 10px;
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(31, 41, 55, 0.05);
}

.achievement.unlocked {
  border-color: rgba(255, 106, 0, 0.26);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 255, 255, 0.82));
}

.achievement.unlocked .status {
  border-color: rgba(255, 106, 0, 0.28);
  background: rgba(255, 106, 0, 0.12);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-item .answer {
  display: none;
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

.faq-item.open .answer {
  display: block;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
}

.contact-mail {
  display: inline-flex;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.08);
  margin: 8px 0 6px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.contact-status {
  margin-top: 12px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(31, 41, 55, 0.04);
}

.contact-status[data-kind="ok"] {
  border-color: rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.08);
}

.contact-status[data-kind="error"] {
  border-color: rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.06);
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-box {
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
  padding: 20px;
}

.legal-box h2 {
  margin: 0 0 8px;
}

.legal-box h3 {
  margin: 10px 0 6px;
}

.legal-box p {
  margin: 0;
  line-height: 1.6;
  font-weight: 650;
}

/* Footer */
.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
  background: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.footer-oranje::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 240px at 15% 15%, rgba(255, 106, 0, 0.18), transparent 60%),
    radial-gradient(700px 260px at 90% 10%, rgba(255, 154, 60, 0.16), transparent 62%),
    repeating-linear-gradient(135deg, rgba(31, 41, 55, 0.04) 0 1px, transparent 1px 20px);
  opacity: 0.9;
}

.footer-wave {
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  pointer-events: none;
  opacity: 0.95;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-shell {
  padding: 40px 0 22px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brandblock p {
  margin: 12px 0 0;
  line-height: 1.7;
  font-weight: 650;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.22);
  background: rgba(255, 106, 0, 0.1);
  font-weight: 900;
  font-size: 0.82rem;
  color: rgba(31, 41, 55, 0.85);
}

.footer-navgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-col {
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(31, 41, 55, 0.08);
  padding: 14px;
}

.footer-col h4 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.footer-col a {
  display: block;
  padding: 7px 0;
  color: rgba(31, 41, 55, 0.78);
  font-weight: 850;
  transition: 0.18s ease;
}

.footer-col a:hover {
  color: rgba(255, 106, 0, 1);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-disclaimer {
  margin: 0;
  max-width: 820px;
  line-height: 1.6;
  font-weight: 650;
}

.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.to-top {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.95), rgba(255, 154, 60, 0.95));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255, 106, 0, 0.22);
  transition: 0.18s ease;
}

.to-top:hover {
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-col h4 {
  margin: 0 0 10px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(31, 41, 55, 0.78);
  font-weight: 800;
}

.footer-col a:hover {
  color: rgba(255, 106, 0, 1);
}

.footer-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 41, 55, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Overlay + cookie box */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(17, 24, 39, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.overlay.show {
  display: flex;
}

.overlay-card {
  width: min(520px, 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.28);
  padding: 20px;
  text-align: center;
}

.overlay-card h2 {
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
}

.overlay-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 650;
}

.overlay-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-box {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 70;
  width: min(390px, calc(100vw - 28px));
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
}

.cookie-box.show {
  display: block;
}

.cookie-box h4 {
  margin: 0 0 8px;
}

.cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    justify-items: start;
  }
  .steps,
  .card-grid,
  .game-grid,
  .achievement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-navgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .topbar-right {
    display: none;
  }
  .header-right {
    display: none;
  }
  .header-badge {
    display: none;
  }
  .brand::after {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .site-nav.show {
    display: flex;
  }
  .steps,
  .card-grid,
  .game-grid,
  .achievement-grid,
  .form-grid,
  .cards-zone,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-navgrid {
    grid-template-columns: 1fr;
  }
  .wheel-wrap {
    width: 280px;
  }
  .wheel {
    --label-radius: 110px;
  }
  .wheel-label {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
