@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/cormorant.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url(fonts/cormorant-ext.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Alegreya Sans';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/alegreya-400.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Alegreya Sans';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/alegreya-400-ext.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Alegreya Sans';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/alegreya-700.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:'Alegreya Sans';font-style:normal;font-weight:700;font-display:swap;src:url(fonts/alegreya-700-ext.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
/* Die Landingpage sieht aus wie das Spiel: warmes Holz, Messing, polierte
   Steine. Ein Umschalter zwischen hell und dunkel ist bewusst nicht drin — die
   App hat einen, eine Werbeseite braucht eine Handschrift, und alles Material
   drumherum (Video, Standbilder, Store-Bilder) ist dunkel. Eine helle Fassung
   derselben Seite wäre eine zweite Gestaltung, die niemand pflegt.

   Der Aufbau kommt ohne Raster-Bibliothek aus: eine Spalte mit Höchstbreite,
   darin zwei Flächen, die umbrechen. Bei 320 px darf nichts seitlich
   herauslaufen — dieselbe Regel wie in der App. */

:root {
  color-scheme: dark;
  --ink: #F4E7CE;
  --sub: #C6AB86;
  --bg: #241609;
  --bg2: #14100b;
  --panel: rgba(255, 240, 214, 0.05);
  --line: rgba(201, 165, 103, 0.28);
  --brass: #C9A567;
  --brass-2: #8C6A34;
  --radius: 16px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Alegreya Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, #3B2513 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  /* Die feine Maserung, die auch das Brett trägt. */
  background-color: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(38px, 7vw, 68px); }
h2 { font-size: clamp(28px, 4.4vw, 40px); }
h3 { font-size: 21px; }
p { margin: 0 0 1em; }
a { color: var(--brass); }

main, .top, footer {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Kopf ─────────────────────────────────────────────────────────────── */

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 9;
  background: var(--brass);
  color: #241609;
  padding: 10px 16px;
  border-radius: 10px;
}

.top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}
.brand img { border-radius: 10px; }

/* Die Sprachauswahl sieht aus wie ein Auswahlfeld, ist aber ein <details> mit
   zwölf echten Links darin — siehe site/build.mjs. Deshalb wird der Knopf hier
   von Hand gebaut statt von einem <select> geerbt. */
.pick { position: relative; }
.pick summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.pick summary::-webkit-details-marker { display: none; }
.pick summary:hover { border-color: var(--brass); }
.pick[open] summary { border-color: var(--brass); }

.caret {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--brass);
}
.pick[open] .caret { transform: rotate(180deg); }

.pick ul {
  position: absolute;
  z-index: 8;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  max-height: min(80vh, 580px);
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #2B1B0D;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.pick li { margin: 0; }
.pick ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
}
.pick ul a:hover { background: rgba(201, 165, 103, 0.16); }
.pick ul a[aria-current] { color: var(--brass); font-weight: 700; }

/* Die Flaggen sind nachgezeichnet (site/flags.mjs). Der feine Rand hält die
   weißen und hellen Bahnen — Dänemark, Niederlande — vom Untergrund getrennt. */
.langs svg,
.langlist svg {
  flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 240, 214, 0.22);
}

/* ── Kopfbereich mit Video und Download ───────────────────────────────── */

.hero { text-align: center; padding: 18px 0 28px; }
.hero h1 { margin-top: 8px; }
.lead {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--sub);
  max-width: 46ch;
  margin: 0 auto 28px;
}

.video {
  position: relative;
  margin: 0 auto 44px;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  background: #14100b;
}
.video img,
.video video,
.video iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.facade {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(36, 22, 9, 0.72);
  border: 2px solid var(--brass);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.play::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 26px solid var(--brass);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  transform: translateX(4px);
}
.facade:hover .play { background: rgba(36, 22, 9, 0.9); }

/* „Für Android und iOS" steht über den Abzeichen statt klein darunter: es ist
   die Frage, die vor dem Tippen kommt — gibt es das für mein Gerät? */
.ctaLead {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 26px;
  text-align: center;
}

/* Abzeichen und QR-Code stehen nebeneinander, aber nicht aneinander: der
   Abstand dazwischen ist größer als der zwischen den beiden Abzeichen, sonst
   liest sich die Reihe als vier gleichrangige Kacheln. Der Strich dazwischen
   trennt die zwei Wege — tippen oder scannen. */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 52px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.badge {
  display: block;
  border-radius: 8px;
}
.badge svg,
.badge img {
  display: block;
  height: 60px;
  width: auto;
}
.badge:hover { filter: brightness(1.12); }
.badge:active { transform: translateY(1px); }

.button {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  color: #2A1B10;
  background: linear-gradient(180deg, #E3C88B 0%, var(--brass) 55%, var(--brass-2) 100%);
  border: 1px solid #E3C88B;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}
.button:hover { filter: brightness(1.06); }
.button:active { transform: translateY(1px); }

/* Der Code steht über seiner Zeile, nicht daneben: daneben brach die Zeile
   zweizeilig um und das Ganze sah gequetscht aus. */
.qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--sub);
  text-align: center;
  padding-left: 52px;
  border-left: 1px solid var(--line);
}
.qr svg {
  flex: none;
  border-radius: 10px;
  padding: 7px;
  background: #F6EBD6;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  width: 124px;
  height: 124px;
}

.fineprint {
  font-size: 13px;
  color: var(--sub);
  margin: 14px 0 0;
  text-align: center;
}

/* ── Fließtext und Merkmale ───────────────────────────────────────────── */

.intro {
  max-width: 62ch;
  margin: 44px auto 8px;
  font-size: 19px;
  color: var(--sub);
  text-align: center;
}

main h2 { text-align: center; margin-top: 52px; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0 8px;
}
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 12px;
}
/* Die Überschriften kommen aus dem Store-Text und stehen dort in Großbuchstaben.
   In der Serifenschrift und auf 22 px schreien sie; als kleine, gesperrte
   Messing-Zeile in der Grotesk lesen sie sich als das, was sie sind — Etiketten
   über einer Liste. */
.feature h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Alegreya Sans', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--brass);
  margin-bottom: 14px;
}
.ficon { font-size: 16px; letter-spacing: 0; }
.feature ul { margin: 0; padding-left: 1.1em; }
.feature li { margin-bottom: 8px; color: var(--sub); }
.feature p { color: var(--sub); }

.rules {
  max-width: 66ch;
  margin: 56px auto 0;
  text-align: center;
}
.rules p { color: var(--sub); }

/* ── Fragen ───────────────────────────────────────────────────────────── */

.faq { margin-top: 56px; }
.qa { max-width: 760px; margin: 0 auto; }
.qa details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 12px;
  padding: 4px 20px;
}
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary h3 { margin: 0; font-size: 20px; flex: 1; }
.qa summary::after {
  content: '+';
  font-size: 24px;
  color: var(--brass);
  line-height: 1;
}
.qa details[open] summary::after { content: '\2212'; }
.qa details p { color: var(--sub); margin: 0 0 16px; }

/* ── Abschluss und Fuß ────────────────────────────────────────────────── */

.closing {
  text-align: center;
  margin: 64px auto 0;
  max-width: 62ch;
}
.closing p { color: var(--sub); margin-bottom: 24px; }

footer {
  text-align: center;
  color: var(--sub);
  font-size: 14px;
  padding-top: 48px;
  padding-bottom: 40px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
footer p { margin: 0 0 8px; }
.legal a { color: var(--sub); }

/* ── Startseite mit der Sprachliste ───────────────────────────────────── */

.picker main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.picker img { border-radius: 22px; }
.picker h1 { font-size: clamp(30px, 6vw, 46px); }
.langlist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 520px;
}
.langlist a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
}
.langlist a:hover { border-color: var(--brass); }

/* Bei 320 px darf nichts seitlich herauslaufen. */
@media (max-width: 560px) {
  /* Auf dem Telefon stehen Knopf und Code untereinander. Der Code bleibt
     trotzdem sichtbar: wer die Seite auf dem Telefon liest, tippt den Knopf —
     wer sie am Rechner liest, scannt. Beides nebeneinander wegzulassen wäre
     bequem und würde den halben Zweck der Seite kosten. */
  /* Untereinander fällt der Trennstrich weg — er trennte zwei Spalten, die es
     dann nicht mehr gibt. */
  .cta { flex-direction: column; gap: 30px; }
  .qr { padding-left: 0; border-left: 0; padding-top: 30px; border-top: 1px solid var(--line); }
}

@media (max-width: 380px) {
  body { font-size: 16px; }
  main, .top, footer { padding: 0 14px; }
  .button { width: 100%; text-align: center; }
}
