/* ==========================================================================
   NOTW SHELL — gemeinsame Hauptmaske aller Seiten
   --------------------------------------------------------------------------
   Nachbau der Kopfzeile und des Menues der alten NOT-OF-THIS-WORLD-Seite:

     - schwebende Glasleiste (Logo links, Menue-Button rechts)
     - Vollbild-Menue mit nummerierten Eintraegen
     - Reiterleiste fuer den Turnier-Hub
     - vierspaltiger Footer der alten Seite

   Wird von notw-shell.js mit Inhalt gefuellt. Alle Klassen tragen das
   Praefix "ns-" und kommen nirgends sonst vor — es gibt keine Kollisionen
   mit styles.css, notw-theme.css oder desktop-polish.css.
   ========================================================================== */

:root {
  --ns-bg: #05060a;
  --ns-fg: #f7f8fc;
  --ns-fg-70: rgba(247, 248, 252, 0.70);
  --ns-fg-55: rgba(247, 248, 252, 0.55);
  --ns-fg-40: rgba(247, 248, 252, 0.40);
  --ns-fg-30: rgba(247, 248, 252, 0.30);
  --ns-cyan: #23dafc;
  --ns-cyan-70: rgba(35, 218, 252, 0.70);
  --ns-violet: #a05bff;
  --ns-line: rgba(255, 255, 255, 0.08);
  --ns-line-soft: rgba(255, 255, 255, 0.05);
  --ns-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ns-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ns-display: "Space Grotesk", system-ui, sans-serif;
  --ns-sans: "Inter", system-ui, sans-serif;
  --ns-bar-h: 66px;           /* Hoehe der Leiste */
  --ns-pill: 999px;
}

/* ==========================================================================
   1  GLASLEISTE
   ========================================================================== */
@keyframes ns-header-in {
  from { opacity: 0; transform: translateY(-32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ns-topbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  padding: 0;
  animation: ns-header-in 1.2s var(--ns-ease) 0.15s both;
  pointer-events: none;                 /* nur die Leiste selbst faengt Klicks */
}
.ns-topbar * { box-sizing: border-box; }
.ns-bar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px clamp(16px, 3vw, 40px);
  background: rgba(5, 6, 13, 0.72);
  border-bottom: 1px solid var(--ns-line);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
}
.ns-brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ns-fg-70);
}
.ns-brand img {
  height: 32px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(35, 218, 252, 0.5));
}
.ns-brand span {
  display: none;
  font-family: var(--ns-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ns-fg-70);
  white-space: nowrap;
}
@media (min-width: 640px) { .ns-brand span { display: inline; } }

/* Werkzeuge rechts in der Leiste: Discord, Socials, DE/EN, Anmelden, Menue */
.ns-bar-tools { display: flex; align-items: center; gap: 8px; flex-shrink: 1; min-width: 0; }
.ns-bar-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--ns-pill);
  border: 1px solid rgba(160, 91, 255, 0.45);
  background: rgba(160, 91, 255, 0.12);
  color: var(--ns-fg);
  text-decoration: none;
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  transition: box-shadow 0.35s var(--ns-ease), border-color 0.35s, transform 0.35s var(--ns-ease), background 0.35s;
}
.ns-bar-discord svg { width: 16px; height: 16px; fill: currentColor; }
.ns-bar-discord:hover,
.ns-bar-discord:focus-visible {
  border-color: rgba(160, 91, 255, 0.9);
  background: rgba(160, 91, 255, 0.25);
  box-shadow: 0 0 24px rgba(160, 91, 255, 0.45);
  transform: translateY(-1px);
  outline: none;
}
.ns-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border-radius: var(--ns-pill);
  background: linear-gradient(135deg, #23dafc, #3b82f6);
  color: #04121a;
  text-decoration: none;
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  white-space: nowrap;
  box-shadow: 0 8px 24px -10px rgba(35, 218, 252, 0.7);
  transition: box-shadow 0.35s var(--ns-ease), transform 0.35s var(--ns-ease), filter 0.35s;
}
.ns-cta:hover,
.ns-cta:focus-visible { box-shadow: 0 0 30px rgba(35, 218, 252, 0.55); transform: translateY(-1px); filter: brightness(1.08); outline: none; }
.ns-cta-short { display: none; }
.ns-fx-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--ns-pill);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ns-fg-55);
  font-family: var(--ns-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.ns-fx-btn svg { width: 14px; height: 14px; fill: currentColor; }
.ns-fx-btn:hover, .ns-fx-btn:focus-visible { border-color: rgba(35, 218, 252, 0.6); color: var(--ns-fg); box-shadow: 0 0 18px rgba(35, 218, 252, 0.3); outline: none; }
html[data-fx-setting="on"] .ns-fx-btn { color: var(--ns-cyan); border-color: rgba(35, 218, 252, 0.45); }
html[data-fx-setting="off"] .ns-fx-btn { color: var(--ns-fg-40); }
@media (max-width: 640px) { .ns-fx-btn .ns-fx-state { display: none; } .ns-fx-btn { padding: 0 11px; } }
@media (max-width: 1100px) {
  .ns-bar-discord span { display: none; }
  .ns-bar-discord { padding: 0 11px; }
}
@media (max-width: 900px) {
  .ns-bar-tools .ns-bar-socials { display: none !important; }
  .ns-cta-long { display: none; }
  .ns-cta-short { display: inline; }
}
@media (max-width: 520px) {
  .ns-bar { padding: 10px 12px; }
  .ns-bar-tools { gap: 6px; }
  .ns-bar-discord { display: none; }
  .ns-lang { padding: 0 10px; gap: 6px; }
  .ns-cta { padding: 0 12px; letter-spacing: 0.15em; }
}


/* Sprachumschalter DE / EN (Leiste) */
.ns-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--ns-pill);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ns-fg-40);
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ns-lang:hover,
.ns-lang:focus-visible { border-color: rgba(35, 218, 252, 0.5); box-shadow: 0 0 18px rgba(35, 218, 252, 0.3); outline: none; }
.ns-lang i {
  position: relative;
  width: 26px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}
.ns-lang i::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ns-cyan);
  box-shadow: 0 0 10px rgba(35, 218, 252, 0.8);
  transition: transform 0.25s var(--ns-ease);
}
html[lang="en"] .ns-lang i::after { transform: translateX(14px); }
html[lang="de"] .ns-lang [data-lang-part="de"],
html[lang="en"] .ns-lang [data-lang-part="en"] { color: var(--ns-fg); }

/* Social-Icons (Leiste) */
.ns-socials { display: inline-flex; align-items: center; gap: 8px; }
.ns-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ns-fg-70);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.ns-socials a:hover,
.ns-socials a:focus-visible {
  border-color: rgba(35, 218, 252, 0.6);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ns-cyan);
  box-shadow: 0 0 18px rgba(35, 218, 252, 0.35);
  transform: translateY(-1px);
  outline: none;
}
.ns-socials svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* Menue-Button: drei Striche, werden beim Oeffnen zum X */
.ns-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.3s var(--ns-ease), background 0.3s var(--ns-ease);
  -webkit-tap-highlight-color: transparent;
}
.ns-toggle:hover,
.ns-toggle:focus-visible {
  border-color: rgba(35, 218, 252, 0.6);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(35, 218, 252, 0.35);
  outline: none;
}
.ns-toggle:focus-visible { box-shadow: 0 0 0 2px rgba(35, 218, 252, 0.45); }
.ns-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ns-fg);
  transition: transform 0.3s, opacity 0.3s;
}
.ns-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ns-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ns-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   2  MENUE — Schublade von rechts (ca. ein Viertel der Breite)
   ========================================================================== */
.ns-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 280;
  background: rgba(5, 6, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ns-ease), visibility 0s linear 0.35s;
}
.ns-menu-backdrop.is-open { opacity: 1; visibility: visible; transition: opacity 0.35s var(--ns-ease), visibility 0s; }
.ns-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 290;
  width: min(400px, 88vw);
  background: rgba(7, 9, 20, 0.92);
  border-left: 1px solid rgba(120, 200, 255, 0.14);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ns-ease), visibility 0s linear 0.45s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ns-menu.is-open { transform: translateX(0); visibility: visible; transition: transform 0.45s var(--ns-ease), visibility 0s; }
.ns-menu * { box-sizing: border-box; }
.ns-menu-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: calc(var(--ns-bar-h) + 28px) 28px 72px;
}
.ns-menu-kicker {
  font-family: var(--ns-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--ns-fg-40);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.5s 0.1s, transform 0.5s 0.1s;
}
.ns-menu.is-open .ns-menu-kicker { opacity: 1; transform: none; }

.ns-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border-top: 1px solid var(--ns-line-soft);
  border-bottom: 1px solid var(--ns-line-soft);
}
.ns-menu-list li {
  border-top: 1px solid var(--ns-line-soft);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ns-ease), transform 0.5s var(--ns-ease);
}
.ns-menu-list li:first-child { border-top: 0; }
.ns-menu.is-open .ns-menu-list li { opacity: 1; transform: translateX(0); }
.ns-menu.is-open .ns-menu-list li:nth-child(1) { transition-delay: 0.08s; }
.ns-menu.is-open .ns-menu-list li:nth-child(2) { transition-delay: 0.12s; }
.ns-menu.is-open .ns-menu-list li:nth-child(3) { transition-delay: 0.16s; }
.ns-menu.is-open .ns-menu-list li:nth-child(4) { transition-delay: 0.20s; }
.ns-menu.is-open .ns-menu-list li:nth-child(5) { transition-delay: 0.24s; }
.ns-menu.is-open .ns-menu-list li:nth-child(6) { transition-delay: 0.28s; }
.ns-menu.is-open .ns-menu-list li:nth-child(7) { transition-delay: 0.32s; }

.ns-menu-link {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 6px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}
.ns-menu-link:hover, .ns-menu-link:focus-visible { background: rgba(35, 218, 252, 0.06); outline: none; }
.ns-menu-num {
  font-family: var(--ns-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ns-cyan-70);
}
.ns-menu-label {
  font-family: var(--ns-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--ns-fg-55);
  transition: transform 0.3s, color 0.3s, text-shadow 0.3s;
}
.ns-menu-arrow {
  margin-left: auto;
  align-self: center;
  font-family: var(--ns-mono);
  font-size: 12px;
  color: var(--ns-fg-30);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.ns-menu-link:hover .ns-menu-label,
.ns-menu-link:focus-visible .ns-menu-label,
.ns-menu-link.is-active .ns-menu-label { color: var(--ns-fg); }
.ns-menu-link:hover .ns-menu-label,
.ns-menu-link:focus-visible .ns-menu-label { transform: translateX(6px); text-shadow: 0 0 18px rgba(35, 218, 252, 0.65), 0 0 40px rgba(35, 218, 252, 0.25); }
.ns-menu-link:hover .ns-menu-num,
.ns-menu-link:focus-visible .ns-menu-num { color: var(--ns-cyan); text-shadow: 0 0 12px rgba(35, 218, 252, 0.8); }
.ns-menu-link.is-active .ns-menu-num { color: var(--ns-cyan); }
.ns-menu-copy {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--ns-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--ns-fg-30);
  opacity: 0;
  transition: opacity 0.6s 0.4s;
}
.ns-menu.is-open .ns-menu-copy { opacity: 1; }
/* (Discord-Button, Sprach- und Social-Leiste sitzen in der Kopfzeile, nicht im Menue) */
.ns-menu-tools { display: none; }

/* Seite hinter dem Menue einfrieren */
html.ns-menu-open,
html.ns-menu-open body { overflow: hidden !important; }

/* ==========================================================================
   3  REITERLEISTE DES TURNIER-HUBS
   ========================================================================== */
.ns-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  padding-top: calc(var(--ns-bar-h) + 8px);
  margin-top: 0;
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.92) 0%, rgba(5, 6, 10, 0.92) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.ns-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 16px;
  border-bottom: 1px solid var(--ns-line-soft);
  overflow-x: auto;
  scrollbar-width: none;
}
.ns-tabs::-webkit-scrollbar { display: none; }
.ns-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 18px 18px 16px;
  border: 0;
  background: none;
  color: var(--ns-fg-55);
  font-family: var(--ns-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}
.ns-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 1px;
  background: var(--ns-cyan);
  box-shadow: 0 0 14px rgba(35, 218, 252, 0.7);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.4s var(--ns-ease), transform 0.4s var(--ns-ease);
}
.ns-tab:hover,
.ns-tab:focus-visible { color: var(--ns-fg); text-shadow: 0 0 14px rgba(35, 218, 252, 0.6); outline: none; }
.ns-tab[aria-selected="true"] { color: var(--ns-cyan); }
.ns-tab[aria-selected="true"]::after { opacity: 1; transform: scaleX(1); }
@media (max-width: 640px) {
  .ns-tabs { justify-content: flex-start; }
  .ns-tab { padding: 16px 12px 14px; letter-spacing: 0.3em; }
}
.ns-panel[hidden] { display: none !important; }
/* Erster Abschnitt unter der Reiterleiste braucht weniger Luft */
body.notw-theme .ns-panel > .section:first-child,
body.notw-theme .ns-panel > .section:first-child:not(.hero) { padding-top: clamp(48px, 6vw, 88px); }
body.notw-theme .hub-overview .section-heading h1 {
  font-family: var(--ns-sans);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(135deg, #f7f8fc, #a7ebfd 50%, #77e3fd 75%, #57dffd 87.5%, #42dcfc, #23dafc);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 24px 0 0;
}

/* Schnellzugriff-Kacheln im Reiter "Turniere" */
.ns-quick {
  display: grid;
  gap: 24px;
  margin-top: clamp(40px, 5vw, 72px);
}
@media (min-width: 720px) { .ns-quick { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .ns-quick { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.ns-quick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid var(--ns-line);
  background: #0a0b15;
  color: var(--ns-fg);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.5s var(--ns-ease), transform 0.5s var(--ns-ease);
}
.ns-quick-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(35, 218, 252, 0.22);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.7s;
}
.ns-quick-card:nth-child(even)::before { background: rgba(160, 91, 255, 0.28); }
.ns-quick-card:hover,
.ns-quick-card:focus-visible { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-4px); outline: none; }
.ns-quick-card:hover::before,
.ns-quick-card:focus-visible::before { opacity: 1; }
.ns-quick-num {
  position: relative;
  font-family: var(--ns-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(135deg, #9c6bff, #9489ff, #87a4ff, #6cbfff 75%, #52cdff 87.5%, #3dd4ff, #23dafc);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: auto;
}
.ns-quick-card strong {
  position: relative;
  font-family: var(--ns-sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ns-quick-card > span:last-child {
  position: relative;
  font-family: var(--ns-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ns-fg-55);
}

/* Auf schmalen Schirmen ist die Glasleiste ebenfalls fixiert — Unterseiten
   (Mitglieder, Sieger) brauchen deshalb oben Luft. */
@media (max-width: 940px) {
  body.notw-theme:not(.nc-page) main > .section:first-child:not(.hero),
  body.notw-theme:not(.nc-page) main > section:first-child:not(.hero) { padding-top: 110px; }
}

/* ==========================================================================
   4  FOOTER (vierspaltig, wie auf der alten Seite)
   ========================================================================== */
.ns-footer {
  position: relative;
  margin-top: 128px;
  padding: 80px 24px;
  border-top: 1px solid var(--ns-line-soft);
  background: var(--ns-bg);
  color: var(--ns-fg);
  font-family: var(--ns-sans);
}
.ns-footer * { box-sizing: border-box; }
.ns-footer-grid {
  display: grid;
  gap: 48px;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .ns-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; }
}
.ns-footer-logo { height: 36px; width: auto; opacity: 0.9; display: block; }
.ns-footer-name {
  margin-top: 20px;
  font-family: var(--ns-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ns-fg);
}
.ns-footer-desc {
  margin: 16px 0 0;
  max-width: 24rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ns-fg-55);
}
.ns-footer-copy {
  margin-top: 32px;
  font-family: var(--ns-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--ns-fg-30);
}
.ns-footer-title {
  font-family: var(--ns-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--ns-cyan);
}
.ns-footer-col ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ns-footer-col a {
  font-size: 0.875rem;
  color: rgba(247, 248, 252, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.ns-footer-col a:hover,
.ns-footer-col a:focus-visible { color: var(--ns-cyan); text-shadow: 0 0 12px rgba(35, 218, 252, 0.5); outline: none; }
.ns-footer-sub {
  margin-top: 20px;
  white-space: nowrap;
  font-family: var(--ns-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--ns-fg-40);
}
.ns-footer-connect-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.ns-footer-connect ul { margin-top: 10px; gap: 8px; }
.ns-footer-connect a { display: inline-flex; align-items: center; gap: 10px; }
.ns-footer-connect svg { width: 14px; height: 14px; fill: currentColor; opacity: 0.8; }
.ns-footer-meta {
  margin-top: 10px;
  font-family: var(--ns-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(247, 248, 252, 0.28);
}

/* ==========================================================================
   EFFEKTE REDUZIERT (data-fx="lite"): keine Unschaerfen, kein Leuchten,
   keine Sterne/Cursor-Effekte – die Seite bleibt komplett bedienbar.
   ========================================================================== */
html[data-fx="lite"] .ns-bar,
html[data-fx="lite"] .ns-menu,
html[data-fx="lite"] .ns-menu-backdrop,
html[data-fx="lite"] .ns-tabs-wrap { backdrop-filter: none; -webkit-backdrop-filter: none; }
html[data-fx="lite"] .ns-bar, html[data-fx="lite"] .ns-menu { background: rgba(5, 6, 13, 0.97); }
html[data-fx="lite"] .ns-topbar { animation: none; }
html[data-fx="lite"] .ns-menu-list li,
html[data-fx="lite"] .ns-menu-tools,
html[data-fx="lite"] .ns-menu-kicker,
html[data-fx="lite"] .ns-menu-copy { transition-duration: 0.01s !important; transition-delay: 0s !important; }
html[data-fx="lite"] .ns-discord::before { animation: none; }
html[data-fx="lite"] *:hover { text-shadow: none !important; box-shadow: none !important; }
html[data-fx="lite"] .notw-stars,
html[data-fx="lite"] .notw-shooting,
html[data-fx="lite"] .notw-cursor,
html[data-fx="lite"] .fx-canvas,
html[data-fx="lite"] .orb,
html[data-fx="lite"] .cursor-glow { display: none !important; }
html[data-fx="lite"] .nc-card-glow,
html[data-fx="lite"] .ns-quick-card::before { display: none; }
html[data-fx="lite"] [data-reveal] { opacity: 1; transform: none; transition: none; }

/* ==========================================================================
   5  BEWEGUNG REDUZIEREN
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .ns-topbar { animation: none; }
  .ns-menu, .ns-menu-list li, .ns-menu-tools, .ns-menu-kicker, .ns-menu-copy,
  .ns-menu-label, .ns-menu-arrow, .ns-tab::after { transition-duration: 0.01s !important; transition-delay: 0s !important; }
  .ns-discord::before { animation: none; }
}
