:root {
  --bg: #0b0b16;
  --ink: #f2eef9;
  --muted: #b9b2cc;
  --card: #16162a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; min-height: 92svh; display: flex;
        flex-direction: column; overflow: hidden; }
.hero picture, .hero-bg { position: absolute; inset: 0; width: 100%;
        height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(to bottom, rgba(11,11,22,.45) 0%, rgba(11,11,22,0) 30%,
                  rgba(11,11,22,0) 55%, var(--bg) 100%); }
nav.top { position: relative; z-index: 2; display: flex; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding: 1.1rem 1.4rem; font-size: .95rem; }
nav.top .links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
nav.top a { text-decoration: none; color: var(--ink);
  text-shadow: 0 1px 8px rgba(0,0,0,.7); opacity: .92; }
nav.top a:hover { opacity: 1; text-decoration: underline; }
nav.top .lang { border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px; padding: .25rem .9rem; backdrop-filter: blur(4px);
  background: rgba(11,11,22,.25); }
.burger { display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 2.8rem; height: 2.8rem; padding: 0 .6rem;
  border: 1px solid rgba(255,255,255,.35); border-radius: .7rem;
  background: rgba(11,11,22,.35); backdrop-filter: blur(4px);
  cursor: pointer; }
.burger span { display: block; height: 2px; border-radius: 2px;
  background: #fff; transition: transform .25s ease, opacity .2s ease; }
nav.top.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.top.open .burger span:nth-child(2) { opacity: 0; }
nav.top.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 700px) {
  .burger { display: flex; }
  nav.top .links { display: none; position: absolute; top: 100%;
    left: 1rem; right: 1rem; flex-direction: column; gap: 0;
    background: rgba(13,12,26,.96); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 1rem;
    padding: .4rem; box-shadow: 0 14px 50px rgba(0,0,0,.55); }
  nav.top.open .links { display: flex; }
  nav.top .links a { padding: .85rem 1rem; border-radius: .7rem;
    text-shadow: none; }
  nav.top .links a:hover { background: rgba(255,255,255,.08);
    text-decoration: none; }
}
.hero-inner { position: relative; z-index: 1; margin: auto;
  text-align: center; padding: 2rem 1.2rem 4rem; max-width: 62rem; }
.wordmark { width: min(94vw, 54rem); height: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.55)); }
.claim { margin-top: 1.4rem; font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  text-shadow: 0 1px 12px rgba(0,0,0,.8); color: #fff; }
.btn { display: inline-block; margin-top: 1.6rem; padding: .8rem 1.7rem;
  border-radius: 999px; text-decoration: none; font-weight: 600;
  color: #1a1030;
  background: linear-gradient(100deg, #ffd76e, #ff9ecf 55%, #9fd4ff);
  box-shadow: 0 6px 30px rgba(255,158,207,.35); }
.btn:hover { filter: brightness(1.07); }

/* ------------------------------------------------------------- Sparten */
main { max-width: 72rem; margin: 0 auto; padding: 1rem 1.4rem 3rem; }
.sparte { padding: 3.2rem 0 1.4rem; }
.sparte .kicker { text-transform: uppercase; letter-spacing: .22em;
  font-size: .8rem; color: var(--accent); font-weight: 700; }
.sparte h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin: .25rem 0 .4rem;
  background: linear-gradient(90deg, var(--ink), var(--accent));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--ink); width: fit-content; }
.sparte .intro { color: var(--muted); max-width: 44rem; }
.grid { display: grid; gap: 1.3rem; margin-top: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr)); }
.card h3 { font-size: .98rem; font-weight: 600; margin-top: .6rem;
  color: var(--ink); }
.thumb { display: block; width: 100%; aspect-ratio: 16 / 9;
  border: 0; border-radius: .9rem; overflow: hidden; background: var(--card); }
.thumb { position: relative; padding: 0; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease; }
.thumb:hover img { transform: scale(1.04); }
.thumb::after { content: ""; position: absolute; inset: 0; border-radius: .9rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.thumb:hover { box-shadow: 0 8px 32px color-mix(in srgb, var(--accent) 35%, transparent); }
.play { position: absolute; inset: 0; display: grid; place-items: center; }
.play svg { width: 3.2rem; height: 3.2rem; fill: #fff;
  background: rgba(10,8,20,.55); border-radius: 50%; padding: .7rem;
  backdrop-filter: blur(3px); transition: transform .2s ease; }
.thumb:hover .play svg { transform: scale(1.1); }
.mehr { margin-top: 1.4rem; }
.mehr a { color: var(--accent); text-decoration: none; font-weight: 600; }
.mehr a:hover { text-decoration: underline; }

/* ------------------------------------------------------------ Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 50;
  background: rgba(5,4,12,.88); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 4vmin;
  animation: lb-in .18s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-frame { width: min(92vw, calc(84vh * 16 / 9)); aspect-ratio: 16 / 9;
  border-radius: 1rem; overflow: hidden; background: #000;
  box-shadow: 0 20px 80px rgba(0,0,0,.7); }
.lb-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lb-close { position: absolute; top: 1rem; right: 1.2rem;
  width: 2.8rem; height: 2.8rem; border-radius: 50%; border: 0;
  cursor: pointer; font-size: 1.2rem; color: #fff;
  background: rgba(255,255,255,.14); }
.lb-close:hover { background: rgba(255,255,255,.28); }

/* -------------------------------------------------------------- Footer */
footer { border-top: 1px solid rgba(255,255,255,.09); margin-top: 2rem;
  padding: 2rem 1.4rem 2.6rem; text-align: center; color: var(--muted);
  font-size: .92rem; }
footer p { margin: .35rem 0; }
footer a { color: var(--muted); }
footer .hint { font-size: .85rem; opacity: .8; }
footer .copy { margin-top: .9rem; }

/* --------------------------------------------------------- Unterseiten */
body.legal main { max-width: 44rem; padding-top: 2.5rem; }
body.legal h1 { margin: 1rem 0; }
body.legal h2 { margin: 1.4rem 0 .4rem; font-size: 1.15rem; }
body.legal p { margin: .5rem 0; }
body.legal .todo { border: 1px dashed #ffb37f; color: #ffb37f;
  padding: .6rem .9rem; border-radius: .6rem; font-weight: 600; }
