/* ==========================================================================
   NOTW CLASSIC — die Seiten im Look der alten NOT-OF-THIS-WORLD-Seite
   --------------------------------------------------------------------------
   Startseite, Ueber uns, Partner, Regelwerk, Rangliste.

   Die Werte (Abstaende, Schriftgroessen, Farben, Animationen) sind 1:1 aus
   dem alten Build uebernommen. Alle Klassen tragen das Praefix "nc-".
   Wird zusaetzlich zu styles.css / notw-theme.css / desktop-polish.css
   geladen, damit Sternenfeld, Cursor und Smooth Scrolling gleich bleiben.
   ========================================================================== */

body.nc-page {
  --nc-fg: #f7f8fc;
  --nc-bg: #05060a;
  --nc-band: #070812;
  --nc-card: #0a0b15;
  --nc-cyan: #23dafc;
  --nc-cyan-soft: oklch(82% 0.14 215);
  --nc-violet: oklch(65% 0.26 295);
  --nc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nc-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --nc-display: "Space Grotesk", system-ui, sans-serif;
  --nc-sans: "Inter", system-ui, sans-serif;
  --nc-grad-cyan: linear-gradient(135deg, #f7f8fc, #a7ebfd 50%, #77e3fd 75%, #57dffd 87.5%, #42dcfc, #23dafc);
  --nc-grad-violet: linear-gradient(135deg, #9c6bff, #9489ff, #87a4ff, #6cbfff 75%, #52cdff 87.5%, #3dd4ff, #23dafc);
  font-family: var(--nc-sans);
  color: var(--nc-fg);
  background: var(--nc-bg);
}
body.nc-page main { padding-top: 0 !important; position: relative; z-index: 1; }
body.nc-page main > .nc-hero:first-child { padding-top: 0; }
body.nc-page h1, body.nc-page h2, body.nc-page h3 { font-family: var(--nc-sans); margin: 0; }
body.nc-page p { margin: 0; }
body.nc-page a { color: inherit; text-decoration: none; }
body.nc-page img { display: block; max-width: 100%; }

/* Textverlaeufe wie im Original */
.nc-grad {
  color: transparent;
  background: var(--nc-grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
}
.nc-grad-violet {
  color: transparent;
  background: var(--nc-grad-violet);
  -webkit-background-clip: text;
  background-clip: text;
}
.nc-kicker {
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--nc-cyan);
}
.nc-wrap { max-width: 80rem; margin: 0 auto; }
.nc-section { position: relative; padding: 160px 24px; }

/* Einblendung beim Scrollen (Kino-Kurve wie im Original) */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--nc-ease) var(--nc-delay, 0s), transform 1s var(--nc-ease) var(--nc-delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   KEYFRAMES (aus dem alten Build)
   ========================================================================== */
@keyframes nc-earth-in { 0% { opacity: 0; transform: scale(1.12); } to { opacity: 1; transform: scale(1); } }
@keyframes nc-title-in {
  0%  { opacity: 0; filter: blur(20px); transform: translateY(40px) scale(0.92); }
  60% { opacity: 1; filter: blur(0); }
  to  { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}
@keyframes nc-pulse-glow { 0%, to { opacity: 0.5; } 50% { opacity: 1; } }

/* ==========================================================================
   STARTSEITE — HERO
   ========================================================================== */
.nc-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: var(--nc-bg);
}
.nc-hero-bg { position: absolute; inset: 0; z-index: -20; }
.nc-hero-bg > div {
  position: absolute;
  inset: 0;
  background-image: url("/assets/notw/earth-space.jpg");
  background-size: cover;
  background-position: center 90%;
  animation: nc-earth-in 2.6s var(--nc-ease) both;
}
.nc-hero-vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: -10;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(5, 6, 10, 0.55) 65%, rgba(5, 6, 10, 0.95) 100%);
}
.nc-hero-fade {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: -10;
  height: 55vh;
  background: linear-gradient(to top, #05060a, rgba(5, 6, 10, 0.85), transparent);
}
.nc-hero-stars { pointer-events: none; position: absolute; inset: 0; z-index: -10; opacity: 0.5; }
.nc-hero-stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: nc-pulse-glow var(--d, 3s) ease-in-out infinite;
}
.nc-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.nc-hero-logo {
  width: min(78vw, 720px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(35, 218, 252, 0.55));
  animation: nc-title-in 1.4s var(--nc-ease) 0.1s both;
}
.nc-hero-sub {
  margin-top: 24px;
  font-family: var(--nc-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.55em;
  color: rgba(247, 248, 252, 0.75);
  animation: nc-title-in 1.2s var(--nc-ease) 0.7s both;
}
.nc-hero-sub2 {
  margin-top: 12px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.45);
  animation: nc-title-in 1.2s var(--nc-ease) 0.9s both;
}
@media (min-width: 640px) { .nc-hero-sub { font-size: 14px; letter-spacing: 0.7em; } }

/* ==========================================================================
   STARTSEITE — MANIFEST
   ========================================================================== */
.nc-manifest { display: grid; gap: 64px; }
@media (min-width: 1024px) { .nc-manifest { grid-template-columns: 1.4fr 1fr; gap: 96px; } }
.nc-manifest h2 {
  margin-top: 32px;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.nc-manifest-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(247, 248, 252, 0.65);
}
.nc-manifest-text p { font-size: 1rem; font-weight: 300; line-height: 1.625; }
.nc-link-line {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(35, 218, 252, 0.5);
  font-family: var(--nc-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--nc-cyan);
  transition: gap 0.3s var(--nc-ease);
}
.nc-link-line:hover, .nc-link-line:focus-visible { gap: 20px; outline: none; }

/* ==========================================================================
   STARTSEITE — STATISTIK-BAND
   ========================================================================== */
.nc-stats {
  position: relative;
  padding: 128px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--nc-band);
}
.nc-stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
@media (min-width: 768px) { .nc-stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.nc-stat-num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.nc-stat-label {
  margin-top: 12px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.45);
}

/* ==========================================================================
   STARTSEITE — KACHELN
   ========================================================================== */
.nc-cards { display: grid; gap: 24px; }
.nc-cards + .nc-cards { margin-top: 24px; }
@media (min-width: 1024px) {
  .nc-cards-a { grid-template-columns: 1.7fr 1fr; }
  .nc-cards-b { grid-template-columns: 1fr 1.7fr; }
}
.nc-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 260px;
  padding: 40px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nc-card);
  transition: transform 0.5s var(--nc-ease), border-color 0.5s var(--nc-ease);
}
.nc-card.is-large { min-height: 340px; }
.nc-card:hover, .nc-card:focus-visible { border-color: rgba(255, 255, 255, 0.16); outline: none; }
.nc-card-glow {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  opacity: 0;
  filter: blur(64px);
  transition: opacity 0.7s;
}
.nc-card.tone-violet .nc-card-glow { background: rgba(160, 91, 255, 0.3); }
.nc-card.tone-cyan .nc-card-glow { background: rgba(35, 218, 252, 0.25); }
.nc-card:hover .nc-card-glow, .nc-card:focus-visible .nc-card-glow { opacity: 1; }
.nc-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: inherit;
  gap: 32px;
}
.nc-card-num {
  font-family: var(--nc-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.nc-card.is-large .nc-card-num { font-size: clamp(3.5rem, 7vw, 6rem); }
.nc-card-kicker {
  margin-bottom: 12px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
.nc-card.tone-violet .nc-card-kicker { color: var(--nc-violet); }
.nc-card.tone-cyan .nc-card-kicker { color: var(--nc-cyan); }
.nc-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--nc-fg);
}
.nc-card.is-large h3 { font-size: clamp(2rem, 4vw, 3.5rem); }
.nc-card p {
  margin-top: 20px;
  max-width: 28rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(247, 248, 252, 0.55);
}
.nc-card-open {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.7);
  transition: gap 0.3s var(--nc-ease), color 0.3s;
}
.nc-card:hover .nc-card-open { gap: 20px; color: var(--nc-fg); }

/* ==========================================================================
   UNTERSEITEN — SEITENKOPF
   ========================================================================== */
.nc-pagehead { position: relative; padding: 176px 24px 96px; }
.nc-pagehead h1 {
  margin-top: 24px;
  max-width: 56rem;
  padding-bottom: 12px;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.nc-pagehead p {
  margin-top: 32px;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(247, 248, 252, 0.6);
}

/* ==========================================================================
   UEBER UNS — GRUENDER
   ========================================================================== */
.nc-founders { display: grid; gap: 32px; padding: 0 24px 128px; }
@media (min-width: 1024px) { .nc-founders-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.nc-founders-grid { display: grid; gap: 32px; }
.nc-founder {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--nc-card);
}
.nc-founder-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: radial-gradient(circle at 30% 30%, oklch(0.45 0.2 var(--hue, 305)), oklch(0.06 0.04 285));
}
.nc-founder-media img { width: 100%; height: 100%; object-fit: cover; }
.nc-founder-role {
  margin-top: 24px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--nc-cyan);
}
.nc-founder h3 { margin-top: 12px; font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; }
.nc-founder-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.nc-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 248, 252, 0.7);
  transition: border-color 0.3s, color 0.3s;
}
.nc-chip:hover, .nc-chip:focus-visible { border-color: rgba(35, 218, 252, 0.5); color: var(--nc-cyan); outline: none; }

/* ==========================================================================
   PARTNER
   ========================================================================== */
.nc-partner-section { padding: 0 24px 96px; }
.nc-partner-section.is-last { padding-bottom: 128px; }
.nc-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--nc-card);
}
.nc-partner-grid { display: grid; }
@media (min-width: 1024px) { .nc-partner-grid { grid-template-columns: 1.1fr 1fr; } }
.nc-partner-media { position: relative; aspect-ratio: 4 / 5; width: 100%; overflow: hidden; }
@media (min-width: 1024px) { .nc-partner-media { aspect-ratio: auto; } }
.nc-partner-media img { width: 100%; height: 100%; object-fit: cover; }
.nc-partner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, transparent, var(--nc-card));
}
.nc-partner-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
@media (min-width: 640px) { .nc-partner-body { padding: 56px; } }
.nc-partner-logo { height: 96px; width: auto; align-self: flex-start; }
.nc-partner-body h2, .nc-panel-plain h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.nc-partner-body p, .nc-panel-plain > p {
  max-width: 32rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(247, 248, 252, 0.65);
}
.nc-code {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid rgba(35, 218, 252, 0.4);
  background: rgba(0, 0, 0, 0.4);
}
.nc-code-label {
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.6);
}
.nc-code-value {
  margin-top: 12px;
  font-family: var(--nc-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .nc-code-value { font-size: 3.75rem; } }
.nc-code-note {
  margin-top: 8px;
  font-family: var(--nc-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 248, 252, 0.7);
}
.nc-btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 2px;
  background: var(--nc-violet);
  color: #fdfdff;
  font-family: var(--nc-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: box-shadow 0.4s var(--nc-ease);
}
.nc-btn:hover, .nc-btn:focus-visible { box-shadow: 0 0 60px rgba(160, 91, 255, 0.35); outline: none; }
.nc-partner-foot { padding: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 640px) { .nc-partner-foot { padding: 40px; } }
.nc-partner-foot img { margin: 0 auto; width: 100%; max-width: 28rem; border-radius: 2px; }
.nc-panel-plain { padding: 40px; }
@media (min-width: 640px) { .nc-panel-plain { padding: 56px; } }
.nc-panel-plain h2 { margin-top: 20px; font-size: clamp(2rem, 4.5vw, 3.5rem); }
.nc-panel-plain > p { margin-top: 20px; max-width: 42rem; }
.nc-panel-images { display: grid; gap: 24px; margin-top: 40px; }
@media (min-width: 768px) { .nc-panel-images { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nc-panel-images img { width: 100%; border-radius: 2px; border: 1px solid rgba(255, 255, 255, 0.05); }

/* ==========================================================================
   REGELWERK
   ========================================================================== */
.nc-rules { max-width: 64rem; margin: 0 auto; padding: 0 24px 128px; }
.nc-rule {
  display: grid;
  gap: 40px;
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1024px) { .nc-rule { grid-template-columns: 160px 1fr; } }
.nc-rule-side { display: flex; flex-direction: column; gap: 16px; }
.nc-rule-icon { font-size: 2.25rem; line-height: 1; }
.nc-rule h3 { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.03em; }
@media (min-width: 640px) { .nc-rule h3 { font-size: 2.25rem; } }
.nc-rule ul { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.nc-rule li {
  display: flex;
  gap: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(247, 248, 252, 0.7);
}
.nc-rule li::before {
  content: "";
  flex: 0 0 4px;
  width: 4px;
  height: 4px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--nc-cyan);
}

/* ==========================================================================
   RANGLISTE
   ========================================================================== */
.nc-board-section { padding: 0 24px 128px; }
.nc-board { overflow: hidden; border-radius: 2px; border: 1px solid rgba(255, 255, 255, 0.08); background: var(--nc-card); }
.nc-board-head {
  display: none;
  grid-template-columns: 60px 2fr 1fr 100px 100px 100px;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.5);
}
@media (min-width: 768px) { .nc-board-head { display: grid; } }
.nc-board-head .r { text-align: right; }
.nc-board-empty { padding: 80px 24px; text-align: center; }
.nc-board-empty p { margin-top: 24px; font-size: 1.25rem; font-weight: 300; color: rgba(247, 248, 252, 0.7); }
.nc-board-empty .nc-link-line { margin-top: 32px; }

/* ==========================================================================
   BEWEGUNG REDUZIEREN
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .nc-hero-bg > div, .nc-hero-logo, .nc-hero-sub, .nc-hero-sub2 { animation: none; }
  .nc-hero-stars span { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   UEBER UNS — ORGANIGRAMM
   ========================================================================== */
.nc-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.nc-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 248, 252, 0.7);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.nc-socials a:hover, .nc-socials a:focus-visible {
  border-color: rgba(35, 218, 252, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nc-cyan);
  outline: none;
}
.nc-socials svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.nc-founder-media.is-initial, .nc-person-avatar.is-initial {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nc-founder-media.is-initial span {
  font-family: var(--nc-display);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  mix-blend-mode: overlay;
}

.nc-orga { padding: 48px 24px 128px; }
.nc-orga-head { max-width: 80rem; margin: 0 auto; }
.nc-orga-head h2 {
  margin-top: 32px;
  max-width: 56rem;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.nc-orga-head p {
  margin-top: 32px;
  max-width: 40rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(247, 248, 252, 0.6);
}
/* Verbindung von den Gruendern zu den vier Bereichen */
.nc-orga-tree { position: relative; max-width: 80rem; margin: 64px auto 0; }
.nc-orga-tree::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -64px;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(35, 218, 252, 0), rgba(35, 218, 252, 0.6));
}
.nc-orga-tree::after {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 0;
  height: 1px;
  background: rgba(35, 218, 252, 0.35);
}
@media (max-width: 1023px) { .nc-orga-tree::after { display: none; } }
.nc-orga-areas { display: grid; gap: 24px; padding-top: 24px; }
@media (min-width: 720px) { .nc-orga-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .nc-orga-areas { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.nc-area {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nc-card);
}
@media (min-width: 1024px) {
  .nc-area::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -24px;
    width: 1px;
    height: 24px;
    background: rgba(35, 218, 252, 0.35);
  }
}
.nc-area-num {
  font-family: var(--nc-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.nc-area-lead {
  margin-top: 24px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--nc-cyan);
}
.nc-area h3 { margin-top: 10px; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.nc-area > p {
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(247, 248, 252, 0.55);
}
.nc-people {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nc-person { display: flex; gap: 14px; align-items: flex-start; }
.nc-person-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 2px;
  background: radial-gradient(circle at 30% 30%, oklch(0.4 0.18 280), oklch(0.08 0.04 285));
}
.nc-person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nc-person-avatar.is-initial span {
  font-family: var(--nc-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
}
.nc-person-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.nc-person-body strong { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.nc-person-body span {
  font-family: var(--nc-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 248, 252, 0.45);
}
.nc-person-body .nc-socials { margin-top: 6px; }
.nc-person-body .nc-socials a { width: 30px; height: 30px; }
.nc-person-body .nc-socials svg { width: 13px; height: 13px; }
.nc-socials-empty { display: none; }
.nc-area-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(247, 248, 252, 0.7);
  transition: gap 0.3s var(--nc-ease), color 0.3s;
}
.nc-area-link:hover, .nc-area-link:focus-visible { gap: 20px; color: var(--nc-fg); outline: none; }

/* Turnier-Hosting: Logo-Kacheln, Klick klappt das Team auf */
.nc-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--nc-fg);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--nc-ease);
}
.nc-tile:hover, .nc-tile:focus-visible {
  border-color: rgba(35, 218, 252, 0.45);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}
.nc-tile[aria-expanded="true"] {
  border-color: rgba(35, 218, 252, 0.7);
  background: rgba(35, 218, 252, 0.06);
  box-shadow: 0 0 30px rgba(35, 218, 252, 0.15);
}
.nc-tile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
}
.nc-tile-logo img { max-width: 100%; max-height: 52px; width: auto; height: auto; object-fit: contain; }
.nc-tile-name { font-size: 0.8rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.nc-tile-sub {
  font-family: var(--nc-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--nc-cyan);
}
.nc-tile-panel { margin-top: 16px; }
.nc-tile-panel[hidden] { display: none; }
.nc-tile-panel-head {
  font-family: var(--nc-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(247, 248, 252, 0.45);
}
.nc-tile-panel .nc-people { margin-top: 12px; padding-top: 16px; }

/* ==========================================================================
   STARTSEITE – nur Hero: Buttons unter dem Logo
   ========================================================================== */
.nc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  animation: nc-title-in 1.2s var(--nc-ease) 1.1s both;
}
.nc-btn-ghost { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--nc-fg); }
.nc-btn-ghost:hover, .nc-btn-ghost:focus-visible { border-color: rgba(35, 218, 252, 0.6); box-shadow: 0 0 30px rgba(35, 218, 252, 0.3); }
.nc-btn:hover, .nc-btn:focus-visible { transform: translateY(-2px); }
.nc-btn { transition: box-shadow 0.4s var(--nc-ease), transform 0.4s var(--nc-ease); }
.nc-hero-only { min-height: 100vh; min-height: 100svh; }
.nc-card:hover, .nc-card:focus-visible { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(35, 218, 252, 0.25); }

/* ==========================================================================
   REGELWERK – Reiter fuer Killrace / Custom / Multiplayer
   ========================================================================== */
.nc-rules-wrap { padding: 0 24px 0; }
.nc-rtabs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 64rem;
  margin: 0 auto 8px;
}
body.nc-page .nc-pagehead + .nc-rules-wrap { margin-top: -48px; }
.nc-rtab {
  padding: 12px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--nc-fg);
  font: 600 10px/1 var(--nc-mono);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
}
.nc-rtab:hover, .nc-rtab:focus-visible { border-color: rgba(35, 218, 252, 0.6); box-shadow: 0 0 20px rgba(35, 218, 252, 0.3); outline: none; }
.nc-rtab[aria-selected="true"] { border-color: rgba(35, 218, 252, 0.8); background: rgba(35, 218, 252, 0.1); color: var(--nc-cyan); }
.nc-rules { padding-top: 0; }

/* ==========================================================================
   RANGLISTE – Saison, Tabellen, Preise, Archiv
   ========================================================================== */
.nc-lb { padding: 0 24px 64px; }
.nc-lb-season h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.04em; margin-top: 20px; }
.nc-lb-season > p { margin-top: 12px; font-family: var(--nc-mono); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 248, 252, 0.55); }
.nc-lb-formula { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.nc-lb-formula span {
  padding: 10px 14px;
  border-radius: 2px;
  border: 1px solid rgba(35, 218, 252, 0.3);
  background: rgba(35, 218, 252, 0.06);
  font-family: var(--nc-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(247, 248, 252, 0.75);
}
.nc-lb-formula b { color: var(--nc-cyan); font-size: 14px; margin-right: 6px; }
.nc-lb-hint { margin-top: 16px; max-width: 44rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: rgba(247, 248, 252, 0.55); }
.nc-lb-grid { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 900px) { .nc-lb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nc-lb-table {
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nc-card);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.nc-lb-table:hover { border-color: rgba(35, 218, 252, 0.35); box-shadow: 0 0 40px -10px rgba(35, 218, 252, 0.25); }
.nc-lb-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 24px 24px 12px; }
.nc-lb-head h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.03em; }
.nc-lb-head span { font-family: var(--nc-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 248, 252, 0.4); }
.nc-lb-table table { width: 100%; border-collapse: collapse; }
.nc-lb-table th, .nc-lb-table td { padding: 10px 12px; text-align: left; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.875rem; }
.nc-lb-table th { font-family: var(--nc-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 248, 252, 0.45); font-weight: 500; border-top: 0; }
.nc-lb-table th:first-child, .nc-lb-table td:first-child { padding-left: 24px; width: 48px; }
.nc-lb-table th:last-child, .nc-lb-table td:last-child { padding-right: 24px; }
.nc-lb-table .r { text-align: right; }
.nc-lb-table td b { color: var(--nc-cyan); }
.nc-lb-table tbody tr { transition: background 0.3s; }
.nc-lb-table tbody tr:hover { background: rgba(35, 218, 252, 0.05); }
.nc-lb-empty { color: rgba(247, 248, 252, 0.4); font-weight: 300; }
.nc-lb-medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-family: var(--nc-mono);
  font-size: 11px;
  font-weight: 700;
  color: #05060a;
  background: #c9ced8;
}
.nc-lb-medal.m1 { background: linear-gradient(135deg, #ffe27a, #f6b400); box-shadow: 0 0 14px rgba(246, 180, 0, 0.55); }
.nc-lb-medal.m2 { background: linear-gradient(135deg, #f0f2f7, #b9c0cc); }
.nc-lb-medal.m3 { background: linear-gradient(135deg, #e6a877, #b6683a); }
.nc-lb-member {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  border-radius: 2px;
  border: 1px solid rgba(160, 91, 255, 0.5);
  color: #c9a8ff;
  font: 600 9px/1.4 var(--nc-mono);
  font-style: normal;
}
.nc-lb-prizes { padding: 16px 24px 24px; border-top: 1px solid rgba(255, 255, 255, 0.06); display: flex; flex-direction: column; gap: 12px; }
.nc-lb-prize { display: flex; align-items: center; gap: 12px; }
.nc-lb-prize img { width: 44px; height: 44px; object-fit: cover; border-radius: 2px; border: 1px solid rgba(255, 255, 255, 0.08); }
.nc-lb-prize strong { display: block; font-size: 0.9rem; }
.nc-lb-prize span:not(.nc-lb-medal) { display: block; font-size: 0.8rem; font-weight: 300; color: rgba(247, 248, 252, 0.55); }
.nc-lb-report { padding: 0 24px 64px; }
.nc-lb-archive-wrap { padding: 0 24px 128px; }
.nc-lb-archive { margin-top: 16px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 2px; background: var(--nc-card); }
.nc-lb-archive summary { cursor: pointer; padding: 18px 24px; font-weight: 700; letter-spacing: -0.02em; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.nc-lb-archive summary span { font-family: var(--nc-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 248, 252, 0.45); font-weight: 400; }
.nc-lb-archive .nc-lb-grid { margin: 0; padding: 0 24px 24px; }

/* ==========================================================================
   FORMULAR (Kill-Meldung)
   ========================================================================== */
.nc-form { margin-top: 32px; }
.nc-form-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .nc-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.nc-form-full { grid-column: 1 / -1; }
.nc-form label { display: flex; flex-direction: column; gap: 8px; }
.nc-form label > span { font-family: var(--nc-mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(247, 248, 252, 0.55); }
.nc-form input, .nc-form select, .nc-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--nc-fg);
  font: 400 0.95rem/1.4 var(--nc-sans);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nc-form input:focus, .nc-form select:focus, .nc-form textarea:focus { border-color: rgba(35, 218, 252, 0.7); box-shadow: 0 0 0 3px rgba(35, 218, 252, 0.15); outline: none; }
.nc-form select option { background: #0a0b15; }
.nc-form input[type="file"] { padding: 10px; font-size: 0.85rem; }
.nc-check { flex-direction: row !important; align-items: center; gap: 12px !important; padding-top: 24px; }
.nc-check input { width: 18px; height: 18px; accent-color: #23dafc; }
.nc-check span { font-family: var(--nc-sans) !important; font-size: 0.9rem !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--nc-fg) !important; }
.nc-file-preview { display: flex; flex-wrap: wrap; gap: 6px; }
.nc-file-preview span { padding: 4px 8px; border-radius: 2px; background: rgba(35, 218, 252, 0.08); border: 1px solid rgba(35, 218, 252, 0.25); font-family: var(--nc-mono); font-size: 10px; color: rgba(247, 248, 252, 0.75); }
.nc-form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.nc-form button.nc-btn { border: 0; cursor: pointer; }
.nc-form button.nc-btn:disabled { opacity: 0.6; cursor: wait; }
.nc-form-status { font-size: 0.875rem; font-weight: 300; color: rgba(247, 248, 252, 0.6); }
.nc-form-status.is-success { color: #7ef0b0; }
.nc-form-status.is-error { color: #ff8e8e; }
.nc-partner-grid.is-single { grid-template-columns: 1fr; }

/* Startseite: Footer direkt unter dem Hero */
body.nc-home .ns-footer { margin-top: 0; }

/* ==========================================================================
   NO-MERCY-LOOK FUER DIE KLASSISCHEN SEITEN
   Heller Blau-Lila-Hintergrund, Glaskarten, runde Ecken – die NotW-Elemente
   (Kicker, Verlaufs-Ueberschriften, Mono-Schrift, Erde) bleiben.
   ========================================================================== */
body.nc-page.nm-look {
  --nc-bg: #05060d;
  --nc-band: rgba(255, 255, 255, 0.03);
  --nc-card: rgba(255, 255, 255, 0.035);
  --nc-radius: 20px;
  --nc-radius-sm: 14px;
  background: var(--nc-bg);
}
body.nc-page.nm-look .nc-hero-fade { background: linear-gradient(to top, #05060d, rgba(5, 6, 13, 0.85), transparent); }
body.nc-page.nm-look .nc-hero { background: transparent; }
body.nc-page.nm-look .nc-card,
body.nc-page.nm-look .nc-founder,
body.nc-page.nm-look .nc-area,
body.nc-page.nm-look .nc-panel,
body.nc-page.nm-look .nc-lb-table,
body.nc-page.nm-look .nc-board,
body.nc-page.nm-look .nc-lb-archive {
  border-radius: var(--nc-radius);
  border-color: rgba(255, 255, 255, 0.09);
  background: var(--nc-card);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.nc-page.nm-look .nc-card:hover,
body.nc-page.nm-look .nc-lb-table:hover { border-color: rgba(120, 200, 255, 0.28); box-shadow: 0 0 40px -6px rgba(38, 224, 255, 0.35); }
body.nc-page.nm-look .nc-founder-media,
body.nc-page.nm-look .nc-person-avatar,
body.nc-page.nm-look .nc-tile,
body.nc-page.nm-look .nc-code,
body.nc-page.nm-look .nc-partner-foot img,
body.nc-page.nm-look .nc-panel-images img,
body.nc-page.nm-look .nc-lb-prize img,
body.nc-page.nm-look .nc-group-edit { border-radius: var(--nc-radius-sm); }
body.nc-page.nm-look .nc-person-avatar { border-radius: 50%; }
body.nc-page.nm-look .nc-btn,
body.nc-page.nm-look .nc-chip,
body.nc-page.nm-look .nc-rtab,
body.nc-page.nm-look .nc-socials a { border-radius: 999px; }
body.nc-page.nm-look .nc-btn { background: linear-gradient(135deg, #23dafc, #3b82f6); color: #04121a; box-shadow: 0 12px 34px -12px rgba(38, 224, 255, 0.75); }
body.nc-page.nm-look .nc-btn:hover, body.nc-page.nm-look .nc-btn:focus-visible { box-shadow: 0 0 34px rgba(38, 224, 255, 0.55); }
body.nc-page.nm-look .nc-btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--nc-fg); box-shadow: none; }
body.nc-page.nm-look .nc-form input,
body.nc-page.nm-look .nc-form select,
body.nc-page.nm-look .nc-form textarea { border-radius: 12px; background: rgba(255, 255, 255, 0.04); }
body.nc-page.nm-look .nc-form input[type="file"] { border-radius: 12px; }
body.nc-page.nm-look .nc-stats { border-radius: var(--nc-radius); }
body.nc-page.nm-look .nc-lb-formula span { border-radius: 999px; }
body.nc-page.nm-look .nc-file-preview span { border-radius: 999px; }
body.nc-page.nm-look .nc-lb-table th:first-child, body.nc-page.nm-look .nc-lb-table td:first-child { padding-left: 24px; }
body.nc-page.nm-look .nc-orga-tree::before, body.nc-page.nm-look .nc-orga-tree::after, body.nc-page.nm-look .nc-area::before { background: rgba(120, 200, 255, 0.35); }
body.nc-page.nm-look .nc-kicker { color: #26e0ff; }
/* Erde im O des Logos dreht sich langsam */
.nc-hero-logo-wrap { position: relative; width: min(78vw, 720px); animation: nc-title-in 1.4s var(--nc-ease) 0.1s both; }
.nc-hero-logo-wrap .nc-hero-logo { width: 100%; animation: none; }
.nc-hero-earth {
  position: absolute;
  left: 35.25%;
  top: 40.57%;
  width: 13.29%;
  height: auto;
  animation: nc-earth-spin 48s linear infinite;
  filter: drop-shadow(0 0 10px rgba(38, 224, 255, 0.55));
}
@keyframes nc-earth-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
html[data-fx="lite"] .nc-hero-earth { animation: none; }
@media (prefers-reduced-motion: reduce) { .nc-hero-earth { animation: none; } }

/* Seitenkopf immer unterhalb der festen Leiste */
body.nc-page .nc-pagehead { padding-top: calc(var(--ns-bar-h, 66px) + 96px); }
@media (max-width: 640px) { body.nc-page .nc-pagehead { padding-top: calc(var(--ns-bar-h, 66px) + 56px); padding-bottom: 56px; } }

/* Startseite: Maus-Glow ueber der Erde, Logo leuchtet unter der Maus */
body.nc-home .cursor-glow { z-index: 5; mix-blend-mode: screen; opacity: 0.75; }
.nc-hero-logo-wrap .nc-hero-logo { transition: filter 0.6s var(--nc-ease), transform 0.6s var(--nc-ease); }
.nc-hero-logo-wrap:hover .nc-hero-logo { filter: drop-shadow(0 0 70px rgba(38, 224, 255, 0.85)) drop-shadow(0 0 24px rgba(168, 85, 247, 0.55)) brightness(1.12); transform: scale(1.015); }
.nc-hero-logo-wrap:hover .nc-hero-earth { filter: drop-shadow(0 0 18px rgba(38, 224, 255, 0.9)); }
.nc-hero-earth { transition: filter 0.6s var(--nc-ease); }
.nc-hero-sub, .nc-hero-sub2 { transition: text-shadow 0.5s, color 0.5s; }
.nc-hero-content:hover .nc-hero-sub { color: var(--nc-fg); text-shadow: 0 0 22px rgba(38, 224, 255, 0.55); }
html[data-fx="lite"] .nc-hero-logo-wrap:hover .nc-hero-logo { filter: drop-shadow(0 0 60px rgba(35, 218, 252, 0.55)); transform: none; }

/* ==========================================================================
   PARTNER – einheitliche Kacheln
   ========================================================================== */
.nc-pgrid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.nc-pcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--nc-radius, 20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--nc-card);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.9);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--nc-ease);
}
.nc-pcard:hover { border-color: rgba(120, 200, 255, 0.35); box-shadow: 0 0 40px -8px rgba(38, 224, 255, 0.35); }
.nc-pmedia { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, rgba(38, 224, 255, 0.12), rgba(168, 85, 247, 0.16)); }
.nc-pmedia > img:first-child { width: 100%; height: 100%; object-fit: cover; display: block; }
.nc-pmedia.is-logo { display: flex; align-items: center; justify-content: center; }
.nc-plogo-big { max-width: 60%; max-height: 60%; object-fit: contain; border-radius: 12px; }
.nc-plogo { position: absolute; left: 14px; bottom: 14px; height: 44px; width: auto; padding: 5px; border-radius: 10px; background: rgba(5, 6, 13, 0.75); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(8px); }
.nc-pinitial { font-family: var(--nc-display); font-size: 4rem; font-weight: 900; color: rgba(255, 255, 255, 0.6); }
.nc-pbody { display: flex; flex-direction: column; flex: 1; gap: 12px; padding: 22px 22px 24px; }
.nc-pbody h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
.nc-pbody p { font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: rgba(247, 248, 252, 0.6); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.nc-pcode { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 10px; padding: 10px 14px; border-radius: 12px; border: 1px solid rgba(35, 218, 252, 0.35); background: rgba(35, 218, 252, 0.06); }
.nc-pcode span { font-family: var(--nc-mono); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(247, 248, 252, 0.55); }
.nc-pcode strong { font-family: var(--nc-display); font-size: 1.15rem; letter-spacing: 0.05em; color: var(--nc-cyan); }
.nc-pcode em { width: 100%; font-style: normal; font-family: var(--nc-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247, 248, 252, 0.6); }
.nc-pthumbs { display: flex; gap: 8px; }
.nc-pthumbs img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s; }
.nc-pthumbs a:hover img { transform: scale(1.06); }
.nc-pfoot { margin-top: auto; padding-top: 6px; }
.nc-pbtn { font-size: 10px; padding: 11px 20px; }
.nc-pcard-empty { grid-column: 1 / -1; }
