/* Startseite der Spielesammlung — dunkel, ruhig, groß genug für Daumen. */

:root {
  --grund: #11151c;
  --grund-2: #0a0d13;
  --karte: #1a212c;
  --naht: #2b3543;
  --text: #e8edf4;
  --leise: #8e9bad;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--grund);
  background-image: radial-gradient(120% 40% at 50% 0%, #1d2836 0%, rgba(29, 40, 54, 0) 70%),
    linear-gradient(180deg, var(--grund) 0%, var(--grund-2) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.blatt { max-width: 640px; margin-inline: auto; padding: calc(var(--safe-t) + 30px) 18px calc(28px + var(--safe-b)); }

.kopf .ober {
  margin: 0; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--leise); font-weight: 700;
}
.kopf h1 { margin: 4px 0 10px; font-size: clamp(34px, 11vw, 48px); letter-spacing: -0.02em; }
.kopf .unter { margin: 0 0 26px; color: var(--leise); font-size: 15px; text-wrap: pretty; }
.kopf strong { color: var(--text); font-weight: 650; }

.liste { display: flex; flex-direction: column; gap: 12px; }
.spiel {
  display: flex; align-items: center; gap: 14px;
  background: var(--karte); border: 1px solid var(--naht);
  border-left: 4px solid var(--akzent);
  border-radius: 16px; padding: 16px 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.12s ease, border-color 0.15s ease;
}
.spiel:active { transform: scale(0.99); }
.spiel:focus-visible { outline: 2px solid var(--akzent); outline-offset: 3px; }
.zeichen { width: 40px; height: 40px; flex: none; fill: var(--akzent); stroke: var(--akzent); }
.spiel .text { flex: 1; min-width: 0; }
.spiel h2 { margin: 0; font-size: 19px; letter-spacing: -0.01em; }
.spiel .zeile { margin: 1px 0 6px; font-size: 13px; color: var(--akzent); font-weight: 600; }
.spiel .beschreibung { margin: 0; font-size: 13.5px; color: var(--leise); }
.spiel .fakten { margin: 8px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.spiel .fakten span {
  font-size: 11px; color: var(--leise);
  border: 1px solid var(--naht); border-radius: 999px; padding: 2px 8px;
}
.spiel .pfeil { color: var(--leise); font-size: 20px; flex: none; }

.hinweiskasten {
  margin-top: 26px; background: var(--karte); border: 1px solid var(--naht);
  border-radius: 16px; padding: 16px;
}
.hinweiskasten h3 {
  margin: 0 0 8px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--leise);
}
.hinweiskasten p { margin: 0 0 10px; font-size: 14px; color: var(--leise); }
.hinweiskasten p:last-child { margin-bottom: 0; }
.hinweiskasten strong { color: var(--text); font-weight: 650; }
.hinweiskasten em { color: var(--text); font-style: normal; }

.fuss { margin-top: 24px; text-align: center; font-size: 12px; color: var(--leise); }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
