/*
 * Neural Canvas — öffentliche Startseite als lebendes neuronales Netz.
 * Dunkel-first (tiefes Anthrazit, Cyan-Glow, Gold für Shop); vollwertige
 * helle „Blueprint"-Variante (CI-Pflicht Hell/Dunkel). Glassmorphism-Panels
 * schweben über dem 3D-Canvas. Vollständig responsiv (Handy = Panel als
 * Bogen von unten, Safe-Area-fähig).
 */

:root {
  --nc-bg:            #0c1016;
  --nc-text:          #eaf3f6;
  --nc-text-dezent:   #8fa6b0;
  --nc-cyan:          #1fc6d5;
  --nc-cyan-tief:     #0fafc0;
  --nc-gold:          #e8b14e;
  --nc-glas:          rgba(16, 24, 31, 0.55);
  --nc-glas-rand:     rgba(126, 231, 240, 0.22);
  --nc-glas-blur:     14px;
  --nc-schatten:      0 24px 70px -20px rgba(0, 0, 0, 0.75);
  --nc-bar:           rgba(10, 14, 19, 0.6);
}
:root[data-theme="light"] {
  --nc-bg:            #e9f0f4;
  --nc-text:          #17303a;
  --nc-text-dezent:   #5b7480;
  --nc-cyan:          #0c8e9c;
  --nc-cyan-tief:     #0fafc0;
  --nc-gold:          #9a6d12;
  --nc-glas:          rgba(255, 255, 255, 0.62);
  --nc-glas-rand:     rgba(12, 142, 156, 0.25);
  --nc-schatten:      0 24px 60px -24px rgba(23, 48, 58, 0.35);
  --nc-bar:           rgba(255, 255, 255, 0.55);
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --nc-bg:            #e9f0f4;
    --nc-text:          #17303a;
    --nc-text-dezent:   #5b7480;
    --nc-cyan:          #0c8e9c;
    --nc-cyan-tief:     #0fafc0;
    --nc-gold:          #9a6d12;
    --nc-glas:          rgba(255, 255, 255, 0.62);
    --nc-glas-rand:     rgba(12, 142, 156, 0.25);
    --nc-schatten:      0 24px 60px -24px rgba(23, 48, 58, 0.35);
    --nc-bar:           rgba(255, 255, 255, 0.55);
  }
}

* { box-sizing: border-box; }
html, body.neural { height: 100%; }
body.neural {
  margin: 0;
  overflow: hidden;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: var(--nc-text);
  background: var(--nc-bg);
}

/* --- Kopfzeile (schwebt über dem Netz) ------------------------------------ */
.neural-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: calc(10px + env(safe-area-inset-top)) 18px 10px;
  background: var(--nc-bar);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nc-glas-rand);
}
.neural-marke {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--nc-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.neural-marke img { height: 46px; width: auto; border-radius: 9px; box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35); }
.neural-marke small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--nc-text-dezent);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.neural-bar-rechts { display: flex; align-items: center; gap: 10px; }

/* Web-Admin-Vorschau: Hinweis über dem Canvas (index.php?vorschau=1) */
.neural-vorschau-hinweis {
  position: fixed;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  margin: 0;
  padding: 6px 14px;
  max-width: min(92vw, 640px);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  color: var(--nc-text);
  background: var(--nc-glas);
  border: 1px solid var(--nc-glas-rand);
  border-radius: 10px;
  backdrop-filter: blur(var(--nc-glas-blur));
  box-shadow: var(--nc-schatten);
  pointer-events: none;
}

.neural-theme {
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--nc-glas-rand);
  background: transparent;
  color: var(--nc-text);
  font-size: 1.05rem;
  cursor: pointer;
}
.neural-theme:hover, .neural-theme:focus-visible { border-color: var(--nc-cyan); outline: none; }
.neural-login {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #062b30;
  background: linear-gradient(120deg, var(--nc-cyan-tief), var(--nc-cyan));
  box-shadow: 0 8px 22px -8px rgba(15, 175, 192, 0.55), 0 3px 8px -3px rgba(0, 0, 0, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.neural-login:hover, .neural-login:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(15, 175, 192, 0.7), 0 6px 14px -5px rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] .neural-login { color: #ffffff; }

/* --- Bühne ------------------------------------------------------------------ */
.neural-buehne { position: fixed; inset: 0; }
#neural-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Intro-Text: schwebt mittig auf OBERSTER Ebene (über den Knoten-Labels,
   z-index > .neural-labels) — kein Titel ragt durch den Haupttext. Klick
   (oder Enter) blendet ihn aus; das Öffnen eines Knotens ebenfalls. */
.neural-intro {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  z-index: 12;
  text-align: center;
  pointer-events: auto;
  cursor: pointer;
  padding: 0 20px;
  max-width: 720px;
  transition: opacity 600ms ease, transform 600ms ease;
}
.neural-intro h1 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.neural-intro p { margin: 0 0 6px; color: var(--nc-text-dezent); font-size: clamp(0.95rem, 2vw, 1.15rem); }
/* Signal-Zeile über der Headline: pulsierende Leucht-Linien wie ein aktives Netz. */
.neural-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--nc-cyan) !important;
  animation: nc-atmen 3.2s ease-in-out infinite;
}
.neural-signal span { width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--nc-cyan)); }
.neural-signal span:last-child { background: linear-gradient(270deg, transparent, var(--nc-cyan)); }
.neural-titel-zeile { color: var(--nc-text); text-shadow: 0 2px 30px rgba(15, 175, 192, 0.3); }
/* Zweite Zeile: wandernder Cyan→Gold-Verlauf in der Schrift + weicher Glow. */
.neural-titel-glanz {
  background: linear-gradient(100deg, #7ee7f0 0%, #1fc6d5 38%, #e8b14e 78%, #7ee7f0 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(31, 198, 213, 0.35));
  animation: nc-glanz 8s ease-in-out infinite;
}
@keyframes nc-glanz { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.neural-sub strong { color: var(--nc-text); }
/* Gestaffeltes Auftauchen — das Intro „erwacht" mit dem Netz. */
.neural-intro > * { opacity: 0; animation-name: nc-auftauchen; animation-duration: 900ms; animation-timing-function: ease; animation-fill-mode: forwards; }
.neural-intro > .neural-signal { animation-name: nc-auftauchen, nc-atmen; animation-duration: 900ms, 3.2s; animation-delay: 0ms, 900ms; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
.neural-intro > h1 { animation-delay: 180ms; }
.neural-intro > .neural-sub { animation-delay: 420ms; }
.neural-intro > .neural-hinweis { animation-name: nc-auftauchen, nc-atmen; animation-duration: 900ms, 3.4s; animation-delay: 700ms, 1600ms; animation-iteration-count: 1, infinite; animation-fill-mode: forwards, none; }
@keyframes nc-auftauchen { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.neural-hinweis {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 999px;
  font-size: 0.85rem !important;
  color: var(--nc-text-dezent);
  background: var(--nc-glas);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: nc-atmen 3.4s ease-in-out infinite;
}
@keyframes nc-atmen { 0%, 100% { opacity: 0.65; } 50% { opacity: 1; } }
/* ===========================================================================
   Intro als dunkle Plexiglas-Scheibe mit eingraviertem Text
   ---------------------------------------------------------------------------
   Der Text liegt nicht mehr frei ueber dem Netz, sondern in einer halb
   durchsichtigen dunklen Scheibe. Das Netz bleibt dahinter sichtbar und in
   Bewegung; ein Klick auf die Scheibe laesst sie verschwinden und gibt die
   Knoten frei (Klasse .neural-intro--weg, gesetzt von site-neural.js).

   Die Gravur entsteht aus zwei gegenlaeufigen Schatten: ein heller nach
   unten und ein dunkler nach oben. Das Auge liest das als Vertiefung, weil
   Licht in der Natur von oben kommt. Die Farben bleiben erhalten -- der Text
   ist farbig eingraviert, nicht entfaerbt.
   =========================================================================== */
.neural-intro {
  padding: 34px 42px 30px;
  border-radius: 18px;
  /* 50 % Deckung: das Netz bleibt klar erkennbar, der Text gut lesbar. */
  background: rgba(8, 14, 22, 0.5);
  /* Die Unschaerfe dahinter macht aus der Flaeche echtes Glas statt Folie. */
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    /* Die Scheibe schwebt ueber dem Netz */
    0 24px 60px -24px rgba(0, 0, 0, 0.75),
    /* Lichtkante oben und Schattenkante unten geben ihr Dicke */
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45);
  transition: opacity 600ms ease, transform 600ms ease,
              background-color 200ms ease, box-shadow 200ms ease;
}
/* Beim Zeigen wird die Scheibe eine Spur heller -- der stille Hinweis,
   dass sie sich wegklicken laesst. */
.neural-intro:hover {
  background: rgba(8, 14, 22, 0.44);
  box-shadow:
    0 28px 68px -24px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45);
}
.neural-intro:focus-visible {
  outline: 3px solid #E2001A;   /* Marken-Rot, siehe CI */
  outline-offset: 4px;
}

/* --- Markenlogo auf der Intro-Scheibe (inkl. Schriftzug im PNG) --------- */
.neural-signet { margin: 0 0 14px; }
.neural-signet-bild {
  display: block;
  /* Volllogo inkl. Name: etwas breiter als das fruehere reine Signet. */
  width: clamp(200px, 56vw, 360px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  /* Dezenter Cyan-Schimmer + Schatten, damit die Plakette von der
     dunklen Glasscheibe abhebt, ohne den inneren Glow zuzudecken. */
  filter:
    drop-shadow(0 0 10px rgba(42, 200, 220, 0.40))
    drop-shadow(0 0 26px rgba(31, 170, 200, 0.24))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
  animation: nc-signet-atmen 5.5s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
@keyframes nc-signet-atmen {
  0%, 100% { filter:
    drop-shadow(0 0 10px rgba(42, 200, 220, 0.36))
    drop-shadow(0 0 24px rgba(31, 170, 200, 0.20))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
    transform: scale(1); }
  50% { filter:
    drop-shadow(0 0 14px rgba(42, 220, 230, 0.55))
    drop-shadow(0 0 32px rgba(31, 190, 210, 0.34))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
    transform: scale(1.02); }
}

/* --- Gravur: heller Schatten nach unten, dunkler nach oben ---------------
   Bewusst kraeftig: Auf einer dunklen, unscharfen Flaeche verliert eine
   zarte Gravur ihre Wirkung. Die dritte, weiche Schattenlage vertieft den
   Eindruck, ohne die Kanten unsauber zu machen. */
.neural-intro h1 .neural-titel-zeile {
  color: rgba(222, 234, 245, 0.88);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28),
    0 -2px 2px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.55);
}
/* Die farbige Zeile nutzt background-clip: text -- dort greift text-shadow
   nicht (der Text selbst ist transparent). Deshalb ueber drop-shadow, das
   auf die sichtbare Form wirkt. Der frueher hier gesetzte Leuchtschein
   wuerde die Gravur aufheben und wird ersetzt. */
.neural-intro h1 .neural-titel-glanz {
  filter:
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.30))
    drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.95))
    drop-shadow(0 0 8px rgba(0, 0, 0, 0.55));
  opacity: 0.95;
}
.neural-intro .neural-signal,
.neural-intro .neural-sub,
.neural-intro .neural-hinweis {
  text-shadow:
    0 1.5px 0 rgba(255, 255, 255, 0.22),
    0 -1.5px 2px rgba(0, 0, 0, 0.9),
    0 0 6px rgba(0, 0, 0, 0.5);
}
.neural-intro .neural-sub strong { color: rgba(232, 242, 250, 0.95); }
/* Der Hinweis unten hatte eine eigene Glas-Pille. Glas auf Glas wirkt
   unsauber -- in der Scheibe wird daraus schlichte Gravur. */
.neural-intro .neural-hinweis {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Weniger Bewegung gewuenscht: Scheibe ohne Uebergangs-Effekte. */
@media (prefers-reduced-motion: reduce) {
  .neural-intro { transition: opacity 1ms linear; }
  .neural-signet-bild { animation: none; transform: none; }
}

.neural-intro--weg { opacity: 0; transform: translate(-50%, -56%); pointer-events: none; cursor: default; }

/* --- Knoten-Beschriftungen (projizierte HTML-Labels) ------------------------ */
/* Bildschirmraum-Anker: JS setzt left = Kugelmitte, top = projizierter oberer
   Kugelrand. Der Versatz -12px hebt die Label-Unterkante über den Rand; die
   12px füllt die gepunktete Anker-Linie (::after) in Knotenfarbe (--nc-kf) —
   Titel und Kugel sind sichtbar verbunden. Der Farbpunkt (::before) trägt
   dieselbe Knotenfarbe wie die Kugel (auch individuelle Hex-Farben). */
.neural-labels { position: absolute; inset: 0; z-index: 10; pointer-events: none; }
.neural-label {
  position: absolute;
  transform: translate(-50%, calc(-100% - 12px));
  pointer-events: auto;
  padding: 9px 16px;
  min-height: 40px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 999px;
  background: var(--nc-glas);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--nc-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.55);
  transition: box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}
/* Farbpunkt vor dem Titel: kleiner leuchtender Vollkreis in Knotenfarbe. */
.neural-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: middle;
  margin-top: -2px;
  background: var(--nc-kf, var(--nc-cyan));
  box-shadow: 0 0 8px var(--nc-kf, var(--nc-cyan));
}
/* Gepunktete Anker-Linie vom Label hinunter zum Kugelrand — immer sichtbar. */
.neural-label::after {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 100%;
  height: 12px;
  border-left: 2px dotted var(--nc-kf, var(--nc-cyan));
  opacity: 0.65;
  pointer-events: none;
}
/* Gemeinsames Aufleuchten: Hover/Fokus auf dem Titel ODER Zeigen auf die
   Kugel (JS setzt neural-label--leuchtet) heben BEIDE hervor. */
.neural-label:hover, .neural-label:focus-visible, .neural-label--leuchtet {
  outline: none;
  border-color: var(--nc-kf, var(--nc-cyan));
  box-shadow: 0 0 0 3px rgba(31, 198, 213, 0.25), 0 10px 30px -10px rgba(31, 198, 213, 0.5);
  transform: translate(-50%, calc(-100% - 12px)) scale(1.06);
}
.neural-label--gold { border-color: rgba(232, 177, 78, 0.4); }
.neural-label--gold:hover, .neural-label--gold:focus-visible, .neural-label--gold.neural-label--leuchtet {
  border-color: var(--nc-gold);
  box-shadow: 0 0 0 3px rgba(232, 177, 78, 0.25), 0 10px 30px -10px rgba(232, 177, 78, 0.5);
}
.neural-label--klein { font-size: 0.8rem; padding: 7px 13px; min-height: 34px; font-weight: 500; }
.neural-label--klein::before { width: 6px; height: 6px; margin-right: 6px; }
.neural-label--sub { animation: nc-erscheinen 480ms ease both; }
.neural-label--sub-versteckt { opacity: 0 !important; filter: blur(4px); pointer-events: none; }
.neural-label--sub-sichtbar { opacity: 1 !important; filter: none; pointer-events: auto; }
@keyframes nc-erscheinen { from { opacity: 0; } to { opacity: 1; } }

/* --- Glassmorphism-Panel (stapelbar) ------------------------------------------ */
/* --nc-versatz zählt, wie viele Karten ÜBER dieser liegen: tiefere Karten
   rücken leicht nach links oben, schrumpfen minimal und dimmen — der
   sichtbare Karten-Stapel aus dem Design-Mockup. */
.neural-panel {
  --nc-versatz: 0;
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%) scale(0.94);
  width: min(620px, calc(100vw - 32px));
  max-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 20px;
  background: var(--nc-glas);
  backdrop-filter: blur(var(--nc-glas-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--nc-glas-blur)) saturate(1.2);
  box-shadow: var(--nc-schatten);
  opacity: 0;
  transition: opacity 260ms ease, transform 300ms cubic-bezier(0.2, 0.9, 0.3, 1);
}
.neural-panel--offen {
  opacity: 1;
  transform: translate(calc(-50% - var(--nc-versatz) * 20px), calc(-50% - var(--nc-versatz) * 16px))
             scale(calc(1 - var(--nc-versatz) * 0.04));
  filter: brightness(calc(1 - var(--nc-versatz) * 0.08)) saturate(calc(1 - var(--nc-versatz) * 0.12));
}

/* Fenster-Modus (Desktop): Position/Größe kommen per JS — frei verschiebbar
   an der Kopfzeile, Größe änderbar am Griff unten rechts, Klick = nach vorn. */
.neural-panel--fenster,
.neural-panel--fenster.neural-panel--offen {
  left: 0;
  top: 0;
  transform: none;
  filter: none;
  transition: opacity 200ms ease;
}
.neural-panel-kopf--greifbar { cursor: move; user-select: none; -webkit-user-select: none; touch-action: none; }
.neural-panel-knoepfe { display: flex; align-items: center; gap: 8px; }
.neural-panel-groesse {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 22px;
  height: 22px;
  cursor: nwse-resize;
  touch-action: none;
  border-bottom-right-radius: 16px;
  background: repeating-linear-gradient(135deg, transparent 0 5px, var(--nc-glas-rand) 5px 7px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.8;
}
.neural-panel-groesse:hover { opacity: 1; }
.neural-panel-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 10px;
  border-bottom: 1px solid var(--nc-glas-rand);
}
.neural-panel-kopf h2 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}
/* Fenster-Knöpfe (✕ / ▼) — als Button UND als Link sauber rund + mittig. */
.neural-panel-zu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--nc-glas-rand);
  background: rgba(255, 255, 255, 0.04);
  color: var(--nc-text-dezent);
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.neural-panel-zu:hover, .neural-panel-zu:focus-visible {
  outline: none;
  border-color: var(--nc-cyan);
  color: var(--nc-text);
  background: rgba(31, 198, 213, 0.12);
}
.neural-panel-hinten { font-size: 0.8rem; }
.neural-panel-inhalt {
  padding: 14px 22px 20px;
  overflow: auto;
  line-height: 1.65;
  font-size: 0.98rem;
  flex: 1 1 auto;
  min-height: 0;
}
.neural-panel-inhalt:has(.aam-oeff-karte-frame) {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.aam-oeff-karte-frame {
  flex: 1 1 auto;
  width: 100%;
  min-height: min(62vh, 520px);
  border: 0;
  border-radius: 0 0 18px 18px;
  background: #0d1619;
}
.neural-panel-inhalt p { margin: 0 0 12px; }
.neural-panel-inhalt ul, .neural-panel-inhalt ol { margin: 0 0 12px; padding-left: 22px; }
.neural-panel-inhalt li { margin: 0 0 4px; }
.neural-panel-inhalt a { color: var(--nc-cyan); }
/* Überschriften in CMS-Inhalten (Impressum, Datenschutz, …). */
.neural-panel-inhalt h2 {
  margin: 18px 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nc-text);
}
.neural-panel-inhalt h2:first-child { margin-top: 0; }
.neural-panel-inhalt h3 {
  margin: 14px 0 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--nc-text);
}
.neural-panel-inhalt h4 { margin: 12px 0 4px; font-size: 0.96rem; font-weight: 600; }
.neural-site-block + .neural-site-block { margin-top: 4px; }
.neural-panel-inhalt em { color: var(--nc-text-dezent); }
/* Schaltflächen mit Schatteneffekt wie im Mitgliederbereich (Elevation +
   Primary-Schein, hebt sich beim Zeigen leicht an). */
.neural-panel-inhalt .site-cta a,
.neural-panel-inhalt .site-knopf,
.neural-knopf {
  display: inline-block;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #062b30;
  background: linear-gradient(120deg, var(--nc-cyan-tief), var(--nc-cyan));
  cursor: pointer;
  box-shadow: 0 10px 24px -8px rgba(15, 175, 192, 0.6), 0 4px 10px -4px rgba(0, 0, 0, 0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.neural-panel-inhalt .site-cta a:hover, .neural-panel-inhalt .site-cta a:focus-visible,
.neural-panel-inhalt .site-knopf:hover, .neural-panel-inhalt .site-knopf:focus-visible,
.neural-knopf:hover, .neural-knopf:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(15, 175, 192, 0.75), 0 7px 16px -5px rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] .neural-panel-inhalt .site-knopf,
:root[data-theme="light"] .neural-panel-inhalt .site-cta a,
:root[data-theme="light"] .neural-knopf { color: #ffffff; }

/* --- Unterseiten als Link-Liste im Panel (statt schwebender Knoten) ------------ */
.neural-panel-mehr {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--nc-glas-rand);
}
.neural-mehr-link {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--nc-text);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 150ms ease, background 150ms ease;
}
.neural-mehr-link:hover, .neural-mehr-link:focus-visible {
  outline: none;
  border-color: var(--nc-cyan);
  background: rgba(31, 198, 213, 0.12);
}

/* --- Shop im Panel (Katalog + Produktdetail + Anfrage) ------------------------- */
.shop-panel-katalog { display: grid; gap: 10px; margin-top: 12px; }
.shop-panel-karte {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 14px;
  text-decoration: none;
  color: var(--nc-text);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.shop-panel-karte:hover, .shop-panel-karte:focus-visible {
  outline: none;
  border-color: var(--nc-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(232, 177, 78, 0.5);
}
.shop-panel-karte strong { display: block; font-family: "Montserrat", Arial, sans-serif; }
.shop-panel-karte span { display: block; color: var(--nc-text-dezent); font-size: 0.9rem; margin: 3px 0; }
.shop-panel-karte em { color: var(--nc-gold); font-style: normal; font-weight: 600; font-size: 0.9rem; }
.shop-panel-galerie { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.shop-panel-galerie img { max-width: 160px; border-radius: 12px; border: 1px solid var(--nc-glas-rand); }
.shop-panel-teaser { color: var(--nc-text-dezent); }
.shop-panel-preis { font-weight: 700; color: var(--nc-gold); }
.shop-panel-form label { display: block; margin: 0 0 10px; font-size: 0.85rem; font-weight: 600; color: var(--nc-text-dezent); }
.shop-panel-bestell { font-weight: 400 !important; }
.shop-panel-ds { font-size: 0.82rem; color: var(--nc-text-dezent); }

/* --- Neue Inhaltsblöcke im Panel: FAQ / Slider / Teaser-Karten ----------------- */
/* Dieselben .site-*-Klassen wie auf der klassischen Seite (site-klassisch.css),
   hier aber mit den --nc-*-Glass-Farben. partials/site_helfer.php setzt das HTML
   per innerHTML ins Panel; die Slider-Pfeile bedient das global delegierte
   site-bloecke.js. Trägt beide Neural-Themes (dunkel + helle Blueprint). */

/* FAQ: natives <details>-Akkordeon (läuft auch per innerHTML, ohne JS). */
.site-faq { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.site-faq-item {
  border: 1px solid var(--nc-glas-rand);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.site-faq-frage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  cursor: pointer;                /* Klick-Cursor über der ganzen Frage */
  list-style: none;               /* Standard-Dreieck aus, eigener Marker unten */
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  color: var(--nc-text);
}
.site-faq-frage::-webkit-details-marker { display: none; }
.site-faq-frage::after {
  content: "\25be";               /* ▾ */
  margin-left: auto;
  color: var(--nc-cyan);
  transition: transform 160ms ease;
}
.site-faq-item[open] .site-faq-frage::after { transform: rotate(180deg); }
.site-faq-frage:hover { color: var(--nc-cyan); }
.site-faq-frage:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--nc-cyan); }
.site-faq-antwort { padding: 0 16px 14px; color: var(--nc-text); line-height: 1.65; }
.site-faq-antwort > :first-child { margin-top: 0; }
.site-faq-antwort a { color: var(--nc-cyan); }

/* Karussell: transform-basierter Wechsel (translateX der Spur) mit dezentem
   Ken-Burns auf der aktiven Folie. Steuerung (Pfeile, Punkte, Auto-Advance,
   Swipe, Tastatur) macht site-bloecke.js — keine sichtbare Scrollleiste mehr. */
.site-slider {
  position: relative;
  margin: 18px 0;
  border-radius: 18px;
}
.site-slider:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 198, 213, 0.35);
}
/* Fenster clippt die Spur; Rahmen + Glow tragen den Neuron-Look. */
.site-slider-fenster {
  overflow: hidden;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 16px;
  background: #05080b;
  box-shadow: 0 20px 48px -22px rgba(0, 0, 0, 0.75);
}
/* Folien liegen GESTAPELT uebereinander; der Wechsel-Effekt ist pro Bild
   einstellbar (site-bloecke.js schaltet die Zustands-/Effekt-Klassen). */
.site-slider-spur {
  position: relative;
}
.site-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #05080b;
  opacity: 0;
  visibility: hidden;                /* aus dem A11y-Baum + nicht klickbar */
}
/* Aktive Folie liegt IN FLOW und gibt der Spur ihre Hoehe. */
.site-slide.is-aktiv {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
/* Abtretende Folie bleibt waehrend des Uebergangs sichtbar (darunter). */
.site-slide.is-vorher {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
/* Vor JS-Init / ohne JS: erste Folie zeigen, damit nichts kollabiert. */
.site-slider:not([data-slider-bereit]) .site-slide:first-child {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.site-slide-img {
  display: block;
  width: 100%;
  height: clamp(220px, 42vw, 430px);
  object-fit: cover;
  transform: scale(1.04);            /* Ruhezustand leicht herangezoomt */
  transform-origin: 50% 50%;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

/* Uebergangs-Effekte BEIM WECHSEL auf eine Folie. site-bloecke.js setzt die
   Klasse gemaess data-uebergang der Ziel-Folie. Enter-/Exit-Effekte wirken auf
   die Folie (.site-slide), der Ken-Burns-Schwenk unten auf das Bild
   (.site-slide-img) — sie stoeren sich also nicht. */
.site-slide--rein-vor { animation: site-slide-rein-vor 560ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.site-slide--rein-zurueck { animation: site-slide-rein-zurueck 560ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.site-slide--raus-vor { animation: site-slide-raus-vor 560ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.site-slide--raus-zurueck { animation: site-slide-raus-zurueck 560ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.site-slide--blenden { animation: site-slide-blenden 620ms ease; }
.site-slide--zoom { animation: site-slide-zoom 620ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.site-slide--kenburns-rein { animation: site-slide-blenden 720ms ease; }
@keyframes site-slide-rein-vor { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes site-slide-rein-zurueck { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes site-slide-raus-vor { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@keyframes site-slide-raus-zurueck { from { transform: translateX(0); } to { transform: translateX(100%); } }
@keyframes site-slide-blenden { from { opacity: 0; } to { opacity: 1; } }
@keyframes site-slide-zoom { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }

/* Laufender Ken-Burns-Schwenk auf der aktiven Folie. Standard (fehlendes oder
   'schieben' data-uebergang) = dezenter Schwenk wie bisher; 'kenburns' =
   langsamer + staerker; 'blenden'/'zoom'/'keiner' = ruhiges Bild ohne Schwenk. */
.site-slide.is-aktiv .site-slide-img {
  animation: site-kenburns 7s ease-out forwards;
}
.site-slide.is-aktiv[data-uebergang="kenburns"] .site-slide-img {
  animation: site-kenburns-lang 14s ease-out forwards;
}
.site-slide.is-aktiv[data-uebergang="blenden"] .site-slide-img,
.site-slide.is-aktiv[data-uebergang="zoom"] .site-slide-img,
.site-slide.is-aktiv[data-uebergang="keiner"] .site-slide-img {
  animation: none;
  transform: scale(1.04);
}
@keyframes site-kenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.13) translate(-1.6%, -1.1%); }
}
@keyframes site-kenburns-lang {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.2) translate(-2.4%, -1.6%); }
}
/* Bildunterschrift als Glas-Band unten (Platz unten frei für die Punkte). */
.site-slide-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 26px 16px 30px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #eaf3f6;
  background: linear-gradient(to top, rgba(4, 8, 12, 0.85), rgba(4, 8, 12, 0));
}
.site-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 999px;
  background: var(--nc-bar);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--nc-text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.65);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}
.site-slider-nav:hover, .site-slider-nav:focus-visible {
  outline: none;
  border-color: var(--nc-cyan);
  color: var(--nc-cyan);
  background: rgba(31, 198, 213, 0.16);
  transform: translateY(-50%) scale(1.07);
}
.site-slider-zurueck { left: 12px; }
.site-slider-vor { right: 12px; }
/* Punkte-Navigation (von site-bloecke.js erzeugt). */
.site-slider-punkte {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;              /* nur die Punkte selbst sind klickbar */
}
.site-slider-punkt {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(234, 243, 246, 0.42);
  cursor: pointer;
  pointer-events: auto;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.site-slider-punkt:hover { background: rgba(234, 243, 246, 0.72); }
.site-slider-punkt:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(31, 198, 213, 0.4); }
.site-slider-punkt[aria-current="true"] {
  background: var(--nc-cyan);
  transform: scale(1.25);
  box-shadow: 0 0 10px -1px rgba(31, 198, 213, 0.8);
}
/* Einzelne Folie: keine Bedienelemente. */
.site-slider--einzel .site-slider-nav,
.site-slider--einzel .site-slider-punkte { display: none; }

/* Teaser-Karten: responsives Raster verlinkter Karten. */
.site-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.site-teaser-karte {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  color: var(--nc-text);
  text-decoration: none;          /* Link-Karte ohne Unterstrich */
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
a.site-teaser-karte:hover, a.site-teaser-karte:focus-visible {
  outline: none;
  border-color: var(--nc-cyan);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -12px rgba(31, 198, 213, 0.5);
  color: var(--nc-text);
}
.site-teaser-bild { display: block; width: 100%; height: 150px; object-fit: cover; }
.site-teaser-text { display: flex; flex-direction: column; gap: 6px; padding: 13px 15px; }
.site-teaser-titel {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--nc-text);
}
.site-teaser-p { margin: 0; font-size: 0.9rem; color: var(--nc-text-dezent); }

/* --- Anmelde-Formular im Glass-Panel ------------------------------------------- */
.neural-form label {
  display: block;
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nc-text-dezent);
}
.neural-feld {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 12px;
  background: rgba(8, 14, 19, 0.5);
  color: var(--nc-text);
  font: inherit;
  font-size: 0.95rem;
}
:root[data-theme="light"] .neural-feld { background: rgba(255, 255, 255, 0.72); }
.neural-feld:focus {
  outline: none;
  border-color: var(--nc-cyan);
  box-shadow: 0 0 0 3px rgba(31, 198, 213, 0.25);
}
.neural-knopf { width: 100%; padding: 12px 20px; margin-top: 4px; }
.neural-form-links { display: flex; flex-direction: column; gap: 7px; margin: 14px 0 0; }
.neural-form-links a { color: var(--nc-cyan); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.neural-form-links a:hover { text-decoration: underline; }
.neural-fehler {
  padding: 10px 14px;
  border: 1px solid rgba(218, 41, 28, 0.55);
  border-radius: 12px;
  background: rgba(218, 41, 28, 0.16);
  color: #ff98a0;
  font-size: 0.9rem;
}
:root[data-theme="light"] .neural-fehler { color: #b71c1c; background: rgba(218, 41, 28, 0.08); }
.neural-panel-inhalt .aam-info {
  padding: 10px 14px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 12px;
  background: rgba(15, 175, 192, 0.12);
  color: var(--nc-text-dezent);
  font-size: 0.88rem;
}

/* Rechtliches unten rechts — immer erreichbar. */
.neural-recht {
  position: absolute;
  right: 14px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 15;
  display: flex;
  gap: 14px;
}
.neural-recht a { color: var(--nc-text-dezent); font-size: 0.78rem; text-decoration: none; }
.neural-recht a:hover { color: var(--nc-cyan); }

/* --- Fallback (kein JS/WebGL) -------------------------------------------------- */
.neural-fallback {
  display: none;
  position: relative;
  z-index: 40;
  max-width: 560px;
  margin: 110px auto 40px;
  padding: 24px 28px;
  border: 1px solid var(--nc-glas-rand);
  border-radius: 16px;
  background: var(--nc-glas);
}
.neural-fallback h2 { margin: 0 0 12px; font-family: "Montserrat", Arial, sans-serif; }
.neural-fallback ul { margin: 0; padding: 0; list-style: none; }
.neural-fallback li + li { margin-top: 8px; }
.neural-fallback a { color: var(--nc-cyan); font-weight: 600; text-decoration: none; }

/* --- Responsiv (Handy: Panel als Bogen von unten) ------------------------------ */
@media (max-width: 640px) {
  .neural-marke small { display: none; }
  .neural-login { padding: 10px 14px; font-size: 0.82rem; min-height: 44px; display: inline-flex; align-items: center; }
  .neural-intro { top: 40%; padding: 22px 14px 20px; box-sizing: border-box; max-width: min(100%, 420px); }
  .neural-signet-bild { width: clamp(180px, 72vw, 300px); }
  .neural-label { font-size: 0.82rem; padding: 8px 13px; max-width: calc(100vw - 24px); }
  .neural-panel {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translateY(8%) scale(1);
    width: 100%;
    max-width: 100%;
    max-height: min(78vh, 78dvh);
    border-radius: 20px 20px 0 0;
    border-bottom: 0;
  }
  .neural-panel--offen {
    transform: translateY(calc(var(--nc-versatz) * -18px)) scale(calc(1 - var(--nc-versatz) * 0.03));
    filter: brightness(calc(1 - var(--nc-versatz) * 0.08));
  }
  .neural-panel-inhalt {
    padding: 16px max(14px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px)) calc(20px + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }
  .neural-recht { left: 14px; right: auto; }
}
@media (max-width: 375px) {
  .neural-intro { top: 36%; }
  .neural-panel { max-height: min(82vh, 82dvh); }
}

/* --- Ruhe für Bewegungsempfindliche -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .neural-hinweis, .neural-signal, .neural-titel-glanz, .neural-intro > * { animation: none; opacity: 1; }
  .neural-signet-bild { animation: none !important; transform: none; filter:
    drop-shadow(0 0 10px rgba(42, 200, 220, 0.40))
    drop-shadow(0 0 26px rgba(31, 170, 200, 0.24))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55)); }
  .neural-intro, .neural-panel, .neural-label { transition: none; }
  /* Neue Inhaltsblöcke: harte Übergänge, keine Bild-Bewegung — unabhängig von
     der pro Bild eingestellten Übergangs-Art. */
  .site-slide.is-aktiv .site-slide-img,
  .site-slide.is-aktiv[data-uebergang="kenburns"] .site-slide-img { animation: none; transform: none; }
  .site-slide-img { transform: none; }
  .site-slide--rein-vor, .site-slide--rein-zurueck,
  .site-slide--raus-vor, .site-slide--raus-zurueck,
  .site-slide--blenden, .site-slide--zoom, .site-slide--kenburns-rein { animation: none; }
  .site-faq-frage::after, .site-slide, .site-teaser-karte,
  .site-slider-nav, .site-slider-punkt { transition: none; }
  a.site-teaser-karte:hover { transform: none; }
  .site-faq-item[open] .site-faq-frage::after { transform: rotate(180deg); }
}

/* --- Fenster: minimiert (Taskleiste) + maximiert (Vollbild) ---------------- */
.neural-panel--minimiert { display: none !important; }

.neural-panel--max {
  border-radius: 14px;
  transition: opacity 200ms ease;
}
.neural-panel--max .neural-panel-groesse { display: none; } /* Vollbild: kein Größengriff */

/* Taskleiste für minimierte Fenster (unten links, über den Panels). */
.neural-taskleiste {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 9000;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100vw - 24px);
  pointer-events: none;
}
.neural-task-reiter {
  pointer-events: auto;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 8px 14px;
  font: 600 0.86rem "Montserrat", Arial, sans-serif;
  color: var(--nc-text);
  background: var(--nc-glas);
  border: 1px solid var(--nc-glas-rand);
  border-radius: 999px;
  backdrop-filter: blur(var(--nc-glas-blur));
  -webkit-backdrop-filter: blur(var(--nc-glas-blur));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.neural-task-reiter::before { content: "\25A2\00A0"; color: var(--nc-cyan); } /* ▢ */
.neural-task-reiter:hover, .neural-task-reiter:focus-visible {
  color: var(--nc-cyan);
  border-color: var(--nc-cyan);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  /* Am Handy liegen die Fenster ohnehin als Bogen; Vollbild nutzt die Breite. */
  .neural-panel--max { left: 6px !important; right: 6px !important; width: auto !important; }
}

/* ---- Zoom-Knoepfe: schwebende Glas-Leiste unten rechts (Maus + Touch) ---- */
.neural-zoom {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: flex; flex-direction: column; gap: 10px;
}
.neural-zoom-knopf {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--nc-glas-rand);
  background: var(--nc-glas, rgba(10, 26, 32, 0.55));
  color: var(--nc-text, #eafcff);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.6);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.neural-zoom-knopf:hover, .neural-zoom-knopf:focus-visible {
  outline: none; border-color: var(--nc-cyan);
  box-shadow: 0 0 0 3px rgba(31, 198, 213, 0.25), 0 10px 30px -10px rgba(31, 198, 213, 0.5);
  transform: scale(1.08);
}
