/* ═══════════════════════════════════════════════════════════════════════════
   perversling.com — Rave-Flyer

   Die Idee in einem Satz: ein fotokopierter Flyer, der im Dunkeln leuchtet.

   Woraus die Optik gebaut ist — wer hier etwas ändert, sollte das kennen:

   1. FARBE. Reines Schwarz, reines Weiß, dazu genau zwei Leuchtfarben:
      Säuregrün und Magenta. Keine Zwischentöne, keine Verläufe in der Fläche.
      Die dritte Farbe --signal wird aus dem Cover jeder Veröffentlichung
      berechnet: dieselbe Vorlage sieht dadurch bei jedem Release anders aus.

   2. SCHRIFT. Drei Schnitte mit klaren Aufgaben:
        Anton         — die Titel. Fett, schmal, Versalien, eng gestapelt.
        Space Grotesk — Fließtext.
        Space Mono    — alles Technische: Daten, Nummern, Beschriftungen.
      Schreibmaschinenschrift für Zahlen ist der halbe Flyer.

   3. FORM. Keine runden Ecken, keine weichen Schatten. Rechtecke, harte
      Rahmen, Versatz. Wo etwas hervorgehoben wird, bekommt es einen
      versetzten Zweitdruck in Magenta — wie ein verrutschter Farbauszug.

   4. RASTER. Alles steht links an einer Kante. Nichts ist zentriert.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Schriften, alle vom eigenen Server ─────────────────────────────────── */

@font-face {
  font-family: 'Anton';
  src: url('fonts/anton-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Anton';
  src: url('fonts/anton-latin-ext.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, 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: 'Grotesk';
  src: url('fonts/grotesk-latin.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Grotesk';
  src: url('fonts/grotesk-latin-ext.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, 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: 'Maschine';
  src: url('fonts/mono-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Maschine';
  src: url('fonts/mono-latin-ext.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Grundwerte ─────────────────────────────────────────────────────────── */

:root {
  --schwarz:  #000000;
  --weiss:    #ffffff;
  --saeure:   #ccff00;   /* die laute Farbe: Rahmen, Zahlen, Zeiger */
  --magenta:  #ff2d9b;   /* der verrutschte Farbauszug */
  --grau:     #7e7e7e;
  --grau-hell:#b6b6b6;
  --linie:    rgba(255, 255, 255, .22);

  /* Wird pro Veröffentlichung aus dem Cover gesetzt (siehe layout.php).
     Ohne Cover bleibt es Säuregrün. */
  --signal: #ccff00;

  --breit: min(1520px, 100% - 6vw);
  --kante: max(3vw, 22px);        /* der linke Anschlag, an dem alles steht */
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--schwarz);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--schwarz);
  color: var(--weiss);
  font-family: 'Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(15px, .55vw + 13px, 17px);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }

/* Alles Technische: Nummern, Daten, Beschriftungen. Schreibmaschine, gesperrt,
   Versalien — das ist die Handschrift dieser Seite. */
.label {
  font-family: 'Maschine', ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.5;
}

.nur-vorleser {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--saeure); color: var(--schwarz);
  padding: .8rem 1.4rem; font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--saeure); outline-offset: 3px; }

/* ── Bildschirm-Textur ──────────────────────────────────────────────────────
   Statt Filmkorn liegen hier feine waagerechte Zeilen über allem — der
   Röhrenmonitor im Kellerclub. Bewusst sehr schwach; man soll es spüren,
   nicht sehen. */
.korn {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, .045) 0px,
    rgba(255, 255, 255, .045) 1px,
    transparent 1px,
    transparent 3px);
  mix-blend-mode: overlay;
}

/* ── Kopfzeile ──────────────────────────────────────────────────────────────
   Der Name steht in einem Kasten, wie ein aufgeklebtes Etikett. */

.kopf {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 14px var(--kante);
  transition: background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.kopf.ist-gescrollt {
  background: rgba(0, 0, 0, .92);
  border-bottom-color: var(--linie);
  backdrop-filter: blur(6px);
}

.kopf-marke {
  font-family: 'Anton', sans-serif;
  font-size: 15px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--schwarz);
  background: var(--saeure);
  padding: .34em .7em .28em;
  white-space: nowrap;
}
.kopf-marke:hover { background: var(--magenta); color: var(--weiss); }

.kopf-menue { display: flex; gap: 1.6rem; }
.kopf-menue a {
  text-decoration: none; color: var(--grau-hell);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.kopf-menue a:hover,
.kopf-menue a[aria-current="page"] { color: var(--saeure); border-bottom-color: var(--saeure); }

/* ── Die Bühne: Video oder Cover, formatfüllend ─────────────────────────── */

.buehne {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 96px 0 30px;
  overflow: hidden;
  isolation: isolate;
}

/* Die Ebenen der Bühne, von hinten nach vorn. Bewusst mit positiven Zahlen:
   negative z-Werte sind zerbrechlich, sobald irgendwo ein Filter oder eine
   Mischung im Spiel ist — dann verschwindet der Hintergrund einfach. */
.buehne-film {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--schwarz);
  /* --film-dunkel kommt aus den Einstellungen: 0 = unangetastet, 1 = maximal.
     Es steuert ALLE Ebenen, die abdunkeln — sonst wirkt der Regler nicht. */
  filter: brightness(calc(1 - .5 * var(--film-dunkel, .55))) contrast(1.12) saturate(.85);
}

.film-flaeche {
  position: absolute; inset: 0; overflow: hidden;
  container-type: size;
}
.film-flaeche iframe,
.film-flaeche .buehne-standbild {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width:  calc(max(100vw, 177.78svh) * var(--film-zoom, 1.6));
  height: calc(max(56.25vw, 100svh)  * var(--film-zoom, 1.6));
  max-width: none;
  border: 0; pointer-events: none;
}
@supports (container-type: size) {
  .film-flaeche iframe,
  .film-flaeche .buehne-standbild {
    width:  calc(max(100cqw, 177.78cqh) * var(--film-zoom, 1.6));
    height: calc(max(56.25cqw, 100cqh)  * var(--film-zoom, 1.6));
  }
}

/* Ohne Video steht das Cover im Hintergrund — genauso formatfüllend.
   Ein Cover ist meist eine flächig helle Grafik, deshalb greift die
   Abdunkelung hier kräftiger zu als bei einem Video. */
.buehne-film.ist-cover .buehne-standbild {
  top: 0; left: 0; transform: none;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
}
.buehne-film.ist-cover {
  filter: brightness(calc(1 - .72 * var(--film-dunkel, .55))) contrast(1.15) saturate(.8);
}

/* Der Verlauf, der den Text tragfähig macht: unten dicht, oben offen. */
.buehne-film::after {
  content: ''; position: absolute; inset: 0;
  opacity: var(--film-dunkel, .55);
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .92) 26%, rgba(0, 0, 0, .60) 48%,
      rgba(0, 0, 0, .18) 74%, rgba(0, 0, 0, .34) 100%),
    linear-gradient(100deg,
      rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .38) 42%, transparent 68%);
}

/* Eine schräge Leuchtkante am unteren Rand — das einzige Schrägelement der
   Seite. Sie nimmt die Farbe des Covers auf. */
.buehne-schleier {
  position: absolute; inset: auto 0 0 0; height: 46vh; z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .96) 12%, transparent 100%);
}
.buehne-schleier::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--signal) 0%, var(--signal) 38%, var(--magenta) 38%, var(--magenta) 52%,
    transparent 52%);
}

.buehne-inhalt {
  width: var(--breit);
  margin-left: var(--kante); margin-right: auto;
  position: relative; z-index: 2;
}

/* Die technische Zeile über dem Titel — Fließband-Beschriftung. */
.technik {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  margin: 0 0 1.1rem;
  color: var(--grau-hell);
}
.technik .katalog {
  color: var(--schwarz); background: var(--signal);
  padding: .3em .55em .24em; font-weight: 700;
}
.technik .trenner { color: var(--saeure); }

/* Der Titel: gestapelte Versalien, eng, mit verrutschtem Zweitdruck. */
.titel {
  --titel-groesse: clamp(3.6rem, 12.5vw, 12rem);
  font-family: 'Anton', sans-serif;
  font-size: var(--titel-groesse);
  line-height: .84;
  letter-spacing: -.015em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 1.2rem;
  max-width: 15ch;
  color: var(--weiss);
  text-shadow: .055em .045em 0 var(--magenta);
}
.titel.ist-lang      { --titel-groesse: clamp(3rem, 9.5vw, 8.6rem); }
.titel.ist-sehr-lang { --titel-groesse: clamp(2.4rem, 7vw, 6.4rem); }

.band-zeile {
  display: flex; align-items: center; gap: .9rem;
  margin: 0 0 2rem;
}
.band-zeile .strich { width: 46px; height: 2px; background: var(--saeure); flex: none; }
.band-name {
  font-family: 'Maschine', monospace;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; color: var(--weiss);
}
a.band-name:hover { color: var(--saeure); }

/* ── Knöpfe: Video ansehen, Hörprobe ────────────────────────────────────── */

.probe-reihe {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .85rem 1.2rem;
  margin-bottom: 2.4rem;
}

.film-knopf {
  display: inline-flex; align-items: center; gap: .85rem;
  background: var(--saeure); color: var(--schwarz);
  border: 0; cursor: pointer;
  padding: .75rem 1.3rem .7rem .95rem;
  font: inherit;
  transition: transform .12s, background .15s;
}
.film-knopf:hover { background: var(--magenta); color: var(--weiss); transform: translate(-2px, -2px); }
.film-knopf-zeichen { width: 20px; height: 20px; flex: none; }
.film-knopf-zeichen svg { width: 100%; height: 100%; }
.film-knopf-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.film-knopf-text b {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: 17px; letter-spacing: .04em; text-transform: uppercase;
}
.film-knopf-text .label { font-size: 10px; opacity: .75; }

.probe-knopf {
  width: 50px; height: 50px; flex: none;
  display: grid; place-items: center;
  background: transparent; color: var(--weiss);
  border: 2px solid var(--weiss); cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.probe-knopf:hover { background: var(--weiss); color: var(--schwarz); }
.probe-knopf[aria-pressed="true"] { background: var(--magenta); border-color: var(--magenta); color: var(--weiss); }
.probe-knopf svg { width: 17px; height: 17px; }
.probe-knopf .zeichen-pause { display: none; }
.probe-knopf[aria-pressed="true"] .zeichen-play  { display: none; }
.probe-knopf[aria-pressed="true"] .zeichen-pause { display: block; }

.probe-text { display: flex; flex-direction: column; line-height: 1.2; }
.probe-text b {
  font-family: 'Maschine', monospace; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.probe-text .label { font-size: 10px; color: var(--grau); }

.probe-balken {
  flex: 1; min-width: 90px; max-width: 260px; height: 2px;
  background: rgba(255, 255, 255, .2);
}
.probe-balken span { display: block; height: 100%; width: 0; background: var(--magenta); }

/* ── Store-Liste: harte Kästen, keine runden Ecken ──────────────────────── */

.stores { margin-top: .4rem; }
.stores-titel {
  display: flex; align-items: baseline; gap: .9rem;
  margin-bottom: .85rem;
  color: var(--saeure);
}
.stores-titel::after {
  content: ''; flex: 1; height: 1px; background: var(--linie);
}

.store-liste {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  max-width: 1180px;
}
.store-link {
  display: grid; grid-template-columns: 22px minmax(0, 1fr) 12px;
  align-items: center; gap: .7rem;
  padding: .72rem .85rem;
  text-decoration: none; color: var(--weiss);
  border: 1px solid var(--linie);
  background: rgba(255, 255, 255, .03);
  transition: border-color .14s, background .14s, transform .14s;
}
.store-link:hover {
  border-color: var(--saeure);
  background: rgba(204, 255, 0, .1);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--magenta);
}
.store-link svg, .store-link .store-mark { width: 20px; height: 20px; }
.store-link .store-mark {
  display: grid; place-items: center;
  font-family: 'Anton', sans-serif; font-size: 13px;
  background: var(--marke, var(--saeure)); color: var(--schwarz);
}
.store-name {
  font-family: 'Maschine', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.store-link .pfeil { opacity: .4; }
.store-link:hover .pfeil { opacity: 1; color: var(--saeure); }

/* ── Fuß der Bühne ──────────────────────────────────────────────────────── */

.buehne-fuss {
  width: var(--breit);
  margin-left: var(--kante); margin-right: auto;
  margin-top: 2.6rem;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  color: var(--grau);
}
.film-schalter {
  display: inline-flex; align-items: center; gap: .55rem;
  background: none; border: 0; color: inherit; cursor: pointer;
  font: inherit; padding: 0;
}
.film-schalter:hover { color: var(--saeure); }
.film-punkt {
  width: 7px; height: 7px; background: var(--saeure); flex: none;
}
.film-schalter[aria-pressed="true"] .film-punkt { background: var(--grau); }

.runter {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; color: var(--grau);
}
.runter:hover { color: var(--saeure); }

/* ── Zweiter Abschnitt: Cover, Text, harte Daten ────────────────────────── */

.notizen {
  width: var(--breit);
  margin-left: var(--kante); margin-right: auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--linie);
}
.notizen-raster {
  display: grid; gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  align-items: start;
}
.cover img {
  width: 100%; height: auto;
  border: 1px solid var(--linie);
}

.abschnitt-marke {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem;
  color: var(--saeure);
}
.abschnitt-marke::before {
  content: ''; width: 20px; height: 12px; background: var(--saeure); flex: none;
}
.abschnitt-marke::after { content: ''; flex: 1; height: 1px; background: var(--linie); }

.fliess { max-width: 62ch; }
.fliess p { margin: 0 0 1.1rem; color: var(--grau-hell); }
.fliess p:first-of-type {
  font-size: 1.22em; line-height: 1.5; color: var(--weiss);
}

.angaben { margin-top: 2.6rem; }
.angaben dl {
  display: grid; grid-template-columns: 150px minmax(0, 1fr);
  gap: 0; margin: 0;
  border-top: 1px solid var(--linie);
}
.angaben dt {
  font-family: 'Maschine', monospace;
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grau);
  padding: .7rem 0; border-bottom: 1px solid var(--linie);
}
.angaben dd {
  margin: 0; padding: .7rem 0; border-bottom: 1px solid var(--linie);
}
.angaben dd.zahlen { font-family: 'Maschine', monospace; font-size: 13px; letter-spacing: .06em; }

.als-link {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--saeure);
  border-bottom: 1px solid currentColor;
}
.als-link:hover { color: var(--magenta); }

/* ── Verzeichnis der übrigen Veröffentlichungen ─────────────────────────── */

.verzeichnis {
  width: var(--breit);
  margin-left: var(--kante); margin-right: auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--linie);
}
/* Auf einer Übersichtsseite folgt das Verzeichnis direkt auf den Kopf —
   dort wäre der zweite große Abstand eine Lücke ohne Grund. */
.uebersicht-kopf + .verzeichnis { padding-top: .5rem; border-top: 0; }
.katalog-liste { list-style: none; margin: 0; padding: 0; }
.katalog-zeile { border-bottom: 1px solid var(--linie); }
.katalog-zeile:first-child { border-top: 1px solid var(--linie); }

.katalog-link {
  display: grid;
  grid-template-columns: 86px 64px minmax(0, 1fr) 190px 64px 28px;
  align-items: center; gap: 1.1rem;
  padding: .85rem 0;
  text-decoration: none; color: var(--weiss);
  transition: background .14s, padding .14s;
}
.katalog-link:hover { background: rgba(204, 255, 0, .08); padding-left: 1rem; }
.katalog-nr { color: var(--saeure); }
.katalog-bild img { width: 64px; height: 64px; object-fit: cover; }
.katalog-titel {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: .01em; text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.katalog-band, .katalog-jahr { color: var(--grau); }
.katalog-pfeil { color: var(--saeure); opacity: 0; transition: opacity .14s; }
.katalog-link:hover .katalog-pfeil { opacity: 1; }

/* ── Übersichtsseiten und Textseiten ────────────────────────────────────── */

/* Der Kopf einer Übersichtsseite steht an derselben linken Kante wie alles
   andere — sonst klebt die Überschrift am Bildschirmrand. */
.uebersicht-kopf {
  width: var(--breit);
  margin-left: var(--kante); margin-right: auto;
  padding: clamp(6rem, 12vw, 8.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}
.uebersicht-kopf > .label { color: var(--saeure); margin: 0; }
.verzeichnis-kopf { padding-top: 0; }
.uebersicht-kopf h1, .textseite h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: .9; letter-spacing: -.01em; text-transform: uppercase;
  margin: .4rem 0 1rem;
  text-shadow: .05em .04em 0 var(--magenta);
}
.einleitung { max-width: 58ch; color: var(--grau-hell); margin-bottom: 2.5rem; }

.textseite {
  width: min(760px, 100% - 2 * var(--kante));
  margin-left: var(--kante);
  padding: clamp(6rem, 12vw, 9rem) 0 6rem;
}
.textseite h2 {
  font-family: 'Maschine', monospace;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--saeure);
  margin: 2.6rem 0 .8rem;
}
.textseite a { color: var(--saeure); }

/* ── Kinosaal: das Video groß auf dieser Seite ──────────────────────────── */

.kinosaal {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 0, 0, .97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.2rem; padding: clamp(1rem, 4vw, 3rem);
}
.kinosaal[hidden] { display: none; }
.kinosaal-buehne {
  width: min(100%, 1600px); aspect-ratio: 16 / 9;
  background: var(--schwarz);
  border: 1px solid var(--linie);
  position: relative;
}
.kinosaal-rahmen, .kinosaal-rahmen iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.kinosaal-zu {
  position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: transparent; color: var(--weiss);
  border: 2px solid var(--weiss); cursor: pointer;
}
.kinosaal-zu:hover { background: var(--magenta); border-color: var(--magenta); }
.kinosaal-zeile { color: var(--grau-hell); margin: 0; text-align: center; }
body.kino-offen { overflow: hidden; }

/* ── Fußzeile ───────────────────────────────────────────────────────────── */

.fuss {
  border-top: 2px solid var(--saeure);
  padding: 2rem 0 2.6rem;
}
.fuss-innen {
  width: var(--breit); margin-left: var(--kante); margin-right: auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  color: var(--grau);
}
.fuss-menue { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.fuss-menue a { text-decoration: none; }
.fuss-menue a:hover { color: var(--saeure); }

/* ── Schmale Bildschirme ────────────────────────────────────────────────── */

@media (max-width: 900px) {
  /* Video und Cover liegen als Band oben, der Text steht darunter auf
     ruhigem Schwarz — ein hohes Handy-Fenster würde beide sonst bis zur
     Unkenntlichkeit vergrößern. */
  .buehne-film:not(.ist-cover) .film-flaeche { inset: 0 0 auto 0; height: 52vw; }
  .buehne-film:not(.ist-cover) .film-flaeche iframe,
  .buehne-film:not(.ist-cover) .film-flaeche .buehne-standbild {
    width:  calc(100vw * var(--film-zoom, 1.6));
    height: calc(56.25vw * var(--film-zoom, 1.6));
  }
  .buehne-film:not(.ist-cover)::after {
    background: linear-gradient(to top,
      var(--schwarz) 0%, var(--schwarz) 46%, rgba(0, 0, 0, .5) 62%, transparent 100%);
  }
  .buehne-film.ist-cover .buehne-standbild {
    width: 100%; height: auto; aspect-ratio: 1; object-position: 50% 50%;
  }
  .buehne-film.ist-cover::after {
    background: linear-gradient(to top,
      var(--schwarz) 0%, var(--schwarz) 50%, rgba(0, 0, 0, .72) 66%, transparent 100%);
  }

  .notizen-raster { grid-template-columns: minmax(0, 1fr); }
  .cover img { max-width: 340px; }
  .katalog-link { grid-template-columns: 56px 48px minmax(0, 1fr) 52px; }
  .katalog-band, .katalog-pfeil { display: none; }
  .katalog-bild img { width: 48px; height: 48px; }
  .titel { max-width: none; }
}

@media (max-width: 560px) {
  .kopf-menue { gap: 1rem; }
  .store-liste { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .buehne-fuss { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .angaben dl { grid-template-columns: 1fr; }
  .angaben dt { border-bottom: 0; padding-bottom: .1rem; }
  .angaben dd { padding-top: 0; }
  .titel { text-shadow: .04em .035em 0 var(--magenta); }
}

/* ── Rücksicht auf Einstellungen der Besucher ───────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .korn { display: none; }
}

/* Wer hohen Kontrast eingestellt hat, bekommt den Titel ohne Zweitdruck —
   dort zählt Lesbarkeit mehr als der Effekt. */
@media (prefers-contrast: more) {
  .titel, .uebersicht-kopf h1, .textseite h1 { text-shadow: none; }
  .fliess p { color: var(--weiss); }
  .korn { display: none; }
}

@media print {
  .korn, .kopf, .kinosaal, .probe-reihe, .buehne-fuss { display: none; }
  body { background: #fff; color: #000; }
}
