/* =========================================================
   EXILECHAOS â€” DOKUMENTIERTE EINZELDATEI

   DATEI-AUFBAU
   01  Basis / globale Einstellungen
   02  Seitenrahmen
   03  Header / Hauptnavigation
   04  Hero-Bereich
   05  Themenleiste
   06  Gemeinsame Section-Grundlagen
   07  Neuigkeiten
   08  Builds
   09  Medien / Community-Archiv
   10  Discord-Livebereich
   11  Beitreten-Banner
   12  Footer
   13  Medien-Modal
   14  Responsive: kleiner Desktop
   15  Responsive: Tablet
   16  Responsive: Smartphone
   17  Globaler Seitenhintergrund
   18  Bewegung reduzieren
   19  Feinschliff / Ãœberschreibungen
   20  Hero-Bildstreifen-Fix
   21  Alter Hero-Trennlinien-Fix
   22  Finaler Hero-Trennlinien-Fix

   HINWEIS
   - Alles bleibt in EINER CSS-Datei.
   - Keine CSS-Regel wurde entfernt.
   - Keine Werte oder Selektoren wurden geÃ¤ndert.
   - Nur Kommentare, Ãœberschriften und AbstÃ¤nde wurden ergÃ¤nzt.
   - SpÃ¤tere BlÃ¶cke Ã¼berschreiben teilweise bewusst frÃ¼here Regeln.
   ========================================================= */


/* =========================================================
   01 â€” BASIS / GLOBALE EINSTELLUNGEN
   HTML: <html>, <body>, globale Elemente und Hilfsklassen
   EnthÃ¤lt: Variablen, Reset, Grundtypografie, Bilder, Links, versteckte Daten
   ========================================================= */

:root {
  --page: #020707;
  --panel: #07100f;
  --panel-2: #0a1211;
  --panel-3: #101817;
  --border: rgba(210, 152, 72, 0.28);
  --border-soft: rgba(255, 255, 255, 0.09);
  --text: #f3eee4;
  --muted: #8d9490;
  --muted-2: #626a67;
  --gold: #d39a3f;
  --orange: #ed5b20;
  --orange-2: #b83512;
  --green: #26e58a;
  --shell-width: 1280px;
  --content-pad: 38px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: #020707;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 56, 53, 0.24), transparent 36rem),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px),
    #020707;
  background-size: auto, 5px 5px, 5px 5px, auto;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hidden-data {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.24;
  background:
    radial-gradient(circle at 20% 22%, rgba(27, 77, 68, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 40%, rgba(135, 56, 20, 0.09), transparent 30rem);
}

/* =========================================================
   02 â€” SEITENRAHMEN
   HTML: <div class="site-shell"> und <main>
   EnthÃ¤lt: Ã¤uÃŸeren Rahmen, HauptflÃ¤che und Grundhintergrund
   ========================================================= */

.site-shell {
  position: relative;
  z-index: 2;
  width: min(var(--shell-width), calc(100% - 24px));
  margin: 8px auto 26px;
  overflow: hidden;
  border: 1px solid rgba(202, 151, 75, 0.38);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(4, 10, 10, 0.96), rgba(1, 7, 7, 0.99)),
    #030808;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 90px rgba(20, 75, 64, 0.035);
}

main {
  display: block;
  padding-top: 74px;
  background: #030808;
}

/* =========================================================
   03 â€” HEADER / HAUPTNAVIGATION
   HTML: <header class="site-header">
   EnthÃ¤lt: Logo, Navigation, Discord-Button und Mobile-MenÃ¼-Schalter
   ========================================================= */

.site-header {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  isolation: isolate;

  width: min(var(--shell-width), calc(100% - 24px));

  min-height: 74px;
  padding: 0 var(--content-pad);

  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 30px;

  z-index: 1000;

  background: rgba(3, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(202,151,75,.25);
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span,
.footer-brand span {
  min-width: 0;
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.brand strong,
.footer-brand strong {
  font-size: 0.93rem;
  letter-spacing: 0.03em;
}

.brand small,
.footer-brand small {
  margin-top: 3px;
  color: #747b78;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  color: #c1c3bf;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 8px 2px;
  transition:
    color .18s ease,
    text-shadow .18s ease;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  width:0;
  height:2px;
  transform:translateX(-50%);
  border-radius:999px;
  background:linear-gradient(90deg,#d39a3f,#f2c56f,#d39a3f);
  box-shadow:0 0 10px rgba(211,154,63,.35);
  transition:width .18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible{
  color:#fff;
  text-shadow:0 0 10px rgba(242,197,111,.18);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after{
  width:100%;
}

.main-nav a.active,
.main-nav a[aria-current="page"]{
  color:#fff4df;
}


.header-invite,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 28px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.header-invite,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #f06323, #d94713);
  box-shadow: 0 10px 30px rgba(227, 79, 24, 0.22);
}

.header-invite:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.header-invite {
  min-width: 180px;
  min-height: 28px;
  padding: 0 18px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-invite .discord-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

/* =========================================================
   04 â€” HERO-BEREICH
   HTML: <section class="hero" id="start">
   EnthÃ¤lt: Titel, Beschreibung, Buttons, Avatare und Community-Karte
   ========================================================= */

.hero {
  position: relative;
  min-height: 620px;
  padding: 78px var(--content-pad) 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(286px, 0.58fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(90deg, rgba(2, 8, 8, 0.98) 0%, rgba(2, 8, 8, 0.82) 35%, rgba(2, 8, 8, 0.18) 64%, rgba(2, 8, 8, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), #030808 94%),
    url("/assets/hero-bg.jpg") center 34% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 220px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 8, 0) 0%,
      rgba(3, 8, 8, 0.78) 58%,
      #030808 82%,
      #030808 100%
    );
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 59% 48%, rgba(223, 102, 33, 0.2), transparent 20rem),
    radial-gradient(circle at 74% 21%, rgba(229, 88, 28, 0.12), transparent 24rem);
}

.hero-copy,
.community-card {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: 100%;
  max-width: 640px;
  min-width: 0;
  overflow: visible;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: #d89b37;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 640px;
  margin: 0;
  padding-right: 0.08em;
  overflow: visible;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero h1 span {
  font-size: clamp(4.15rem, 6.2vw, 6.6rem);
  line-height: 0.94;
  color: #f5f0e7;
}

.hero h1 strong {
  padding-right: 0.06em;
  font-size: clamp(5.6rem, 8.7vw, 8.9rem);
  line-height: 0.9;
  color: #f0d6a8;
  background:
    linear-gradient(180deg, #fff3d2 0%, #e2ba78 54%, #a96a2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 9px 35px rgba(0, 0, 0, 0.45);
}

.hero-description {
  max-width: 560px;
  margin: 24px 0 0;
  color: #b0b4b0;
  font-size: 0.9rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-ghost {
  color: #ddd9d1;
  border: 1px solid rgba(214, 164, 87, 0.45);
  background: rgba(5, 11, 11, 0.65);
}

.community-card {
  width: 286px;
  justify-self: end;
  margin-right: 12px;
  padding: 24px;
  border: 1px solid rgba(221, 157, 67, 0.55);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 55, 21, 0.2), transparent 15rem),
    rgba(6, 11, 11, 0.91);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 30px rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(8px);
}

.community-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.community-card header span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.community-card header i,
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.community-total {
  display: block;
  font-size: 4.4rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.community-card > small {
  display: block;
  margin-top: 6px;
  color: #858d89;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
}

.community-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid transparent;
}

.community-grid div {
  min-height: 88px;
  padding: 17px 14px 13px 0;
  border-bottom: 1px solid var(--border-soft);
}

.community-grid div:nth-child(odd) {
  border-right: 1px solid var(--border-soft);
}

.community-grid div:nth-child(even) {
  padding-left: 18px;
}

.community-grid strong,
.community-grid span {
  display: block;
}

.community-grid strong {
  font-size: 1.45rem;
}

.community-grid span {
  margin-top: 4px;
  color: #818985;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.community-card > a {
  min-height: 40px;
  margin-top: 17px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5b45d;
  border: 1px solid rgba(211, 154, 63, 0.22);
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 800;
}

/* =========================================================
   05 â€” THEMENLEISTE
   HTML: <section class="topic-bar">
   EnthÃ¤lt: Path of Exile 1/2, Builds, Anleitungen, Gilden und Handel
   ========================================================= */

.topic-bar {
  position: relative;
  z-index: 5;

  min-height: 58px;
  margin: 28px var(--content-pad) 0;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  overflow: hidden;

  color: #d0d1cb;
  border: 1px solid rgba(209, 154, 72, 0.35);
  border-radius: 9px;

  background: #07100f;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.topic-bar span {
  white-space: nowrap;
  font-size: 0.63rem;
  letter-spacing: 0.065em;
}

.topic-bar i {
  width: 1px;
  height: 16px;
  flex: 0 0 1px;
  background: rgba(255, 255, 255, 0.22);
}

/* =========================================================
   06 â€” GEMEINSAME SECTION-GRUNDLAGEN
   HTML: <section class="section"> und <header class="section-header">
   EnthÃ¤lt: gemeinsame AbstÃ¤nde, Ãœberschriften und Section-Trennlinien
   ========================================================= */

.section {
  padding: 82px var(--content-pad) 0;
}

.section + .section {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  margin-bottom: 28px;
}

.section-header-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 40px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.1vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-header p {
  margin: 0;
  color: #7f8783;
  font-size: 0.78rem;
  line-height: 1.7;
}

/* =========================================================
   07 â€” NEUIGKEITEN
   HTML: <section class="section" id="news">
   EnthÃ¤lt: Hauptmeldung, Meldungsliste, Vorschaubilder und Metadaten
   ========================================================= */

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.92fr);
  gap: 24px;
}

.news-feature {
  min-height: 530px;
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(220, 163, 84, 0.28);
  border-radius: 13px;
  background: #07100f;
}

.news-feature-media {
  position: relative;
  min-height: 330px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent 34%, rgba(2, 7, 7, 0.94)),
    radial-gradient(circle at 70% 25%, rgba(58, 94, 128, 0.22), transparent 25rem),
    #0b171e;
  background-size: cover;
  background-position: center;
}

.news-feature-media span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.65);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.news-feature-copy {
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, rgba(5, 10, 10, 0.9), #070c0c);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #707874;
  font-size: 0.6rem;
}

.news-feature-copy h3 {
  margin: 11px 0 6px;
  font-size: clamp(1.75rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.news-feature-copy p {
  margin: 0;
  color: #8f9692;
  font-size: 0.73rem;
  line-height: 1.65;
}

.news-feature-copy a {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  color: #d7d5ce;
  text-decoration: none;
  font-size: 0.68rem;
}

.news-feature-copy a span {
  color: var(--gold);
}

.news-list,
.news-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-list button,
.news-rail button {
  width: 100%;
  min-height: 82px;
  padding: 0;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 9px;
  background: #0a1111;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.news-list button:hover,
.news-list button.active,
.news-rail button:hover,
.news-rail button.active {
  transform: translateX(3px);
  border-color: rgba(221, 157, 67, 0.42);
  background: #101716;
}

.news-rail-thumb,
.news-list .news-rail-thumb {
  width: 100%;
  min-width: 0;
  min-height: 82px;
  align-self: stretch;
  border-radius: 0;
  background-color: #13201f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-rail-copy {
  min-width: 0;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-rail-copy small,
.news-list small {
  color: #df7d32;
  font-size: 0.56rem;
  font-weight: 800;
}

.news-rail-copy strong,
.news-list strong {
  margin-top: 4px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.77rem;
  line-height: 1.35;
}

.news-rail-copy time,
.news-list time {
  margin-top: 5px;
  color: #69716e;
  font-size: 0.54rem;
}

/* =========================================================
   08 — BUILDS / GAMING-OVERLAY-KARTEN
   Aufbau wie die Medienkarten: Bild vollständig im Hintergrund,
   Informationen als modernes Overlay. Keine Buttons oder Tabellen.
   ========================================================= */

#builds {
  position: relative;
}

.build-filters {
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.build-filter {
  min-height: 36px;
  padding: 0 14px;
  color: #9ba29e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(8, 16, 15, 0.72);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.build-filter:hover,
.build-filter.active {
  color: #fff0d4;
  border-color: rgba(218, 158, 67, 0.52);
  background:
    linear-gradient(
      180deg,
      rgba(211, 154, 63, 0.16),
      rgba(211, 154, 63, 0.055)
    ),
    #091110;
  transform: translateY(-1px);
}

.build-grid,
.build-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.build-card,
.build-card:first-child {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  grid-column: auto;
  grid-row: auto;
  color: inherit;
  border: 1px solid rgba(218, 158, 77, 0.32);
  border-radius: 10px;
  background: #08100f;
  text-decoration: none;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.build-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 171, 88, 0.58);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(211, 154, 63, 0.06);
}

.build-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-color: #101817;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.build-card:hover .build-card-media {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.build-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 7, 0.08) 0%,
      rgba(2, 7, 7, 0.08) 30%,
      rgba(2, 7, 7, 0.62) 64%,
      rgba(2, 7, 7, 0.98) 100%
    );
}

.build-card-badges {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.build-game,
.build-category {
  min-height: 24px;
  max-width: 49%;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #f8f2e8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(4, 9, 9, 0.76);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.build-card.is-poe2 .build-game {
  color: #ffe5b8;
  border-color: rgba(211, 154, 63, 0.58);
  background: rgba(94, 54, 17, 0.8);
}

.build-card.is-poe1 .build-game {
  color: #dcece8;
  border-color: rgba(102, 152, 143, 0.52);
  background: rgba(20, 65, 59, 0.78);
}

.build-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-width: 0;
  margin: 0;
  padding: 44px 12px 11px;
  border: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 7, 0),
      rgba(2, 7, 7, 0.84) 42%,
      rgba(2, 7, 7, 0.98) 100%
    );
}

.build-provider {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  color: #edb45b;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.9);
}

.build-provider span {
  flex: 0 0 auto;
  font-size: 0.68rem;
}

.build-card {
  min-height: 150px;
}

.build-card h3 {
  min-width: 0;
  margin: 4px 0 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.95);
}

.build-meta-line {
  margin: 5px 0 0;
  overflow: hidden;
  color: #e0e5e1;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.95);
}

.build-meta-line span {
  margin: 0 4px;
  color: #d6a24d;
}

.build-submitter {
  margin-top: 3px;
  display: block;
  overflow: hidden;
  color: #aab2ad;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.62rem;
  line-height: 1.2;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.95);
}

.build-description,
.build-details,
.build-card-actions,
.build-open,
.build-discord {
  display: none !important;
}

.build-empty {
  grid-column: 1 / -1;
  padding: 42px 24px;
  color: #79817d;
  border: 1px dashed rgba(211, 154, 63, 0.24);
  border-radius: 11px;
  text-align: center;
  font-size: 0.74rem;
}


/* =========================================================
   09 — MEDIEN / GAMING-OVERLAY-KARTEN
   Gleicher Stil wie die Builds:
   16:9, Vollbild-Hintergrund, dunkles Overlay, moderne Badges.
   ========================================================= */

#media {
  position: relative;
}

.media-grid,
.media-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.media-card,
.media-card:nth-child(n) {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  grid-column: auto;
  grid-row: auto;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(218, 158, 77, 0.32);
  border-radius: 10px;
  background: #08100f;
  cursor: pointer;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(229, 171, 88, 0.58);
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(211, 154, 63, 0.06);
  outline: none;
}

.media-card img,
.media-card video,
.media-preview-image,
.media-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform 320ms ease,
    filter 320ms ease;
}

.media-card:hover img,
.media-card:hover video,
.media-card:focus-visible img,
.media-card:focus-visible video {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.media-card-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 7, 0.08) 0%,
      rgba(2, 7, 7, 0.08) 30%,
      rgba(2, 7, 7, 0.62) 64%,
      rgba(2, 7, 7, 0.98) 100%
    );
}

.media-card-top {
  position: absolute;
  top: 9px;
  left: 9px;
  right: 9px;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
}

.media-type {
  min-height: 24px;
  max-width: 70%;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #f8f2e8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(4, 9, 9, 0.76);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.media-kind-youtube .media-type {
  color: #ffd9d4;
  border-color: rgba(226, 86, 67, 0.55);
  background: rgba(92, 27, 19, 0.78);
}

.media-kind-video .media-type {
  color: #ffe5b8;
  border-color: rgba(211, 154, 63, 0.58);
  background: rgba(94, 54, 17, 0.8);
}

.media-kind-image .media-type {
  color: #dcece8;
  border-color: rgba(102, 152, 143, 0.52);
  background: rgba(20, 65, 59, 0.78);
}

.media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 44px 12px 11px;
  background:
    linear-gradient(
      180deg,
      rgba(2, 7, 7, 0),
      rgba(2, 7, 7, 0.84) 42%,
      rgba(2, 7, 7, 0.98) 100%
    );
}

.media-overlay strong,
.media-overlay small {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.95);
}

.media-overlay strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.media-overlay small {
  margin-top: 4px;
  color: #aab2ad;
  font-size: 0.62rem;
  line-height: 1.2;
}

.play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 47%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(224, 169, 82, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 38% 28%,
      rgba(255, 255, 255, 0.11),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(23, 29, 27, 0.94),
      rgba(5, 10, 10, 0.96)
    );
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(211, 154, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.play::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: inherit;
  pointer-events: none;
}

.play i {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #f3bd64;
  filter: drop-shadow(0 0 8px rgba(226, 163, 68, 0.42));
  transition:
    transform 180ms ease,
    border-left-color 180ms ease;
}

.media-kind-youtube .play {
  border-color: rgba(224, 88, 68, 0.76);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(180, 48, 35, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.media-kind-youtube .play i {
  border-left-color: #f08b78;
  filter: drop-shadow(0 0 8px rgba(224, 88, 68, 0.42));
}

.media-card:hover .play,
.media-card:focus-visible .play {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: rgba(241, 193, 111, 0.95);
  background:
    radial-gradient(
      circle at 38% 28%,
      rgba(255, 255, 255, 0.15),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(39, 31, 19, 0.97),
      rgba(7, 12, 11, 0.98)
    );
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.62),
    0 0 0 7px rgba(211, 154, 63, 0.1),
    0 0 28px rgba(211, 154, 63, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.media-card:hover .play i,
.media-card:focus-visible .play i {
  transform: translateX(1px) scale(1.08);
  border-left-color: #ffd58f;
}

.media-kind-youtube:hover .play,
.media-kind-youtube:focus-visible .play {
  border-color: rgba(242, 119, 96, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.62),
    0 0 0 7px rgba(180, 48, 35, 0.12),
    0 0 28px rgba(224, 88, 68, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.media-kind-youtube:hover .play i,
.media-kind-youtube:focus-visible .play i {
  border-left-color: #ffc1b5;
}


/* =========================================================
   10 â€” DISCORD-LIVEBEREICH
   HTML: <section class="section live-section" id="live">
   EnthÃ¤lt: SprachkanÃ¤le, Mitglieder, Rollen und Statusanzeigen
   ========================================================= */

.live-section {
  padding-bottom: 40px;
}

.server-grid {
  display: grid;
  grid-template-columns: 0.92fr 0.92fr 1.25fr;
  gap: 14px;
}

.server-panel,
.roles-strip {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 10px;
  background: linear-gradient(180deg, #0a1211, #07100f);
}

.server-panel {
  min-height: 360px;
}

.server-panel > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.server-panel header span,
.roles-strip > span {
  color: #dca54a;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.server-panel h3 {
  margin: 4px 0 0;
  font-size: 0.87rem;
}

.server-panel header > strong {
  color: #7a827e;
  font-size: 0.56rem;
}

.voice-row,
.member-row {
  min-height: 45px;
  margin-bottom: 7px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.014);
}

.voice-icon,
.avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  object-fit: cover;
  border-radius: 6px;
  background: #1a2220;
}

.avatar {
  border-radius: 50%;
}

.row-copy {
  min-width: 0;
}

.row-copy strong,
.row-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.row-copy strong {
  font-size: 0.58rem;
}

.row-copy small {
  margin-top: 2px;
  color: #69716d;
  font-size: 0.54rem;
}

.row-value {
  margin-left: auto;
  color: #7e8682;
  font-size: 0.54rem;
}

.online-dot {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--green);
}

.role-cloud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.role {
  min-height: 43px;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.role-color {
  width: 4px;
  height: 24px;
  border-radius: 99px;
}

.role strong,
.role small {
  display: block;
}

.role strong {
  font-size: 0.62rem;
}

.role small {
  color: #707874;
  font-size: 0.5rem;
}

.role b {
  font-size: 0.63rem;
}

.roles-strip {
  margin-top: 14px;
}

.role-cloud-horizontal {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
}

.role-cloud-horizontal .role {
  min-width: 135px;
}

/* Prevent duplicate visible role entries when JS only populates roleList. */
#roleListMirror:empty {
  display: none;
}

/* =========================================================
   11 â€” BEITRETEN-BANNER
   HTML: <section class="join-banner" id="about">
   EnthÃ¤lt: Logo, Text und Discord-Beitrittsbutton
   ========================================================= */

.join-banner {
  position: relative;
  min-height: 150px;
  margin: 62px var(--content-pad) 0;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(223, 151, 55, 0.58);
  border-radius: 11px;
  background:
    linear-gradient(90deg, rgba(16, 10, 7, 0.98), rgba(39, 16, 9, 0.78) 60%, rgba(12, 10, 9, 0.86)),
    url("/assets/join-bg.jpg") center / cover no-repeat;
}

.join-banner::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: 70px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 82, 21, 0.24), transparent 65%);
}

.join-logo,
.join-copy,
.join-banner .button {
  position: relative;
  z-index: 2;
}

.join-logo img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.join-copy > span {
  color: #d59d3e;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.join-copy h2 {
  margin: 6px 0 3px;
  font-size: clamp(1.65rem, 3.1vw, 2.7rem);
  line-height: 1;
}

.join-copy p {
  margin: 0;
  color: #9b9e99;
  font-size: 0.7rem;
}

/* =========================================================
   12 â€” FOOTER
   HTML: <footer class="site-footer">
   EnthÃ¤lt: Footer-Logo, Rechtliches und Copyright
   ========================================================= */

.site-footer {
  min-height: 110px;
  margin: 46px var(--content-pad) 0;
  padding: 0 0 6px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #707875;
  font-size: 0.57rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  color: #777f7b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================================
   13 â€” MEDIEN-MODAL
   HTML: <div id="mediaModal" class="media-modal">
   EnthÃ¤lt: Vollbildansicht fÃ¼r Bilder, Videos und eingebettete Inhalte
   ========================================================= */

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 40px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
}

.media-modal[hidden] {
  display: none;
}

.media-modal button {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 2.4rem;
  cursor: pointer;
}

.media-modal img,
.media-modal video,
.media-modal iframe {
  max-width: min(1120px, 90vw);
  max-height: 84vh;
  border: 0;
  border-radius: 12px;
}

.media-modal iframe {
  width: min(1120px, 90vw);
  aspect-ratio: 16 / 9;
}

/* =========================================================
   14 â€” RESPONSIVE: KLEINER DESKTOP
   GÃ¼ltig bis 1180 px
   EnthÃ¤lt: Anpassungen fÃ¼r Hero-Raster und Hero-SchriftgrÃ¶ÃŸen
   ========================================================= */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
    gap: 38px;
  }

  .hero h1 span {
    font-size: clamp(3.8rem, 5.8vw, 5.8rem);
  }

  .hero h1 strong {
    font-size: clamp(5rem, 8vw, 7.8rem);
  }
}

/* =========================================================
   15 â€” RESPONSIVE: TABLET
   GÃ¼ltig bis 980 px
   EnthÃ¤lt: mobiles MenÃ¼, einspaltige Sections und Tablet-Raster
   ========================================================= */

@media (max-width: 980px) {
  .build-grid,
  .build-list {
    grid-template-columns: repeat(3, minmax(0,1fr));
    grid-template-rows: auto;
  }

  .build-card:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 260px;
  }

  .media-grid,
  .media-wall {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .media-card,
  .media-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .join-banner {
    grid-template-columns: 92px 1fr;
  }

  .join-banner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }
}

/* =========================================================
   16 â€” RESPONSIVE: SMARTPHONE
   GÃ¼ltig bis 620 px
   EnthÃ¤lt: mobile AbstÃ¤nde, Typografie, Karten und einspaltige Layouts
   ========================================================= */

@media (max-width: 620px) {
  :root {
    --content-pad: 16px;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding: 120px var(--content-pad) 70px;
    gap: 35px;
    background-position: 62% center;
  }

  .hero h1 span {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero h1 strong {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .hero-description {
    font-size: 0.82rem;
  }
.community-card {
    width: 100%;
  }

  .topic-bar {
    margin-inline: var(--content-pad);
  }

  .section {
    padding-top: 58px;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

  .news-feature {
    min-height: 470px;
    grid-template-rows: 255px auto;
  }

  .news-feature-media {
    min-height: 255px;
  }

  .news-list button,
  .news-rail button {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .news-rail-thumb,
  .news-list .news-rail-thumb {
    min-height: 88px;
  }

  .build-grid,
  .build-list,
  .media-grid,
  .media-wall {
    grid-template-columns: 1fr;
  }

  .build-card,
  .build-card:first-child {
    min-height: 220px;
    grid-column: auto;
  }

  .media-grid,
  .media-wall {
    grid-auto-rows: 240px;
  }

  .role-cloud {
    grid-template-columns: 1fr;
  }

  .join-banner {
    margin-inline: var(--content-pad);
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-logo img {
    margin: auto;
  }

  .join-banner .button {
    justify-self: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}



/* =========================================================
   17 â€” GLOBALER SEITENHINTERGRUND
   HTML: <body> und <div class="page-backdrop">
   EnthÃ¤lt: Wallpaper, Abdunklung, Leuchteffekt und Nebel
   ========================================================= */

body {
  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(4, 10, 10, 0.48),
      rgba(2, 8, 8, 0.72)
    ),
    #030707;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.12) 24%,
      rgba(0, 0, 0, 0.04) 50%,
      rgba(0, 0, 0, 0.12) 76%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 18, 18, 0.04),
      rgba(5, 12, 12, 0.38)
    );
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;

  background:
    linear-gradient(
      180deg,
      rgba(4, 10, 10, 0.48),
      rgba(2, 8, 8, 0.72)
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.12) 24%,
      rgba(0, 0, 0, 0.04) 50%,
      rgba(0, 0, 0, 0.12) 76%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    url("/assets/site-wallpaper.jpg") center top / cover no-repeat;

  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-shell {
  background:
    linear-gradient(
      180deg,
      rgba(5, 11, 11, 0.90),
      rgba(3, 8, 8, 0.94)
    );

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(0, 0, 0, 0.30),
    inset 0 0 80px rgba(40, 120, 90, 0.02);
}




body::after{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;

    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(255,120,40,.12),
            transparent 45%
        );

    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse{

    0%,100%{
        opacity:.45;
        transform:scale(1);
    }

    50%{
        opacity:.8;
        transform:scale(1.08);
    }

}


.fog {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    url("/assets/fog.png") repeat-x center center / auto 100%;

  opacity: 0.08;
  animation: fogMove 120s linear infinite;
  will-change: transform;
}

@keyframes fogMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-600px, 0, 0);
  }
}

/* =========================================================
   18 â€” BARRIEREFREIHEIT: BEWEGUNG REDUZIEREN
   GÃ¼ltig bei prefers-reduced-motion
   EnthÃ¤lt: Abschaltung der Hintergrundanimationen
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  body::after,
  .fog {
    animation: none;
  }
}

/* =========================================================
   19 â€” FEINSCHLIFF / BESTEHENDE ÃœBERSCHREIBUNGEN
   Betrifft: Hero, Discord-Icons und Community-Karte
   Wichtig: Diese Regeln Ã¼berschreiben bewusst frÃ¼here Werte
   ========================================================= */

.hero h1 {
  max-width: 590px;
}

.hero h1 span {
  font-size: clamp(3.55rem, 5.15vw, 5.35rem);
  line-height: 0.96;
}

.hero h1 strong {
  font-size: clamp(4.85rem, 7.3vw, 7.35rem);
  line-height: 0.91;
}

.discord-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  fill: currentColor;
}

.header-invite .discord-icon {
  width: 15px;
  height: 15px;
}

.community-card {
  border-color: rgba(222, 160, 71, 0.42);

  background:
    linear-gradient(
      145deg,
      rgba(15, 19, 18, 0.76),
      rgba(4, 10, 10, 0.62)
    );

  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 0 34px rgba(220, 149, 57, 0.025);

  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.community-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(229, 110, 33, 0.11),
      transparent 45%
    );
}

.community-card header {
  margin-bottom: 20px;
}

.community-card header span {
  color: #f1eadf;
}

.community-card > small,
.community-grid span {
  color: #929a96;
}

.community-grid {
  border-top-color: rgba(255, 255, 255, 0.075);
}

.community-grid div {
  border-bottom-color: rgba(255, 255, 255, 0.075);
}

.community-grid div:nth-child(odd) {
  border-right-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 1180px) {
  .hero h1 span {
    font-size: clamp(3.35rem, 5vw, 4.95rem);
  }

  .hero h1 strong {
    font-size: clamp(4.55rem, 7vw, 6.8rem);
  }
}

@media (max-width: 620px) {
  .hero h1 span {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .hero h1 strong {
    font-size: clamp(3.45rem, 18vw, 5rem);
  }
}

/* =========================================================
   20 â€” HERO-FIX: HELLER BILDSTREIFEN
   Betrifft: unteren Hero-Abschluss und FlÃ¤che vor der Themenleiste
   Wichtig: Nicht entfernen â€” verhindert das Durchscheinen des Hero-Bildes
   ========================================================= */

.hero {
  border-bottom: 0;
  background-color: #030808;
  box-shadow:
    inset 0 -6px 0 #030808,
    0 6px 0 #030808;
}

.hero::after {
  bottom: -4px;
  height: 260px;
  background:
    linear-gradient(
      180deg,
      rgba(3, 8, 8, 0) 0%,
      rgba(3, 8, 8, 0.75) 48%,
      #030808 76%,
      #030808 100%
    );
}

/* Deckt mÃ¶gliche Subpixel-LÃ¼cken zwischen Hero und FolgeflÃ¤che ab. */
.hero + .topic-bar {
  position: relative;
}

.hero + .topic-bar::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--content-pad));
  right: calc(-1 * var(--content-pad));
  top: -34px;
  height: 36px;
  z-index: -1;
  background: #030808;
}


/* =========================================================
   21 â€” ALTER HERO-TRENNLINIEN-FIX
   Betrifft: frÃ¼here border-bottom-LÃ¶sung
   Hinweis: Wird vom finalen Fix darunter Ã¼berschrieben
   ========================================================= */

.hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}


/* =========================================================
   22 â€” FINALER HERO-TRENNLINIEN-FIX
   Betrifft: sichtbare Linie unter dem Hero ohne hellen Bildstreifen
   Wichtig: Muss nach den vorherigen Hero-Regeln stehen
   ========================================================= */

/* Keine echte Border verwenden â€“ sie lÃ¤sst den Hero-Hintergrund wieder sichtbar wirken. */
.hero {
  border-bottom: 0 !important;
}

/* Die Linie liegt separat Ã¼ber der vollstÃ¤ndig dunklen AbschlussflÃ¤che. */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 1px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.055);
}

/* =========================================================
   23 — RESPONSIVE: BUILD-GAMING-KARTEN
   ========================================================= */

@media (max-width: 1100px) {
  .build-grid,
  .build-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .build-grid,
  .build-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .build-filters {
    margin-right: calc(-1 * var(--content-pad));
    padding-right: var(--content-pad);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .build-filters::-webkit-scrollbar {
    display: none;
  }

  .build-filter {
    flex: 0 0 auto;
  }

  .build-grid,
  .build-list {
    grid-template-columns: 1fr;
  }

  .build-card h3 {
    font-size: 1.2rem;
  }

  .build-meta-line {
    font-size: 0.76rem;
  }
}

/* =========================================================
   MEDIEN — RESPONSIVE GAMING-KARTEN
   ========================================================= */

@media (max-width: 1100px) {
  #media .media-grid,
  #media .media-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  #media .media-grid,
  #media .media-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  #media .media-grid,
  #media .media-wall {
    grid-template-columns: 1fr;
  }

  #media .media-overlay strong {
    font-size: 1.2rem;
  }

  #media .media-overlay small {
    font-size: 0.7rem;
  }
}



/* =========================================================
   23 — DISCORD SHOWCASE 2.0
   Moderner Community-Bereich ohne Änderungen am Backend.
   ========================================================= */

.live-section {
  position: relative;
  padding-bottom: 54px;
}

.live-section::before {
  content: "";
  position: absolute;
  inset: 90px 0 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 25%, rgba(38, 229, 138, 0.07), transparent 25rem),
    radial-gradient(circle at 83% 34%, rgba(211, 154, 63, 0.08), transparent 24rem);
}

.live-section-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.live-section-header p {
  margin-top: 8px;
}

.live-header-status {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #b9c5bf;
  border: 1px solid rgba(38, 229, 138, 0.18);
  border-radius: 999px;
  background: rgba(6, 16, 13, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.discord-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 16px;
}

.live-hero-card,
.discord-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 158, 77, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(11, 23, 20, .96), rgba(5, 13, 12, .98));
  box-shadow:
    0 24px 60px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.live-hero-card {
  min-height: 344px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
  grid-template-rows: 1fr auto;
  gap: 28px 30px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(5, 14, 12, .98) 0%, rgba(6, 19, 15, .91) 52%, rgba(12, 28, 22, .83) 100%),
    url('/assets/hero-bg.jpg') center 42% / cover no-repeat;
}

.live-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(211,154,63,.16), transparent 1px) 0 0 / 80px 100%,
    linear-gradient(rgba(255,255,255,.025), transparent 1px) 0 0 / 100% 80px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
  opacity: .16;
}

.live-hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -100px;
  top: -130px;
  border-radius: 50%;
  background: rgba(38,229,138,.12);
  filter: blur(85px);
  pointer-events: none;
}

.live-hero-copy,
.live-avatar-wall,
.live-stat-row {
  position: relative;
  z-index: 2;
}

.live-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7de6b3;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.live-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.live-hero-copy h3 {
  max-width: 560px;
  margin: 15px 0 10px;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.live-hero-copy h3 strong {
  color: #f2c56f;
  font-size: 1.18em;
}

.live-hero-copy p {
  max-width: 510px;
  margin: 0;
  color: #8e9994;
  font-size: .74rem;
  line-height: 1.7;
}

.live-avatar-wall {
  min-height: 154px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  background: rgba(2, 9, 8, .43);
  backdrop-filter: blur(8px);
}

.live-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #17201e;
  box-shadow: 0 8px 22px rgba(0,0,0,.32);
  transform: translateY(calc((var(--avatar-index, 0) % 3) * 2px));
  transition: transform .18s ease, box-shadow .18s ease;
}

.live-avatar:hover {
  z-index: 4;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.48), 0 0 0 1px rgba(211,154,63,.35);
}

.live-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.live-avatar b {
  color: #e8dfd0;
  font-size: .76rem;
}

.live-avatar > i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #09110f;
  border-radius: 50%;
  background: var(--green);
}

.live-avatar-more {
  color: #e7c173;
  border: 1px solid rgba(211,154,63,.25);
  background: rgba(211,154,63,.09);
  font-size: .68rem;
  font-weight: 900;
}

.live-stat-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
}

.live-stat-row > div {
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.live-stat-row > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.07);
}

.live-stat-row strong {
  color: #f3eee4;
  font-size: 1.42rem;
}

.live-stat-row span {
  color: #747e79;
  font-size: .58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.discord-panel {
  padding: 22px;
}

.discord-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.discord-panel-header span {
  color: #dca54a;
  font-size: .52rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.discord-panel-header h3 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 18px;
}

.signal-bars i {
  width: 3px;
  border-radius: 3px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(38,229,138,.36);
}
.signal-bars i:nth-child(1){height:7px}.signal-bars i:nth-child(2){height:12px}.signal-bars i:nth-child(3){height:18px}

.voice-list-modern {
  display: grid;
  gap: 9px;
}

.voice-card-modern {
  min-height: 59px;
  padding: 10px 11px;
  display: grid;
  grid-template-columns: 40px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: rgba(255,255,255,.018);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.voice-card-modern:hover {
  transform: translateX(3px);
  border-color: rgba(38,229,138,.22);
  background: rgba(38,229,138,.035);
}

.voice-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #90d9b8;
  border-radius: 9px;
  background: rgba(38,229,138,.08);
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.voice-card-copy {min-width:0}
.voice-card-copy strong,.voice-card-copy small{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
.voice-card-copy strong{font-size:.66rem}.voice-card-copy small{margin-top:2px;color:#6f7974;font-size:.53rem}
.voice-card-modern > b{color:#c9d4ce;font-size:.72rem}

.voice-meter {
  height: 2px;
  margin-top: 7px;
  display: block;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.055);
}
.voice-meter i{display:block;width:var(--voice-strength);height:100%;border-radius:inherit;background:linear-gradient(90deg,#217b56,var(--green));box-shadow:0 0 8px rgba(38,229,138,.3)}

.discord-community-grid {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 16px;
}

.member-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 9px;
}

.member-card-modern {
  min-width: 0;
  min-height: 64px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 9px;
  background: rgba(255,255,255,.015);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.member-card-modern:hover {
  transform: translateY(-2px);
  border-color: rgba(211,154,63,.24);
  background: rgba(211,154,63,.025);
}

.member-avatar-wrap {position:relative;flex:0 0 auto}
.member-avatar-wrap .avatar{width:38px;height:38px;flex-basis:38px;border-radius:10px}
.member-avatar-wrap > i{position:absolute;right:-2px;bottom:-2px;width:9px;height:9px;border:2px solid #09110f;border-radius:50%;background:var(--green)}
.member-card-modern .row-copy strong{font-size:.62rem}.member-card-modern .row-copy small{font-size:.51rem}

.role-cloud-modern {
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 9px;
}

.role-modern {
  position: relative;
  min-height: 64px;
  padding: 10px 11px;
  grid-template-columns: 4px minmax(0,1fr) auto;
  border-color: rgba(255,255,255,.065);
  border-radius: 9px;
  background: linear-gradient(100deg, color-mix(in srgb, var(--role-accent) 7%, transparent), rgba(255,255,255,.012));
  transition: transform .16s ease, border-color .16s ease;
}

.role-modern:hover {transform:translateY(-2px);border-color:color-mix(in srgb,var(--role-accent) 38%, transparent)}
.role-modern .role-color{height:34px;background:var(--role-accent)!important;box-shadow:0 0 12px color-mix(in srgb,var(--role-accent) 35%, transparent)}
.role-modern strong{font-size:.62rem}.role-modern small{margin-top:2px;font-size:.49rem}.role-modern b{font-size:.72rem}

.discord-empty {
  padding: 26px 18px;
  color: #76807b;
  border: 1px dashed rgba(211,154,63,.18);
  border-radius: 9px;
  text-align: center;
  font-size: .64rem;
}

@media (max-width: 1080px) {
  .discord-showcase {grid-template-columns: 1fr}
  .live-hero-card {grid-template-columns: 1fr .8fr}
  .discord-community-grid {grid-template-columns: 1fr}
  .member-grid-modern {grid-template-columns: repeat(3,minmax(0,1fr))}
}

@media (max-width: 760px) {
  .live-section-header {align-items:flex-start;flex-direction:column}
  .live-header-status {align-self:flex-start}
  .live-hero-card {padding:22px;grid-template-columns:1fr;gap:20px}
  .live-stat-row {grid-template-columns:1fr}
  .live-stat-row > div {padding:12px 0}
  .live-stat-row > div + div {padding-left:0;border-left:0;border-top:1px solid rgba(255,255,255,.07)}
  .member-grid-modern,.role-cloud-modern {grid-template-columns:1fr 1fr}
}

@media (max-width: 520px) {
  .member-grid-modern,.role-cloud-modern {grid-template-columns:1fr}
  .discord-panel {padding:16px}
  .live-avatar {width:42px;height:42px;border-radius:11px}
}


/* =========================================================
   24 — GEMEINSAMER GLOBALER HEADER
   Header über die volle Browserbreite, Seiteninhalt bleibt gerahmt.
   ========================================================= */

.site-header {
  top: 0;
  left: 0;
  right: 0;
  transform: none;

  width: 100%;
  min-height: 74px;

  padding-left:
    max(
      var(--content-pad),
      calc((100vw - var(--shell-width)) / 2 + var(--content-pad))
    );
  padding-right:
    max(
      var(--content-pad),
      calc((100vw - var(--shell-width)) / 2 + var(--content-pad))
    );

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;

  background: rgba(3, 8, 8, 0.9);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(211, 154, 63, 0.045);
}

.site-shell {
  margin-top: 8px;
}

main {
  padding-top: 74px;
}


/* =========================================================
   25 — KOMPAKTER HERO UND ABSTÄNDE
   Weniger Leerraum unter Header und Online-Zeile.
   ========================================================= */

.hero {
  min-height: 610px;
  padding: 42px var(--content-pad) 46px;
}

.topic-bar {
  min-height: 46px;
  margin: 10px var(--content-pad) 0;
  padding-inline: 16px;
  gap: 14px;
}

.topic-bar span {
  font-size: 0.58rem;
}

.topic-bar i {
  height: 12px;
  opacity: 0.72;
}

.section {
  padding-top: 62px;
}

.section + .section {
  margin-top: 20px;
}


/* =========================================================
   26 — DISCORD-BEREICH ALS COMMUNITY-SHOWCASE
   ========================================================= */

#live {
  position: relative;
  margin-top: 34px;
  padding-top: 72px;
  padding-bottom: 54px;
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(26, 87, 73, 0.09),
      transparent 34rem
    );
}

#live::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--content-pad);
  right: var(--content-pad);
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(211, 154, 63, 0.28),
      transparent
    );
}

#live .live-section-header {
  margin-bottom: 32px;
}

#media {
  margin-top: 10px;
}

.join-banner {
  margin-top: 72px;
}


/* =========================================================
   27 — COOKIE-/DATENSCHUTZ-BANNER
   Wird von der Cookie-Logik in app.js erzeugt.
   ========================================================= */

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 220ms ease;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-visible {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.54);
}

.cookie-panel {
  position: relative;
  width: min(1080px, 100%);
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  overflow: hidden;
  border: 1px solid rgba(218, 158, 77, 0.52);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(117, 58, 19, 0.2),
      transparent 24rem
    ),
    linear-gradient(
      145deg,
      rgba(10, 19, 18, 0.985),
      rgba(3, 9, 9, 0.995)
    );
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: translateY(28px);
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.cookie-consent.is-visible .cookie-panel {
  transform: translateY(0);
  opacity: 1;
}

.cookie-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background:
    linear-gradient(
      180deg,
      #f0be68,
      #d78331 55%,
      #7d3514
    );
  box-shadow: 0 0 18px rgba(211, 154, 63, 0.32);
}

.cookie-panel__signal {
  position: absolute;
  top: 17px;
  right: 19px;
  display: flex;
  align-items: end;
  gap: 3px;
  opacity: 0.68;
}

.cookie-panel__signal i {
  width: 3px;
  border-radius: 99px;
  background: #d69b41;
}

.cookie-panel__signal i:nth-child(1) {
  height: 7px;
}

.cookie-panel__signal i:nth-child(2) {
  height: 12px;
}

.cookie-panel__signal i:nth-child(3) {
  height: 17px;
}

.cookie-panel__copy {
  min-width: 0;
}

.cookie-kicker {
  display: block;
  margin-bottom: 7px;
  color: #dca44c;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-panel h2 {
  margin: 0;
  color: #f5eee3;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.cookie-panel p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #9fa7a3;
  font-size: 0.74rem;
  line-height: 1.65;
}

.cookie-details {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.cookie-details[hidden] {
  display: none;
}

.cookie-option {
  min-height: 62px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
}

.cookie-option--locked {
  cursor: default;
  opacity: 0.72;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: #e8e2d8;
  font-size: 0.7rem;
}

.cookie-option small {
  margin-top: 3px;
  color: #77807c;
  font-size: 0.59rem;
  line-height: 1.45;
}

.cookie-option input {
  width: 38px;
  height: 21px;
  accent-color: #d99d42;
  cursor: pointer;
}

.cookie-option input:disabled {
  cursor: default;
}

.cookie-links {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-links a {
  color: #b8aea0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cookie-links a:hover,
.cookie-links a:focus-visible {
  color: #efc06d;
}

.cookie-panel__actions {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.cookie-button {
  min-height: 39px;
  padding: 0 15px;
  border-radius: 7px;
  font: inherit;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button--ghost {
  color: #c9c5bc;
  border: 1px solid rgba(211, 154, 63, 0.25);
  background: rgba(8, 15, 14, 0.74);
}

.cookie-button--ghost:hover,
.cookie-button--ghost:focus-visible {
  color: #fff1d8;
  border-color: rgba(225, 169, 85, 0.52);
}

.cookie-button--primary {
  color: #fff;
  border: 1px solid rgba(246, 126, 55, 0.38);
  background:
    linear-gradient(
      135deg,
      #f06323,
      #d94713
    );
  box-shadow: 0 11px 28px rgba(227, 79, 24, 0.2);
}

.cookie-button[hidden] {
  display: none;
}

body.cookie-consent-open {
  overflow: hidden;
}


/* =========================================================
   28 — RESPONSIVE FINALE ANPASSUNGEN
   ========================================================= */

@media (max-width: 980px) {
  .site-header {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 760px) {
  .cookie-consent {
    padding: 10px;
  }

  .cookie-panel {
    max-height: calc(100vh - 20px);
    padding: 20px 17px 17px;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow-y: auto;
  }

  .cookie-panel__actions {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-button--primary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    padding-left: 16px;
    padding-right: 16px;
  }

  main {
    padding-top: 66px;
  }

  .hero {
    min-height: auto;
    padding: 92px var(--content-pad) 54px;
  }

  .topic-bar {
    min-height: 42px;
    margin-top: 8px;
    padding-inline: 12px;
  }

  .section {
    padding-top: 58px;
  }

  #live {
    margin-top: 22px;
    padding-top: 62px;
    padding-bottom: 42px;
  }

  .join-banner {
    margin-top: 56px;
  }
}

@media (max-width: 430px) {
  .cookie-panel__actions {
    grid-template-columns: 1fr;
  }

  .cookie-button--primary {
    grid-column: auto;
  }
}

/* =========================================================
   29 — HERO-AVATARE, STATUSZEILE UND TOOLTIP
   Bereinigte finale Version ohne doppelte Überschreibungen.
   ========================================================= */

.hero {
  overflow: visible;
}

.hero-proof {
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.hero-proof__copy {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  padding-left: 10px; /* bündig mit dem ersten Avatar */

  text-align: left;
  white-space: nowrap;
}

.hero-proof__copy strong {
  display: inline-flex;
  align-items: center;
  margin: 0;

  color: #e7c173;
  font-size: 0.8rem;
  line-height: 1;
}

.hero-proof__copy strong #online {
  margin-right: 6px;
}

.hero-proof__copy small {
  display: inline-flex;
  align-items: center;
  margin: 0;

  color: #6d7572;
  font-size: 0.65rem;
  line-height: 1;
}

.hero-proof__copy small::before {
  content: "•";
  margin-right: 10px;
  color: rgba(211, 154, 63, 0.75);
}

.hero-avatars {
  min-height: 48px;
  padding-left: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: visible;
}

.hero-avatar {
  position: relative;
  z-index: calc(30 - var(--hero-avatar-index, 0));

  width: 44px;
  height: 44px;
  margin-left: -10px;
  flex: 0 0 44px;

  display: grid;
  place-items: center;
  overflow: visible;

  color: #f4e7cc;
  border: 2px solid #08100f;
  border-radius: 50%;
  background: #18201f;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(211, 154, 63, 0.12);

  cursor: default;
  outline: none;

  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.hero-avatar:first-child {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  z-index: 40;
}

.hero-avatar:hover,
.hero-avatar:focus-visible {
  z-index: 1000;
  transform: translateY(-5px) scale(1.08);
  border-color: rgba(235, 178, 89, 0.9);
  box-shadow:
    0 13px 28px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(211, 154, 63, 0.18);
}

.hero-avatar > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.hero-avatar > b {
  font-size: 0.76rem;
}

.hero-avatar__status {
  position: absolute;
  right: -1px;
  bottom: 1px;
  z-index: 2;

  width: 10px;
  height: 10px;

  border: 2px solid #08100f;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(38, 229, 138, 0.7);
}

.hero-avatar--more {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background:
    linear-gradient(
      145deg,
      rgba(90, 58, 22, 0.96),
      rgba(18, 24, 22, 0.98)
    );
}

/* Status und Aktualisierung stehen gemeinsam in genau einer Zeile. */
.hero-proof__copy {
  width: max-content;
  max-width: 100%;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-align: center;
  white-space: nowrap;
}

.hero-proof__copy strong,
.hero-proof__copy small {
  margin: 0;
  padding: 0;

  display: inline-flex;
  align-items: center;

  white-space: nowrap;
}

.hero-proof__copy strong {
  color: #e7c173;
  font-size: 0.8rem;
  line-height: 1.2;
}

.hero-proof__copy small {
  color: #6d7572;
  font-size: 0.65rem;
  line-height: 1.2;
}

.hero-proof__copy small::before {
  content: "–";
  margin-right: 8px;
  color: #d39a3f;
}

/* Tooltip */
.hero-avatar-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);

  width: 220px;
  min-width: 220px;
  max-width: 220px;
  height: auto;
  margin: 0;
  padding: 12px 14px;

  display: block;
  overflow: visible;

  color: #f5eee3;
  text-align: left;
  line-height: 1.4;

  border: 1px solid rgba(218, 158, 77, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(116, 61, 20, 0.18),
      transparent 9rem
    ),
    linear-gradient(
      145deg,
      rgba(12, 20, 19, 0.985),
      rgba(3, 9, 9, 0.995)
    );

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 7px);

  transition:
    opacity 150ms ease,
    transform 150ms ease,
    visibility 150ms ease;
}

.hero-avatar-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;

  width: 10px;
  height: 10px;

  border-right: 1px solid rgba(218, 158, 77, 0.5);
  border-bottom: 1px solid rgba(218, 158, 77, 0.5);
  background: #07100f;

  transform: translate(-50%, -5px) rotate(45deg);
}

.hero-avatar:hover > .hero-avatar-tooltip,
.hero-avatar:focus-visible > .hero-avatar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero-avatar-tooltip > strong,
.hero-avatar-tooltip > small,
.hero-avatar-tooltip > em {
  position: static;
  inset: auto;

  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;

  margin: 0;
  padding: 0;

  display: block;
  overflow: visible;

  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;

  transform: none;
  white-space: normal;
}

.hero-avatar-tooltip > strong {
  color: #f5eee3;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.hero-avatar-tooltip > small {
  margin-top: 5px;
  color: #909995;
  font-size: 0.61rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.hero-avatar-tooltip > em {
  margin-top: 9px;

  display: flex;
  align-items: center;
  gap: 6px;

  color: #8ea69b;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-avatar-tooltip > em > i {
  position: static;

  width: 6px;
  height: 6px;
  min-width: 6px;
  min-height: 6px;
  flex: 0 0 6px;

  margin: 0;
  padding: 0;

  display: block;

  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(38, 229, 138, 0.6);
}

/* Erster Tooltip öffnet nach rechts und wird nicht am linken Rahmen abgeschnitten. */
.hero-avatar:first-child .hero-avatar-tooltip {
  left: 0;
  transform: translateY(7px);
}

.hero-avatar:first-child:hover > .hero-avatar-tooltip,
.hero-avatar:first-child:focus-visible > .hero-avatar-tooltip {
  transform: translateY(0);
}

.hero-avatar:first-child .hero-avatar-tooltip::after {
  left: 22px;
  transform: translateY(-5px) rotate(45deg);
}

/* Letzter Tooltip öffnet nach links, falls die Avatarreihe sehr breit wird. */
.hero-avatar:last-child .hero-avatar-tooltip {
  right: 0;
  left: auto;
  transform: translateY(7px);
}

.hero-avatar:last-child:hover > .hero-avatar-tooltip,
.hero-avatar:last-child:focus-visible > .hero-avatar-tooltip {
  transform: translateY(0);
}

.hero-avatar:last-child .hero-avatar-tooltip::after {
  right: 22px;
  left: auto;
  transform: translateY(-5px) rotate(45deg);
}

@media (max-width: 620px) {
  .hero-proof {
    width: 100%;
    margin-top: 30px;
  }

  .hero-avatars {
    max-width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }

  .hero-avatars::-webkit-scrollbar {
    display: none;
  }

  .hero-proof__copy {
    width: 100%;
    max-width: 100%;
    gap: 6px;
    white-space: nowrap;
  }

  .hero-proof__copy strong {
    font-size: 0.74rem;
  }

  .hero-proof__copy small {
    font-size: 0.59rem;
  }

  .hero-avatar-tooltip {
    width: 190px;
    min-width: 190px;
    max-width: 190px;
  }
}

.media-overlay {
  padding: 54px 12px 13px;
}
.join-banner {
  min-height: 165px;
}
.site-footer {
  border-top-color: rgba(211, 154, 63, 0.16);
}
.site-footer {
  margin-top: 54px;
}



.hero-proof {
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.hero-proof__copy {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;

  padding-left: 10px; /* bündig mit dem ersten Avatar */

  text-align: left;
  white-space: nowrap;
}

.hero-proof__copy strong {
  display: inline-flex;
  align-items: center;
  margin: 0;

  color: #e7c173;
  font-size: 0.8rem;
  line-height: 1;
}

.hero-proof__copy strong #online {
  margin-right: 4px;
}

.hero-proof__copy small {
  display: inline-flex;
  align-items: center;
  margin: 0;

  color: #6d7572;
  font-size: 0.65rem;
  line-height: 1;
}

.hero-proof__copy small::before {
  content: "•";
  margin-right: 10px;
  color: rgba(211, 154, 63, 0.75);
}
/* =========================================================
   23 — FINALER NEWS-BEREICH-FIX
   Gleiche Gesamthöhe für Hauptmeldung und News-Liste.
   Lange Discord-Texte werden sauber begrenzt.
   ========================================================= */

@media (min-width: 981px) {
  .news-layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.95fr);
    align-items: stretch;
  }

  .news-feature {
    height: 540px;
    min-height: 0;
    grid-template-rows: 300px minmax(0, 1fr);
  }

  .news-feature-media {
    min-height: 0;
  }

  .news-feature-copy {
    min-height: 0;
    padding: 20px 24px 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .news-feature-copy h3 {
    margin: 10px 0 7px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: clamp(1.65rem, 2.15vw, 2.15rem);
    line-height: 1.08;
  }

  .news-feature-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .news-feature-copy a {
    margin-top: auto;
    padding-top: 14px;
  }

  .news-list,
  .news-rail {
    height: 540px;
    display: grid;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .news-list button,
  .news-rail button {
    min-height: 0;
    height: 100%;
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .news-rail-thumb,
  .news-list .news-rail-thumb {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 980px) {
  .news-layout {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   24 — NEWS-FIX: TEXTUMBRUCH UND KLEINERER TITEL
   Nur ergänzende Überschreibungen. Bestehende Regeln bleiben erhalten.
   ========================================================= */

.news-feature-copy h3 {
  font-size: clamp(1.3rem, 1.75vw, 1.75rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.news-feature-copy p {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

/* =========================================================
   26 — NEWS-LINKS
   Nur ergänzende Regeln. Bestehende CSS-Regeln bleiben erhalten.
   ========================================================= */

#newsMainText .news-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#newsMainText .news-inline-link {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e7c17e;
  border: 1px solid rgba(211, 154, 63, 0.3);
  border-radius: 6px;
  background: rgba(211, 154, 63, 0.07);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

#newsMainText .news-inline-link:hover,
#newsMainText .news-inline-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(229, 171, 88, 0.58);
  background: rgba(211, 154, 63, 0.13);
  outline: none;
}

/* =========================================================
   27 — NEWS-BEREICH: KOMPAKTE LINK-DARSTELLUNG
   Nur ergänzende Überschreibungen. Bestehende Regeln bleiben erhalten.
   ========================================================= */

.news-feature-copy {
  display: flex;
  flex-direction: column;
  min-height: 205px;
}

.news-feature-copy h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.2rem, 1.45vw, 1.5rem);
  line-height: 1.18;
}

#newsMainText {
  margin: 0;
}

#newsMainText:empty {
  display: none;
}

#newsMainText .news-text-line {
  margin-top: 0.45em;
}

#newsMainText .news-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#newsMainText .news-inline-link {
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d9aa59;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

#newsMainText .news-inline-link:hover,
#newsMainText .news-inline-link:focus-visible {
  transform: none;
  color: #f0c97f;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-feature-copy > #newsMainLink {
  margin-top: auto;
  padding-top: 18px;
  align-self: flex-start;
}

/* =========================================================
   28 — HEUTE IM CHAOS
   Kompakter Live-Überblick zwischen Themenleiste und News.
   Bestehende Regeln bleiben unverändert.
   ========================================================= */

.chaos-today {
  position: relative;
  margin: 34px var(--content-pad) 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(211, 154, 63, 0.3);
  border-radius: 13px;
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 154, 63, 0.09), transparent 19rem),
    radial-gradient(circle at 90% 100%, rgba(38, 229, 138, 0.045), transparent 18rem),
    linear-gradient(145deg, rgba(10, 19, 18, 0.97), rgba(4, 11, 10, 0.98));
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.chaos-today::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 70px 100%;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.chaos-today__heading,
.chaos-today__grid,
.chaos-today__pulse {
  position: relative;
  z-index: 1;
}

.chaos-today__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.chaos-today__heading .section-kicker {
  margin-bottom: 8px;
}

.chaos-today__heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.chaos-today__live {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aeb8b3;
  border: 1px solid rgba(38, 229, 138, 0.18);
  border-radius: 999px;
  background: rgba(5, 17, 13, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chaos-today__live i,
.chaos-today__pulse i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(38, 229, 138, 0.8);
}

.chaos-today__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.chaos-today__card {
  position: relative;
  min-width: 0;
  min-height: 88px;
  padding: 15px 14px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
  text-decoration: none;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    box-shadow 170ms ease;
}

.chaos-today__card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: opacity 170ms ease;
}

.chaos-today__card:hover,
.chaos-today__card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(211, 154, 63, 0.38);
  background: rgba(211, 154, 63, 0.055);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.22);
  outline: none;
}

.chaos-today__card:hover::after,
.chaos-today__card:focus-visible::after {
  opacity: 1;
}

.chaos-today__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #e9b75f;
  border: 1px solid rgba(211, 154, 63, 0.27);
  border-radius: 8px;
  background: rgba(211, 154, 63, 0.07);
  font-size: 0.63rem;
  font-weight: 950;
}

.chaos-today__card--live .chaos-today__icon {
  color: var(--green);
  border-color: rgba(38, 229, 138, 0.22);
  background: rgba(38, 229, 138, 0.055);
  font-size: 0.72rem;
}

.chaos-today__copy {
  min-width: 0;
}

.chaos-today__copy strong,
.chaos-today__copy small {
  display: block;
}

.chaos-today__copy strong {
  color: #f8f2e8;
  font-size: 1.65rem;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.chaos-today__copy small {
  margin-top: 6px;
  overflow: hidden;
  color: #78817d;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.chaos-today__arrow {
  color: #59615e;
  font-size: 0.9rem;
  transition: color 170ms ease, transform 170ms ease;
}

.chaos-today__card:hover .chaos-today__arrow,
.chaos-today__card:focus-visible .chaos-today__arrow {
  color: #e4b361;
  transform: translateX(2px);
}

.chaos-today__pulse {
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: #727b77;
  font-size: 0.59rem;
}

.chaos-today__pulse > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.chaos-today__pulse strong {
  color: #bbc2be;
}

.chaos-today__time {
  margin-left: auto;
}

@media (max-width: 900px) {
  .chaos-today__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .chaos-today {
    margin-top: 24px;
    padding: 18px;
  }

  .chaos-today__heading {
    align-items: flex-start;
  }

  .chaos-today__live {
    min-height: 28px;
    padding-inline: 9px;
  }

  .chaos-today__grid {
    grid-template-columns: 1fr;
  }

  .chaos-today__card {
    min-height: 76px;
  }

  .chaos-today__pulse {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chaos-today__time {
    margin-left: 0;
  }
}

/* =========================================================
   25 — ATMOSPHÄRE UND INTERAKTIVER FEINSCHLIFF
   Nur ergänzende Regeln. Bestehende Bereiche bleiben erhalten.
   ========================================================= */

/* Sehr dezente Asche im Hero */
.hero-ash {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 24%,
    #000 48%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 24%,
    #000 48%,
    #000 92%,
    transparent 100%
  );
}

.hero-ash__particle {
  position: absolute;
  left: var(--ash-left);
  bottom: -16px;
  width: var(--ash-size);
  height: var(--ash-size);
  border-radius: 50%;
  opacity: 0;
  background: rgba(236, 154, 69, 0.8);
  box-shadow:
    0 0 7px rgba(236, 154, 69, 0.56),
    0 0 16px rgba(218, 93, 31, 0.18);
  animation:
    heroAshRise var(--ash-duration) linear var(--ash-delay) infinite,
    heroAshFlicker 2.8s ease-in-out var(--ash-delay) infinite;
}

@keyframes heroAshRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }

  12% {
    opacity: var(--ash-opacity);
  }

  78% {
    opacity: calc(var(--ash-opacity) * 0.72);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--ash-drift), calc(-1 * var(--ash-rise)), 0)
      scale(1.15);
  }
}

@keyframes heroAshFlicker {
  0%,
  100% {
    filter: brightness(0.72);
  }

  50% {
    filter: brightness(1.28);
  }
}

/* "Heute im Chaos" stärker wie eine lebendige Statusleiste */
.chaos-today__card {
  isolation: isolate;
}

.chaos-today__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      240px circle at var(--spot-x, 50%) var(--spot-y, 50%),
      rgba(226, 164, 76, 0.14),
      transparent 64%
    );
  transition: opacity 180ms ease;
}

.chaos-today__card:hover::before,
.chaos-today__card:focus-visible::before {
  opacity: 1;
}

.chaos-today__icon {
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.chaos-today__icon::after {
  content: "";
  position: absolute;
  inset: -60% -120%;
  transform: rotate(24deg) translateX(-60%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.16),
    transparent
  );
  transition: transform 520ms ease;
}

.chaos-today__card:hover .chaos-today__icon::after,
.chaos-today__card:focus-visible .chaos-today__icon::after {
  transform: rotate(24deg) translateX(62%);
}

/* Mausabhängiger, sehr zurückhaltender Lichtpunkt auf wichtigen Karten */
.build-card,
.media-card,
.news-list button,
.discord-panel,
.live-hero-card {
  --spot-x: 50%;
  --spot-y: 50%;
}

.build-card::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      300px circle at var(--spot-x) var(--spot-y),
      rgba(238, 181, 91, 0.12),
      transparent 65%
    );
  transition: opacity 180ms ease;
}

.build-card:hover::before,
.media-card:hover::before,
.build-card:focus-visible::before,
.media-card:focus-visible::before {
  opacity: 1;
}

/* Sections erscheinen beim Scrollen ruhig und hochwertig */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(.22, .8, .24, 1),
    transform 620ms cubic-bezier(.22, .8, .24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Aktiver Navigationspunkt */
.main-nav a.is-current {
  color: #fff4df;
  text-shadow: 0 0 10px rgba(242, 197, 111, 0.18);
}

.main-nav a.is-current::after {
  width: 100%;
}

/* Auf Touch-Geräten keine unnötigen Maus-Effekte */
@media (hover: none) {
  .chaos-today__card::before,
  .build-card::before,
  .media-card::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ash {
    display: none;
  }

  .reveal-ready,
  .reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chaos-today__icon::after {
    transition: none;
  }
}

/* =========================================================
   26 — EXTERNER-LINK-DIALOG
   Transparenter Hinweis vor dem Verlassen von EXILECHAOS.
   ========================================================= */

.external-link-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  padding: 22px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(219, 130, 45, 0.11),
      transparent 34rem
    ),
    rgba(0, 4, 4, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.external-link-modal[hidden] {
  display: none;
}

.external-link-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(218, 158, 77, 0.48);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(225, 99, 31, 0.12),
      transparent 19rem
    ),
    linear-gradient(
      145deg,
      rgba(11, 22, 20, 0.985),
      rgba(3, 10, 9, 0.995)
    );
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.68),
    0 0 40px rgba(211, 154, 63, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  animation: externalDialogIn 190ms ease-out both;
}

.external-link-dialog::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(225, 168, 81, 0.68),
      transparent
    );
}

.external-link-close {
  position: absolute;
  top: 14px;
  right: 15px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #87908b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.external-link-close:hover,
.external-link-close:focus-visible {
  color: #fff4df;
  border-color: rgba(218, 158, 77, 0.42);
  background: rgba(218, 158, 77, 0.08);
  transform: rotate(4deg);
  outline: none;
}

.external-link-brand {
  padding-right: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.external-link-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(218, 158, 77, 0.32);
  border-radius: 50%;
  background: rgba(211, 154, 63, 0.055);
  box-shadow:
    0 0 0 5px rgba(211, 154, 63, 0.025),
    0 10px 22px rgba(0, 0, 0, 0.3);
}

.external-link-logo img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

.external-link-brand strong,
.external-link-brand small {
  display: block;
}

.external-link-brand strong {
  color: #f2ede3;
  font-size: 0.76rem;
  letter-spacing: 0.045em;
}

.external-link-brand small {
  margin-top: 2px;
  color: #727b76;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.external-link-symbol {
  width: 64px;
  height: 64px;
  margin: 28px auto 17px;
  display: grid;
  place-items: center;
  color: #e6ae55;
  border: 1px solid rgba(218, 158, 77, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 38% 27%,
      rgba(255, 255, 255, 0.08),
      transparent 38%
    ),
    rgba(211, 154, 63, 0.06);
  box-shadow:
    0 0 0 7px rgba(211, 154, 63, 0.025),
    0 16px 36px rgba(0, 0, 0, 0.33);
}

.external-link-symbol svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.external-link-provider {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 5px 9px;
  display: block;
  overflow: hidden;
  color: #e9b762;
  border: 1px solid rgba(218, 158, 77, 0.26);
  border-radius: 999px;
  background: rgba(211, 154, 63, 0.055);
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.085em;
}

.external-link-dialog h2 {
  margin: 13px 0 0;
  text-align: center;
  color: #f5f0e7;
  font-size: clamp(1.65rem, 4.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.external-link-description {
  max-width: 455px;
  margin: 14px auto 0;
  color: #929b96;
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.68;
}

.external-link-target {
  margin-top: 23px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 14px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
}

.external-link-target > span {
  grid-column: 1 / -1;
  color: #69736e;
  font-size: 0.51rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.external-link-target strong {
  min-width: 0;
  overflow: hidden;
  color: #e9e5dc;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.72rem;
}

.external-link-target small {
  max-width: 190px;
  overflow: hidden;
  color: #d39a3f;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: right;
  font-size: 0.61rem;
}

.external-link-remember {
  margin-top: 15px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: flex-start;
  gap: 11px;
  color: #9ba39e;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.012);
  cursor: pointer;
}

.external-link-remember input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: #d39a3f;
}

.external-link-remember strong,
.external-link-remember small {
  display: block;
}

.external-link-remember strong {
  color: #d8d7d1;
  font-size: 0.67rem;
}

.external-link-remember small {
  margin-top: 3px;
  color: #747d78;
  font-size: 0.58rem;
  line-height: 1.5;
}

.external-link-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

.external-link-button {
  min-height: 43px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  font: inherit;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.external-link-button:hover,
.external-link-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.external-link-button--cancel {
  color: #b2b7b3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.external-link-button--cancel:hover,
.external-link-button--cancel:focus-visible {
  color: #f2eee5;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.external-link-button--confirm {
  color: #fff;
  border: 1px solid rgba(244, 127, 48, 0.75);
  background:
    linear-gradient(135deg, #f06323, #d94713);
  box-shadow:
    0 11px 26px rgba(227, 79, 24, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.external-link-button--confirm:hover,
.external-link-button--confirm:focus-visible {
  border-color: rgba(255, 167, 101, 0.9);
  box-shadow:
    0 15px 34px rgba(227, 79, 24, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.external-link-button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@keyframes externalDialogIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .external-link-modal {
    padding: 12px;
    align-items: end;
  }

  .external-link-dialog {
    padding: 25px 18px 19px;
    border-radius: 15px;
  }

  .external-link-symbol {
    margin-top: 23px;
  }

  .external-link-target {
    grid-template-columns: 1fr;
  }

  .external-link-target small {
    max-width: 100%;
    text-align: left;
  }

  .external-link-actions {
    grid-template-columns: 1fr;
  }

  .external-link-button--confirm {
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .external-link-dialog {
    animation: none;
  }

  .external-link-button,
  .external-link-close {
    transition: none;
  }
}

/* =========================================================
   30 — MOBILE FINAL FIX
   Ausschließlich ergänzende Überschreibungen für Tablet und Smartphone.
   Desktop-Design und bestehende Regeln bleiben unangetastet.
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

/* Ankerziele verschwinden nicht unter dem festen Header. */
#start,
#today,
#news,
#builds,
#live,
#media,
#about {
  scroll-margin-top: 92px;
}

/* ---------------------------------------------------------
   TABLET / MOBILE NAVIGATION
   --------------------------------------------------------- */

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
    min-height: 70px;
    padding: 0 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .site-header .brand {
    min-width: 0;
    max-width: calc(100vw - 104px);
  }

  .site-header .brand span {
    min-width: 0;
  }

  .site-header .brand strong,
  .site-header .brand small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-invite {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #f4eee3;
    border: 1px solid rgba(211, 154, 63, 0.3);
    border-radius: 9px;
    background:
      linear-gradient(
        180deg,
        rgba(211, 154, 63, 0.09),
        rgba(211, 154, 63, 0.025)
      ),
      rgba(4, 11, 10, 0.95);
    box-shadow:
      0 10px 26px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.035);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition:
      transform 180ms ease,
      top 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle span:first-child {
    top: 16px;
  }

  .nav-toggle span:last-child {
    top: 25px;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 88px;
    left: 12px;
    right: 12px;
    z-index: 1001;
    max-height: calc(100dvh - 104px);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--text);
    border: 1px solid rgba(211, 154, 63, 0.34);
    border-radius: 13px;
    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(229, 102, 31, 0.1),
        transparent 18rem
      ),
      rgba(3, 10, 9, 0.985);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.66),
      inset 0 1px 0 rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d6d7d1;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
  }

  .main-nav a::after {
    position: static;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    transform: none;
    border-radius: 50%;
    opacity: 0.28;
    background: var(--gold);
    box-shadow: 0 0 9px rgba(211, 154, 63, 0.38);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-current,
  .main-nav a.active {
    color: #fff4df;
    border-color: rgba(211, 154, 63, 0.22);
    background: rgba(211, 154, 63, 0.06);
    outline: none;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-current::after,
  .main-nav a.active::after {
    width: 7px;
    opacity: 1;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  /* Hero wird auf Tablet zuverlässig einspaltig. */
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 88px;
    overflow: hidden;
    background-position: 62% center;
  }

  .hero-copy {
    max-width: 680px;
  }

  .community-card {
    width: min(100%, 520px);
    justify-self: start;
    margin-right: 0;
  }

  /* Themenleiste auf kleinen Breiten horizontal scrollbar. */
  .topic-bar {
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .topic-bar::-webkit-scrollbar {
    display: none;
  }

  .topic-bar span,
  .topic-bar i {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  /* Gemeinsame Überschriften nicht mehr in starrem 2-Spalten-Raster. */
  .section-header-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .section-header p {
    max-width: 680px;
  }

  /* Heute im Chaos */
  .chaos-today__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chaos-today__pulse {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* News */
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Discord */
  .discord-showcase,
  .discord-community-grid {
    grid-template-columns: 1fr;
  }

  .live-hero-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .live-stat-row {
    grid-column: auto;
  }

  .live-avatar-wall {
    min-height: 0;
    justify-content: flex-start;
  }

  /* Footer */
  .site-footer {
    align-items: start;
  }
}

/* ---------------------------------------------------------
   SMARTPHONE
   --------------------------------------------------------- */

@media (max-width: 620px) {
  :root {
    --content-pad: 16px;
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 66px;
    padding: 0 14px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 76px;
    left: 8px;
    right: 8px;
    max-height: calc(100dvh - 84px);
  }

  main {
    padding-top: 66px;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .hero {
    padding:
      74px
      var(--content-pad)
      50px;
    gap: 28px;
    background-position: 66% center;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.58rem;
  }

  .hero h1 {
    max-width: 100%;
    letter-spacing: -0.045em;
  }

  .hero h1 span {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .hero h1 strong {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  .hero-description {
    margin-top: 18px;
    font-size: 0.82rem;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-proof {
    width: 100%;
    align-items: flex-start;
  }

  .hero-proof__copy {
    width: 100%;
    white-space: normal;
  }

  .hero-avatars {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .community-card {
    width: 100%;
    padding: 20px;
  }

  .community-total {
    font-size: 3.65rem;
  }

  .community-grid div {
    min-height: 76px;
  }

  .topic-bar {
    margin: 10px var(--content-pad) 0;
    min-height: 46px;
  }

  .chaos-today {
    margin-inline: var(--content-pad);
    padding: 20px 15px 15px;
  }

  .chaos-today__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .chaos-today__heading h2 {
    font-size: 1.85rem;
  }

  .chaos-today__live {
    min-height: 29px;
  }

  .chaos-today__grid {
    grid-template-columns: 1fr;
  }

  .chaos-today__card {
    min-height: 72px;
  }

  .chaos-today__pulse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chaos-today__time {
    margin-left: 0;
  }

  .section {
    padding:
      54px
      var(--content-pad)
      0;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .section-header h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .section-header p {
    margin-top: 9px;
    font-size: 0.74rem;
  }

  /* News */
  .news-feature {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .news-feature-media {
    min-height: 220px;
    padding: 14px;
  }

  .news-feature-copy {
    min-height: 0;
    padding: 17px 16px 18px;
  }

  .news-meta {
    gap: 12px;
  }

  .news-feature-copy h3 {
    font-size: clamp(1.14rem, 6.2vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .news-feature-copy p {
    font-size: 0.72rem;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-list button,
  .news-rail button {
    min-height: 80px;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .news-rail-thumb,
  .news-list .news-rail-thumb {
    min-height: 80px;
  }

  /* Builds und Medien */
  .build-filters {
    margin-right: calc(-1 * var(--content-pad));
    padding-right: var(--content-pad);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .build-filters::-webkit-scrollbar {
    display: none;
  }

  .build-filter {
    flex: 0 0 auto;
  }

  .build-grid,
  .build-list,
  .media-grid,
  .media-wall {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .build-card,
  .build-card:first-child,
  .media-card,
  .media-card:nth-child(n) {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .build-card h3,
  .media-overlay strong {
    font-size: 1rem;
  }

  .build-meta-line {
    font-size: 0.66rem;
  }

  /* Discord */
  .live-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .live-header-status {
    min-height: 34px;
  }

  .live-hero-card {
    min-height: 0;
    padding: 20px 16px;
    gap: 20px;
  }

  .live-hero-copy h3 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .live-avatar-wall {
    padding: 13px;
    gap: 7px;
  }

  .live-stat-row {
    grid-template-columns: 1fr;
  }

  .live-stat-row div {
    min-height: 64px;
  }

  .discord-panel {
    padding: 16px;
  }

  .discord-panel-header {
    gap: 12px;
  }

  .member-grid-modern,
  .role-cloud-modern {
    grid-template-columns: 1fr;
  }

  .voice-card-modern {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  /* Join und Footer */
  .join-banner {
    margin:
      54px
      var(--content-pad)
      0;
    padding: 24px 18px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-logo img {
    margin: auto;
  }

  .join-banner .button {
    width: 100%;
    justify-self: stretch;
  }

  .site-footer {
    margin:
      38px
      var(--content-pad)
      0;
    padding: 28px 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }

  /* Medienmodal */
  .media-modal {
    padding: 12px;
  }

  .media-modal button {
    top: 10px;
    right: 12px;
  }

  .media-modal img,
  .media-modal video,
  .media-modal iframe {
    max-width: 96vw;
    max-height: 82dvh;
  }

  /* Externer-Link-Dialog */
  .external-link-modal {
    padding: 8px;
    align-items: end;
  }

  .external-link-dialog {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 22px 16px 16px;
    overflow-y: auto;
    border-radius: 15px;
  }

  .external-link-brand {
    padding-right: 38px;
  }

  .external-link-symbol {
    width: 54px;
    height: 54px;
    margin-top: 20px;
  }

  .external-link-dialog h2 {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .external-link-target {
    grid-template-columns: 1fr;
  }

  .external-link-target small {
    max-width: 100%;
    text-align: left;
  }

  .external-link-actions {
    grid-template-columns: 1fr;
  }

  .external-link-button--confirm {
    grid-row: 1;
  }

  /* Cookie-Hinweis */
  .cookie-consent {
    padding: 8px;
  }

  .cookie-panel {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 18px 14px 14px;
    overflow-y: auto;
  }
}

/* Sehr kleine Smartphones */
@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand strong {
    font-size: 0.76rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 span {
    font-size: 2.25rem;
  }

  .hero h1 strong {
    font-size: 3.15rem;
  }

  .news-list button,
  .news-rail button {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-grid div:nth-child(odd) {
    border-right: 0;
  }

  .community-grid div:nth-child(even) {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav,
  .nav-toggle span {
    transition: none;
  }
}

/* =========================================================
   31 — DATENSCHUTZFREUNDLICHER SEITENAUFRUF-COUNTER
   Ergänzung zur bestehenden Community-Karte.
   Keine vorhandenen CSS-Regeln wurden entfernt oder verändert.
   ========================================================= */

.community-views {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  overflow: hidden;
  border: 1px solid rgba(211, 154, 63, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(211, 154, 63, 0.08),
      transparent 12rem
    ),
    linear-gradient(
      180deg,
      rgba(211, 154, 63, 0.05),
      rgba(255, 255, 255, 0.012)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.community-views > div {
  min-width: 0;
  min-height: 67px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-views > div + div {
  border-left: 1px solid rgba(211, 154, 63, 0.17);
}

.community-views strong,
.community-views span {
  display: block;
  min-width: 0;
}

.community-views strong {
  overflow: hidden;
  color: #f4ede1;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.community-views span {
  margin-top: 7px;
  overflow: hidden;
  color: #858e89;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .community-views {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .community-views {
    grid-template-columns: 1fr;
  }

  .community-views > div + div {
    border-top: 1px solid rgba(211, 154, 63, 0.17);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-views strong {
    scroll-behavior: auto;
  }
}

/* =========================================================
   32 — HERO ATMOSPHÄRE 2.0
   Sichtbarer Nebel, Lichtstrahl, Glut und feinere Asche.
   Bestehende Hero-Regeln bleiben vollständig erhalten.
   ========================================================= */

.hero {
  --hero-mouse-x: 0px;
  --hero-mouse-y: 0px;
  --hero-scroll-y: 0px;
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-fog,
.hero-light-beam,
.hero-ember-glow {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-fog {
  border-radius: 50%;
  filter: blur(42px);
  mix-blend-mode: screen;
}

/* Breiter, gut sichtbarer Grundnebel hinter Figur und Karte */
.hero-fog--back {
  width: 88%;
  height: 58%;
  right: -17%;
  bottom: -11%;
  opacity: 0.34;
  background:
    radial-gradient(
      ellipse at 48% 52%,
      rgba(225, 132, 62, 0.27) 0%,
      rgba(150, 81, 39, 0.17) 33%,
      rgba(45, 77, 68, 0.11) 58%,
      transparent 76%
    );
  animation: heroFogBack 24s ease-in-out infinite alternate;
}

/* Sichtbare wandernde Nebelbank durch die Bildmitte */
.hero-fog--middle {
  width: 78%;
  height: 34%;
  left: 24%;
  top: 30%;
  opacity: 0.3;
  filter: blur(34px);
  background:
    radial-gradient(
      ellipse at center,
      rgba(235, 163, 92, 0.25) 0%,
      rgba(202, 112, 54, 0.17) 35%,
      rgba(75, 91, 78, 0.11) 60%,
      transparent 78%
    );
  animation: heroFogMiddle 19s ease-in-out infinite alternate;
}

/* Dünner Vordergrundnebel über dem unteren Hero */
.hero-fog--front {
  width: 120%;
  height: 31%;
  left: -12%;
  bottom: -7%;
  opacity: 0.23;
  filter: blur(27px);
  background:
    radial-gradient(
      ellipse at 62% 55%,
      rgba(210, 134, 72, 0.22),
      rgba(57, 90, 78, 0.12) 48%,
      transparent 75%
    );
  animation: heroFogFront 16s ease-in-out infinite alternate;
}

/* Langsamer Lichtstrahl von rechts oben */
.hero-light-beam {
  top: -34%;
  right: 7%;
  width: 26%;
  height: 138%;
  opacity: 0.2;
  transform: rotate(13deg);
  filter: blur(22px);
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 204, 128, 0.04) 18%,
      rgba(242, 158, 77, 0.2) 51%,
      rgba(197, 91, 39, 0.08) 72%,
      transparent 100%
    );
  animation: heroLightSweep 13s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* Pulsierende Glut hinter der Figur */
.hero-ember-glow {
  width: 46%;
  height: 72%;
  right: 4%;
  top: 7%;
  opacity: 0.38;
  border-radius: 50%;
  filter: blur(48px);
  background:
    radial-gradient(
      ellipse at center,
      rgba(244, 118, 39, 0.31) 0%,
      rgba(199, 80, 28, 0.16) 35%,
      transparent 72%
    );
  animation: heroEmberPulse 7s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* Bestehende Asche deutlich lesbarer, aber weiterhin hochwertig */
.hero-ash {
  z-index: 3;
  opacity: 1;
}

.hero-ash__particle {
  min-width: 1.6px;
  min-height: 1.6px;
  background: rgba(255, 177, 83, 0.95);
  box-shadow:
    0 0 7px rgba(255, 177, 83, 0.9),
    0 0 18px rgba(233, 89, 28, 0.48);
}

/* Inhalt bleibt sicher über sämtlichen Atmosphäre-Layern */
.hero-copy,
.community-card {
  z-index: 5;
}

/* Leichtes Parallax nur auf Atmosphäre, nie auf Text oder Karte */
.hero-atmosphere {
  transform:
    translate3d(
      calc(var(--hero-mouse-x) * 0.34),
      calc(var(--hero-mouse-y) * 0.28 + var(--hero-scroll-y) * 0.14),
      0
    );
  transition: transform 180ms ease-out;
}

.hero-art {
  transform:
    translate3d(
      calc(var(--hero-mouse-x) * 0.15),
      calc(var(--hero-mouse-y) * 0.12 + var(--hero-scroll-y) * 0.07),
      0
    );
  transition: transform 220ms ease-out;
}

@keyframes heroFogBack {
  0% {
    transform: translate3d(-3%, 2%, 0) scale(1);
    opacity: 0.26;
  }

  50% {
    transform: translate3d(3%, -1%, 0) scale(1.08);
    opacity: 0.4;
  }

  100% {
    transform: translate3d(7%, -4%, 0) scale(1.12);
    opacity: 0.31;
  }
}

@keyframes heroFogMiddle {
  0% {
    transform: translate3d(-8%, 3%, 0) scale(0.98);
    opacity: 0.2;
  }

  55% {
    transform: translate3d(2%, -2%, 0) scale(1.08);
    opacity: 0.36;
  }

  100% {
    transform: translate3d(9%, 1%, 0) scale(1.02);
    opacity: 0.25;
  }
}

@keyframes heroFogFront {
  0% {
    transform: translate3d(-5%, 2%, 0) scale(1);
    opacity: 0.17;
  }

  100% {
    transform: translate3d(6%, -3%, 0) scale(1.08);
    opacity: 0.3;
  }
}

@keyframes heroLightSweep {
  0%,
  100% {
    opacity: 0.09;
    transform: translateX(10%) rotate(13deg);
  }

  45% {
    opacity: 0.25;
  }

  58% {
    opacity: 0.3;
    transform: translateX(-18%) rotate(13deg);
  }

  72% {
    opacity: 0.12;
  }
}

@keyframes heroEmberPulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.48;
    transform: scale(1.08);
  }
}

@media (max-width: 980px) {
  .hero-fog--back {
    width: 110%;
    right: -35%;
    opacity: 0.29;
  }

  .hero-fog--middle {
    width: 105%;
    left: 12%;
  }

  .hero-light-beam {
    right: -5%;
    width: 38%;
  }

  .hero-ember-glow {
    width: 66%;
    right: -8%;
  }
}

@media (max-width: 620px) {
  .hero-fog--back {
    width: 150%;
    height: 48%;
    right: -65%;
    bottom: -5%;
    opacity: 0.24;
  }

  .hero-fog--middle {
    width: 135%;
    height: 28%;
    left: 6%;
    top: 34%;
    opacity: 0.22;
  }

  .hero-fog--front {
    opacity: 0.16;
  }

  .hero-light-beam {
    opacity: 0.13;
  }

  .hero-ember-glow {
    width: 90%;
    right: -32%;
    opacity: 0.28;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere,
  .hero-art {
    transform: none;
    transition: none;
  }

  .hero-fog,
  .hero-light-beam,
  .hero-ember-glow {
    animation: none;
  }

  .hero-fog--back {
    opacity: 0.29;
  }

  .hero-fog--middle {
    opacity: 0.25;
  }

  .hero-fog--front {
    opacity: 0.17;
  }

  .hero-light-beam {
    opacity: 0.12;
  }

  .hero-ember-glow {
    opacity: 0.3;
  }
}






/* =========================================================
   34 — HERO-NEBEL: PROZEDURALER CANVAS-NOISE
   Ersetzt ausschließlich die alten CSS-Nebelflächen.
   Glut, Licht und Asche bleiben bestehen.
   ========================================================= */

.hero-fog {
  display: none !important;
}

.hero-fog-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
  filter: saturate(0.72) contrast(1.08);
  transform: translateZ(0);
}

.hero-light-beam,
.hero-ember-glow {
  z-index: 2;
}

.hero-ash {
  z-index: 3;
}

.hero-copy,
.community-card {
  z-index: 5;
}

@media (max-width: 620px) {
  .hero-fog-canvas {
    opacity: 0.78;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fog-canvas {
    opacity: 0.72;
  }
}

/* =========================================================
   23 — HIGHLIGHT INNERHALB DER MEDIENGALERIE
   Das Highlight wird nur einmal angezeigt: als erste, größere Karte.
   ========================================================= */

.media-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  border-color: rgba(232, 178, 91, 0.72);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 218, 151, 0.08),
    0 0 34px rgba(211, 154, 63, 0.12);
}

.media-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 221, 157, 0.18);
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(211, 154, 63, 0.05);
}

.media-card--featured .media-overlay {
  padding: 76px 18px 17px;
}

.media-card--featured .media-overlay strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.media-card--featured .media-overlay small {
  font-size: 0.7rem;
}

.media-highlight-badge {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #fff1cf;
  border: 1px solid rgba(239, 188, 101, 0.72);
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(118, 69, 22, 0.94), rgba(62, 35, 14, 0.94));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34), 0 0 18px rgba(211, 154, 63, 0.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .media-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 330px;
    aspect-ratio: 16 / 8.5;
  }
}

@media (max-width: 620px) {
  .media-card--featured {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .media-card--featured .media-overlay {
    padding: 54px 13px 12px;
  }

  .media-card--featured .media-overlay strong {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-card--featured,
  .media-highlight-badge {
    transition: none;
  }
}

/* Archivseiten */
.archive-main{padding-top:74px;min-height:100vh}.archive-hero{padding:72px var(--content-pad) 34px;border-bottom:1px solid rgba(255,255,255,.06);background:linear-gradient(180deg,rgba(10,25,22,.92),#030808)}.archive-hero h1{margin:0;font-size:clamp(2.8rem,6vw,5.8rem);line-height:.92;letter-spacing:-.055em;text-transform:uppercase}.archive-hero p{max-width:720px;margin:18px 0 0;color:#9ba39f}.archive-content{padding:34px var(--content-pad) 80px}.archive-toolbar{display:grid;grid-template-columns:minmax(220px,1fr) auto;gap:14px;align-items:center;margin-bottom:24px}.archive-search{width:100%;min-height:44px;padding:0 15px;color:#fff;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#091110;font:inherit}.archive-filters{display:flex;flex-wrap:wrap;gap:8px}.archive-summary{margin:0 0 18px;color:#7f8783;font-size:.72rem}.pagination{margin-top:32px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:7px}.pagination button{min-width:38px;height:38px;padding:0 11px;color:#bfc5c1;border:1px solid rgba(255,255,255,.1);border-radius:7px;background:#091110;cursor:pointer}.pagination button:hover,.pagination button.active{color:#fff0d4;border-color:rgba(218,158,67,.55);background:rgba(211,154,63,.12)}.pagination button:disabled{opacity:.35;cursor:not-allowed}.archive-empty{grid-column:1/-1;padding:56px 24px;text-align:center;color:#7f8783;border:1px dashed rgba(211,154,63,.25);border-radius:12px}.section-more{margin-top:22px;display:flex;justify-content:flex-end}.section-more a{display:inline-flex;align-items:center;gap:9px;color:#e1b563;text-decoration:none;font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.045em}.section-more a:hover{color:#ffd995}.archive-back{display:inline-flex;margin-bottom:18px;color:#d8a555;text-decoration:none;font-size:.68rem;font-weight:800;text-transform:uppercase}.media-highlight-badge{min-height:24px;padding:0 8px;display:inline-flex;align-items:center;color:#fff0cf;border:1px solid rgba(235,184,96,.62);border-radius:5px;background:rgba(89,55,16,.82);font-size:.58rem;font-weight:900;text-transform:uppercase}.media-card--featured{border-color:rgba(235,184,96,.64);box-shadow:0 18px 42px rgba(0,0,0,.36),0 0 24px rgba(211,154,63,.1)}@media(max-width:780px){.archive-toolbar{grid-template-columns:1fr}.archive-filters{overflow-x:auto;flex-wrap:nowrap;padding-bottom:3px}.archive-filters .build-filter{flex:0 0 auto}}

/* =========================================================
   COMMUNITY-MITGLIEDER / PLAYERS-ARCHIV
   ========================================================= */
.community-archive-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(38, 229, 138, 0.08), transparent 24rem),
    radial-gradient(circle at 16% 20%, rgba(211, 154, 63, 0.11), transparent 24rem),
    linear-gradient(180deg, rgba(10, 25, 22, .92), #030808);
}

.community-stats-bar {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(218, 158, 77, 0.22);
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1312, #07100f);
}

.community-stats-bar div {
  min-height: 88px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.07);
}

.community-stats-bar div:last-child { border-right: 0; }
.community-stats-bar strong { color: #f4ead8; font-size: 1.8rem; line-height: 1; }
.community-stats-bar span { margin-top: 7px; color: #78817d; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.player-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 11px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211,154,63,.055), transparent 13rem),
    linear-gradient(160deg, #0b1413, #07100f);
  box-shadow: 0 16px 36px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.player-card:hover {
  transform: translateY(-4px);
  border-color: rgba(218,158,77,.42);
  box-shadow: 0 24px 48px rgba(0,0,0,.34), 0 0 22px rgba(211,154,63,.055);
}

.player-card.is-online { border-color: rgba(38,229,138,.19); }
.player-card.is-online::before { content:""; position:absolute; inset:0; pointer-events:none; background:radial-gradient(circle at 15% 5%, rgba(38,229,138,.07), transparent 11rem); }

.player-card-head { position:relative; z-index:1; padding:18px 18px 14px; display:flex; align-items:center; gap:12px; border-bottom:1px solid rgba(255,255,255,.06); }
.player-avatar-wrap { position:relative; width:54px; height:54px; flex:0 0 54px; }
.player-avatar-wrap img,
.player-avatar-wrap > span { width:54px; height:54px; display:grid; place-items:center; object-fit:cover; border:1px solid rgba(211,154,63,.32); border-radius:50%; background:#17211f; color:#e5b45d; font-size:1.2rem; font-weight:900; }
.player-status { position:absolute; right:0; bottom:1px; width:13px; height:13px; border:3px solid #0a1312; border-radius:50%; background:#555; }
.player-status--online { background:#26e58a; box-shadow:0 0 10px rgba(38,229,138,.65); }
.player-status--idle { background:#e5b84f; }
.player-status--dnd,
.player-status--busy { background:#ed5b4d; }

.player-identity { min-width:0; }
.player-identity h2 { margin:0; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; font-size:.95rem; }
.player-identity small { margin-top:3px; display:block; overflow:hidden; color:#737c78; white-space:nowrap; text-overflow:ellipsis; font-size:.58rem; }
.player-card-body { position:relative; z-index:1; min-height:112px; padding:17px 18px; }
.player-activity-label { color:#d39a3f; font-size:.52rem; font-weight:900; letter-spacing:.085em; }
.player-card-body strong { margin-top:7px; display:block; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; color:#ece8df; font-size:.78rem; }
.player-card-body p { margin:7px 0 0; display:-webkit-box; overflow:hidden; -webkit-line-clamp:2; -webkit-box-orient:vertical; color:#7f8884; font-size:.62rem; line-height:1.5; }
.player-card footer { position:relative; z-index:1; min-height:42px; padding:0 18px; display:flex; align-items:center; justify-content:space-between; gap:10px; border-top:1px solid rgba(255,255,255,.055); color:#66706c; font-size:.54rem; }
.player-card footer b { color:#8e9793; font-size:.54rem; }
.player-card.is-online footer b { color:#62dda5; }

@media (max-width: 1100px) { .player-grid { grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width: 780px) { .player-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 520px) {
  .community-stats-bar { grid-template-columns:1fr; }
  .community-stats-bar div { min-height:68px; border-right:0; border-bottom:1px solid rgba(255,255,255,.07); }
  .community-stats-bar div:last-child { border-bottom:0; }
  .player-grid { grid-template-columns:1fr; }
}

/* =========================================================
   COMMUNITY ARCHIV — KOMPAKTER STARTSEITEN-STIL
   ========================================================= */
.community-stats-bar {
  display: flex;
  gap: 34px;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.community-stats-bar div {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  border: 0;
}

.community-stats-bar strong {
  color: #f4ead8;
  font-size: 1.05rem;
  line-height: 1;
}

.community-stats-bar span {
  margin: 0;
  color: #78817d;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.community-member-card {
  min-width: 0;
  min-height: 72px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: rgba(255,255,255,.018);
  box-shadow: none;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.community-member-card:hover {
  transform: translateY(-2px);
  border-color: rgba(211,154,63,.25);
  background: rgba(211,154,63,.028);
}

.community-member-card.is-online {
  border-color: rgba(38,229,138,.12);
}

.community-member-avatar {
  position: relative;
  width: 42px;
  height: 42px;
}

.community-member-avatar img,
.community-member-avatar > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: #111c1a;
  color: #e5b45d;
  font-weight: 900;
}

.community-member-avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #08110f;
  border-radius: 50%;
  background: #535c58;
}

.community-member-avatar i.status-online { background: #26e58a; }
.community-member-avatar i.status-idle { background: #e5b84f; }
.community-member-avatar i.status-dnd,
.community-member-avatar i.status-busy { background: #ed5b4d; }

.community-member-copy {
  min-width: 0;
}

.community-member-copy strong,
.community-member-copy small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.community-member-copy strong {
  color: #ece8df;
  font-size: .72rem;
}

.community-member-copy small {
  margin-top: 4px;
  color: #747e79;
  font-size: .56rem;
}

.community-member-status {
  color: #77817c;
  font-size: .52rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.community-member-card.is-online .community-member-status {
  color: #5ed69f;
}

@media (max-width: 1050px) {
  .player-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .community-stats-bar { gap: 18px; flex-wrap: wrap; }
  .player-grid { grid-template-columns: 1fr; }
  .community-member-status { display: none; }
  .community-member-card { grid-template-columns: 42px minmax(0, 1fr); }
}

/* =========================================================
   COMMUNITY ARCHIV V3.5 — kompakt wie die Startseite
   ========================================================= */
body[data-archive="players"] .archive-content {
  padding-top: 28px;
}

body[data-archive="players"] .community-stats-bar {
  display: flex !important;
  align-items: center;
  gap: 28px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

body[data-archive="players"] .community-stats-bar > div {
  min-height: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  border: 0;
}

body[data-archive="players"] .community-stats-bar strong {
  font-size: 1.05rem;
}

body[data-archive="players"] .community-stats-bar span {
  margin: 0;
  font-size: .63rem;
  text-transform: none;
  letter-spacing: 0;
}

body[data-archive="players"] .player-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body[data-archive="players"] .community-member-card {
  width: auto;
  min-width: 0;
  min-height: 68px;
  margin: 0;
  padding: 10px 12px;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(14,25,23,.96), rgba(8,16,15,.96));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

body[data-archive="players"] .community-member-card:hover {
  transform: translateY(-2px);
  border-color: rgba(211,154,63,.32);
  background: linear-gradient(180deg, rgba(19,30,27,.98), rgba(9,18,16,.98));
}

body[data-archive="players"] .community-member-card.is-online {
  border-color: rgba(38,229,138,.16);
}

body[data-archive="players"] .community-member-avatar,
body[data-archive="players"] .community-member-avatar img,
body[data-archive="players"] .community-member-avatar > span {
  width: 44px !important;
  height: 44px !important;
}

body[data-archive="players"] .community-member-avatar img,
body[data-archive="players"] .community-member-avatar > span {
  border-radius: 8px !important;
}

body[data-archive="players"] .community-member-copy strong {
  font-size: .7rem;
  line-height: 1.2;
}

body[data-archive="players"] .community-member-copy small {
  margin-top: 3px;
  font-size: .54rem;
}

body[data-archive="players"] .community-member-status {
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 5px;
  background: rgba(255,255,255,.025);
  font-size: .48rem;
}

body[data-archive="players"] .community-member-card.is-online .community-member-status {
  border-color: rgba(38,229,138,.14);
  background: rgba(38,229,138,.05);
}

@media (max-width: 1050px) {
  body[data-archive="players"] .player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 650px) {
  body[data-archive="players"] .community-stats-bar {
    gap: 15px;
    flex-wrap: wrap;
  }

  body[data-archive="players"] .player-grid {
    grid-template-columns: 1fr !important;
  }

  body[data-archive="players"] .community-member-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  body[data-archive="players"] .community-member-status {
    display: none;
  }
}


/* =========================================================
   24 — EINHEITLICHE HAUPTNAVIGATION
   Auf allen Seiten identische Ausrichtung, Hover- und Aktiv-Linie.
   ========================================================= */

.site-header {
  grid-template-columns: minmax(210px, 245px) minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 28px);
}

.main-nav {
  min-width: 0;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 1.9vw, 28px);
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  height: 74px;
  padding: 0 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav a::after {
  left: 50%;
  right: auto;
  bottom: 14px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) auto;
    gap: 16px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.72rem;
  }

  .header-invite {
    min-width: 158px;
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  .main-nav {
    height: auto;
    white-space: normal;
  }

  .main-nav a {
    height: auto;
  }

  .main-nav a::after {
    bottom: 3px;
  }
}

/* =========================================================
   CONTENT LIKES — BUILDS UND MEDIEN
   ========================================================= */
.content-like {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 8;
  min-width: 52px;
  height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #f3eee4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(4, 9, 9, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.content-like:hover,
.content-like:focus-visible {
  transform: translateY(-1px);
  color: #ffd8d1;
  border-color: rgba(237, 91, 32, 0.7);
  outline: none;
}

.content-like.is-liked {
  color: #fff0eb;
  border-color: rgba(237, 91, 32, 0.82);
  background: linear-gradient(135deg, rgba(237, 91, 32, 0.94), rgba(184, 53, 18, 0.94));
  box-shadow: 0 8px 24px rgba(227, 79, 24, 0.28);
}

.content-like:disabled {
  cursor: wait;
  opacity: 0.72;
}

.content-like.has-error {
  border-color: rgba(255, 184, 88, 0.86);
}

.content-like__heart {
  font-size: 0.9rem;
  line-height: 1;
}

.content-like.is-liked .content-like__heart::before {
  content: "♥";
}

.content-like:not(.is-liked) .content-like__heart::before {
  content: "♡";
}

.content-like.is-popping {
  animation: contentLikePop 300ms ease;
}

@keyframes contentLikePop {
  0% { transform: scale(1); }
  45% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

.build-card .content-like {
  top: auto;
  right: 9px;
  bottom: 9px;
}

.media-card .content-like {
  top: 9px;
  right: 9px;
}

.media-card-top {
  padding-right: 66px;
}

@media (max-width: 520px) {
  .content-like {
    min-width: 56px;
    height: 32px;
    font-size: 0.7rem;
  }
}


/* v5.2 – Trending und Sortierung */
.archive-toolbar-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px;flex-wrap:wrap}.archive-sort{min-height:44px;padding:0 38px 0 14px;color:#fff;border:1px solid rgba(255,255,255,.12);border-radius:8px;background:#091110;font:inherit;cursor:pointer}.archive-sort:focus{outline:2px solid rgba(218,158,67,.4);outline-offset:2px}.trending-section{border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06);background:linear-gradient(180deg,rgba(211,154,63,.035),rgba(3,8,8,0))}.trending-columns{display:grid;grid-template-columns:1fr 1fr;gap:34px}.trending-column{min-width:0}.trending-column__head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}.trending-column__head h3{margin:0;color:#fff;font-size:1.1rem;text-transform:uppercase;letter-spacing:.045em}.trending-column__head a{color:#d8a555;text-decoration:none;font-size:.68rem;font-weight:800;text-transform:uppercase}.trending-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.trending-grid .build-card,.trending-grid .media-card{min-width:0}.trending-grid .build-empty{grid-column:1/-1}.content-like[data-likes="0"] .content-like__count{opacity:.7}@media(max-width:1000px){.trending-columns{grid-template-columns:1fr}.trending-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:780px){.archive-toolbar-actions{align-items:stretch;justify-content:stretch;flex-direction:column}.archive-sort{width:100%}.trending-grid{grid-template-columns:1fr}}


/* =========================================================
   CONTENT LIKES V5.1 — ANIMATIONEN UND COMMUNITY-BADGES
   ========================================================= */
.content-like {
  overflow: visible;
  isolation: isolate;
}

.content-like__heart {
  display: inline-grid;
  place-items: center;
  transform-origin: 50% 62%;
  transition: transform 180ms cubic-bezier(.2,.9,.25,1.35), filter 180ms ease;
}

.content-like:hover .content-like__heart {
  transform: scale(1.12);
}

.content-like.is-liked .content-like__heart {
  filter: drop-shadow(0 0 7px rgba(255, 203, 185, .55));
}

.content-like.is-popping .content-like__heart {
  animation: contentLikeHeartPop 420ms cubic-bezier(.16,.9,.3,1.45);
}

.content-like__count {
  min-width: 1ch;
  transition: transform 180ms ease, opacity 180ms ease;
}

.content-like.is-popping .content-like__count {
  animation: contentLikeCountPop 420ms ease;
}

.content-like__burst {
  position: absolute;
  inset: 50% auto auto 18px;
  z-index: -1;
  width: 0;
  height: 0;
  pointer-events: none;
}

.content-like__burst i {
  --particle-angle: calc(var(--particle-index) * 51.428deg - 90deg);
  position: absolute;
  left: -2px;
  top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff875d;
  box-shadow: 0 0 8px rgba(255, 104, 65, .8);
  animation: contentLikeParticle 620ms cubic-bezier(.12,.72,.22,1) forwards;
}

.content-like__burst i:nth-child(even) {
  width: 3px;
  height: 3px;
  background: #ffd9a1;
}

.content-like-badge {
  position: absolute;
  z-index: 7;
  left: 10px;
  bottom: 10px;
  min-height: 27px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  color: #fff6e8;
  background: rgba(13, 11, 8, .88);
  box-shadow: 0 9px 24px rgba(0,0,0,.34);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: .56rem;
  font-weight: 950;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  animation: contentLikeBadgeIn 360ms cubic-bezier(.16,.9,.3,1.2) both;
}

.content-like-badge > span {
  font-size: .78rem;
  line-height: 1;
}

.content-like-badge--popular {
  color: #ffe5ca;
  border-color: rgba(245, 113, 57, .58);
  background: linear-gradient(135deg, rgba(116, 39, 14, .94), rgba(53, 20, 9, .93));
  box-shadow: 0 9px 24px rgba(0,0,0,.34), 0 0 20px rgba(235, 83, 30, .12);
}

.content-like-badge--favorite {
  color: #fff1bf;
  border-color: rgba(236, 188, 83, .64);
  background: linear-gradient(135deg, rgba(100, 66, 14, .95), rgba(43, 28, 7, .94));
  box-shadow: 0 9px 24px rgba(0,0,0,.35), 0 0 24px rgba(224, 166, 55, .16);
}

.build-card > .content-like-badge {
  bottom: 10px;
}

.media-card > .content-like-badge {
  bottom: auto;
  top: 10px;
}

.media-card[data-like-rank] .media-card-top {
  padding-left: 110px;
}

@keyframes contentLikeHeartPop {
  0% { transform: scale(1); }
  35% { transform: scale(.72) rotate(-8deg); }
  68% { transform: scale(1.42) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes contentLikeCountPop {
  0%, 100% { transform: translateY(0); opacity: 1; }
  45% { transform: translateY(-3px); opacity: .72; }
}

@keyframes contentLikeParticle {
  0% {
    opacity: 1;
    transform: rotate(var(--particle-angle)) translateX(5px) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--particle-angle)) translateX(31px) scale(.25);
  }
}

@keyframes contentLikeBadgeIn {
  from { opacity: 0; transform: translateY(6px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .content-like,
  .content-like__heart,
  .content-like__count,
  .content-like-badge {
    animation: none !important;
    transition: none !important;
  }

  .content-like__burst {
    display: none;
  }
}

@media (max-width: 520px) {
  .content-like-badge {
    min-height: 25px;
    padding-inline: 7px;
    font-size: .51rem;
  }

  .media-card[data-like-rank] .media-card-top {
    padding-left: 101px;
  }
}



/* =========================================================
   v5.8 — LIKE-BADGES IN DER OBEREN BADGE-LEISTE
   Verhindert, dass Community-Badges den Kartentext verdecken.
   ========================================================= */
.build-card-badges,
.media-card-top {
  align-items: center;
  gap: 6px;
}

.build-card-badges {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.build-card-badges .build-category {
  margin-left: auto;
}

.media-card-top {
  flex-wrap: wrap;
}

.content-like-badge {
  position: static !important;
  inset: auto !important;
  z-index: auto;
  min-height: 24px;
  max-width: min(190px, 58%);
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #ffe8ba;
  white-space: nowrap;
  text-overflow: ellipsis;
  border: 1px solid rgba(211, 154, 63, 0.68);
  border-radius: 5px;
  background: rgba(94, 54, 17, 0.86);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  pointer-events: none;
}

.content-like-badge > span {
  flex: 0 0 auto;
}

.content-like-badge--popular {
  color: #ffd994;
  border-color: rgba(237, 130, 43, 0.72);
  background: rgba(105, 48, 14, 0.88);
}

.content-like-badge--favorite {
  color: #ffebba;
  border-color: rgba(226, 173, 68, 0.82);
  background: rgba(104, 67, 15, 0.9);
}

.build-card > .content-like-badge,
.media-card > .content-like-badge {
  position: static !important;
}

@media (max-width: 780px) {
  .content-like-badge {
    max-width: 52%;
    font-size: 0.5rem;
  }
}

/* =========================================================
   v5.8 — MEDIEN-BADGES OHNE VERRUTSCHEN
   Das Like-Badge bleibt oben in einer Zeile mit dem Medien-Typ.
   Die Build-Karten bleiben unverändert.
   ========================================================= */
.media-card-top {
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  min-width: 0;
}

.media-card-top > .media-type,
.media-card-top > .media-highlight-badge,
.media-card-top > .content-like-badge {
  min-width: 0;
}

.media-card-top > .media-type,
.media-card-top > .media-highlight-badge {
  flex: 0 1 auto;
  max-width: 48%;
}

.media-card-top > .content-like-badge {
  flex: 0 1 auto;
  max-width: 52%;
  margin: 0;
}

.media-card-top .content-like-badge > span:last-child {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 780px) {
  .media-card-top > .media-type,
  .media-card-top > .media-highlight-badge {
    max-width: 42%;
  }

  .media-card-top > .content-like-badge {
    max-width: 58%;
  }
}

/* =========================================================
   HERO-TITEL – Stil aus exilechaosV2
   Nur der Titel "BETRITT DAS CHAOS" wird überschrieben.
   ========================================================= */

.hero h1 {
  max-width: 690px;
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  width: auto;
  max-width: 100%;
  white-space: nowrap;
}

.hero h1 span {
  display: block;
  color: #ffffff;
  font-size: clamp(2.45rem, 4.15vw, 3.25rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.58);
}

.hero h1 strong {
  display: block;
  margin-top: 8px;
  padding-right: 0;
  color: #f3a24c;
  font-size: clamp(4.15rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.08em;
  background: linear-gradient(
    180deg,
    #fff2bf 0%,
    #f4a640 35%,
    #8d2a08 75%,
    #ef9c37 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 8px 28px rgba(228, 73, 14, 0.28));
}

@media (max-width: 1050px) {
  .hero h1 strong {
    font-size: clamp(3.8rem, 6.5vw, 4.5rem);
  }
}

@media (max-width: 780px) {
  .hero h1 span {
    font-size: clamp(2rem, 8vw, 2.2rem);
  }

  .hero h1 strong {
    font-size: clamp(3.35rem, 13vw, 4rem);
  }
}

@media (max-width: 520px) {
  .hero h1 strong {
    font-size: clamp(2.75rem, 14vw, 3.15rem);
  }
}





/* =========================================================
   25 — NEWS-BEREICH 2026 / KOMPLETTES REDESIGN
   ========================================================= */
.news-section { position: relative; }
.news-section::before { content:""; position:absolute; inset:38px 0 auto; height:420px; pointer-events:none; background:radial-gradient(circle at 18% 30%,rgba(211,154,63,.075),transparent 28rem),radial-gradient(circle at 82% 20%,rgba(34,101,88,.09),transparent 25rem); }
.news-section-header { position:relative; margin-bottom:30px; display:flex; align-items:flex-end; justify-content:space-between; gap:32px; }
.news-section-header > div { max-width:760px; }
.news-section-header p { max-width:680px; margin-top:14px; color:#818985; font-size:.8rem; line-height:1.7; }
.news-archive-link { min-height:42px; padding:0 16px; display:inline-flex; align-items:center; gap:12px; flex:0 0 auto; color:#d8d6cf; border:1px solid rgba(211,154,63,.28); border-radius:7px; background:rgba(7,16,15,.72); text-decoration:none; text-transform:uppercase; font-size:.6rem; font-weight:800; letter-spacing:.08em; transition:border-color .18s ease,background .18s ease,transform .18s ease; }
.news-archive-link:hover { transform:translateY(-2px); border-color:rgba(232,177,91,.6); background:#0c1514; }
.news-archive-link span { color:var(--gold); font-size:.85rem; }
.news-layout { position:relative; display:grid; grid-template-columns:minmax(0,1.45fr) minmax(350px,.82fr); gap:18px; align-items:stretch; }
.news-feature { min-width:0; min-height:620px; display:grid; grid-template-rows:minmax(350px,1fr) auto; overflow:hidden; border:1px solid rgba(211,154,63,.34); border-radius:16px; background:#06100f; box-shadow:0 28px 70px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.025); }
.news-feature-media { position:relative; min-height:350px; padding:22px; display:flex; flex-direction:column; justify-content:space-between; overflow:hidden; isolation:isolate; background-size:cover; background-position:center; transition:background-image .25s ease; }
.news-feature-media::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(90deg,rgba(2,7,7,.46),transparent 55%),linear-gradient(180deg,transparent 45%,rgba(2,7,7,.9)); }
.news-feature-media::after { content:""; position:absolute; inset:auto -12% -34% 25%; z-index:-1; height:70%; transform:rotate(-7deg); background:radial-gradient(ellipse,rgba(224,103,32,.2),transparent 65%); filter:blur(22px); }
.news-feature-media__top { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.news-channel-badge { padding:7px 10px; color:#f7e1bb; border:1px solid rgba(241,190,104,.38); border-radius:5px; background:rgba(3,8,8,.72); backdrop-filter:blur(10px); font-size:.56rem; font-weight:900; letter-spacing:.11em; text-transform:uppercase; }
.news-feature-state { display:inline-flex; align-items:center; gap:7px; color:#d6dbd6; font-size:.57rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; }
.news-feature-state i { width:7px; height:7px; border-radius:50%; background:#26e58a; box-shadow:0 0 14px rgba(38,229,138,.8); }
.news-feature-media__number { align-self:flex-end; color:rgba(255,255,255,.13); font-size:clamp(5rem,8vw,8rem); font-weight:900; line-height:.7; letter-spacing:-.08em; text-shadow:0 10px 30px rgba(0,0,0,.35); }
.news-feature-copy { min-height:245px; padding:25px 28px 27px; display:flex; flex-direction:column; background:linear-gradient(180deg,rgba(8,17,16,.98),#050c0c); border-top:1px solid rgba(255,255,255,.055); }
.news-meta { display:flex; align-items:center; justify-content:space-between; gap:20px; color:#77807c; font-size:.59rem; text-transform:uppercase; letter-spacing:.07em; }
.news-author { display:inline-flex; align-items:center; gap:8px; }
.news-author > i { width:5px; height:5px; border-radius:50%; background:var(--gold); box-shadow:0 0 10px rgba(211,154,63,.55); }
.news-feature-copy h3 { margin:13px 0 9px; max-width:850px; color:#f3eee4; font-size:clamp(1.55rem,2.25vw,2.25rem); line-height:1.08; letter-spacing:-.035em; overflow-wrap:anywhere; }
.news-main-text { color:#929a96; font-size:.73rem; line-height:1.65; }
.news-main-text .news-text-line { display:block; }
.news-main-text .news-text-line + .news-text-line { margin-top:4px; }
.news-main-text .news-links { display:flex; flex-wrap:wrap; gap:8px; margin-top:9px; }
.news-main-text .news-inline-link { margin:0; padding:5px 8px; color:#d8ad64; border:1px solid rgba(211,154,63,.2); border-radius:4px; background:rgba(211,154,63,.05); font-size:.58rem; }
.news-main-link { width:fit-content; margin-top:auto; padding-top:18px; display:inline-flex; align-items:center; gap:10px; color:#f0ece4; text-decoration:none; text-transform:uppercase; font-size:.62rem; font-weight:900; letter-spacing:.07em; }
.news-main-link span { width:24px; height:24px; display:grid; place-items:center; color:#f4bc61; border:1px solid rgba(211,154,63,.28); border-radius:50%; transition:transform .18s ease,background .18s ease; }
.news-main-link:hover span { transform:translate(2px,-2px); background:rgba(211,154,63,.1); }
.news-sidebar {
    min-width: 0;
    min-height: 620px;
    padding: 20px; /* statt 15 */
    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.085);
    border-radius: 16px;

    background: linear-gradient(
        180deg,
        rgba(9,18,17,.96),
        rgba(5,12,12,.98)
    );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.02),
        0 18px 45px rgba(0,0,0,.30);
}

.news-sidebar-head {
    min-height: 58px;              /* statt 46 */
    padding: 0 6px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #a3aaa6;

    border-bottom: 1px solid rgba(255,255,255,.07);

    font-size: .78rem;             /* statt .57rem */
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-sidebar-head strong {
    min-width: 38px;               /* statt 27 */
    height: 38px;

    display: grid;
    place-items: center;

    color: #ddb169;

    border: 1px solid rgba(211,154,63,.24);
    border-radius: 50%;

    background: rgba(211,154,63,.055);

    font-size: .82rem;             /* statt .58rem */
}
.news-list { flex:1; margin-top:10px; display:grid; grid-template-rows:repeat(6,minmax(0,1fr)); gap:7px; }
.news-list button { position:relative; width:100%; min-height:0; padding:7px; display:grid; grid-template-columns:28px 82px minmax(0,1fr); gap:10px; align-items:center; overflow:hidden; color:inherit; text-align:left; cursor:pointer; border:1px solid transparent; border-radius:9px; background:transparent; transition:border-color .18s ease,background .18s ease,transform .18s ease; }
.news-list button::after { content:""; position:absolute; left:0; top:18%; bottom:18%; width:2px; border-radius:2px; background:linear-gradient(#efaa47,#d95720); opacity:0; transform:scaleY(.3); transition:opacity .18s ease,transform .18s ease; }
.news-list button:hover,.news-list button.active { transform:none; border-color:rgba(211,154,63,.22); background:linear-gradient(90deg,rgba(211,154,63,.085),rgba(255,255,255,.015)); }
.news-list button.active::after { opacity:1; transform:scaleY(1); }
.news-rail-index { color:#4f5955; font-size:.58rem; font-weight:900; letter-spacing:.04em; text-align:center; }
.news-list button.active .news-rail-index { color:#e4af5b; }
.news-rail-thumb,.news-list .news-rail-thumb { width:82px; height:58px; min-height:0; border-radius:6px; background-color:#13201f; background-size:cover; background-position:center; filter:saturate(.72) contrast(1.04); transition:filter .18s ease,transform .18s ease; }
.news-list button:hover .news-rail-thumb,.news-list button.active .news-rail-thumb { filter:saturate(1) contrast(1.08); transform:scale(1.025); }
.news-rail-copy { min-width:0; padding:0; display:flex; flex-direction:column; justify-content:center; }
.news-rail-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.news-rail-meta small { min-width:0; overflow:hidden; color:#d78239; font-size:.5rem; font-weight:900; letter-spacing:.055em; text-overflow:ellipsis; white-space:nowrap; }
.news-rail-meta time { flex:0 0 auto; color:#59635f; font-size:.48rem; }
.news-rail-copy strong { margin-top:4px; display:-webkit-box; overflow:hidden; color:#d8dad6; -webkit-line-clamp:2; -webkit-box-orient:vertical; font-size:.67rem; line-height:1.25; }
.news-rail-copy em { margin-top:4px; color:#6f7974; font-size:.49rem; font-style:normal; opacity:0; transform:translateY(3px); transition:opacity .18s ease,transform .18s ease,color .18s ease; }
.news-list button:hover .news-rail-copy em,.news-list button.active .news-rail-copy em { color:#c99b54; opacity:1; transform:none; }
@media (max-width:1100px){.news-layout{grid-template-columns:minmax(0,1.25fr) minmax(330px,.9fr)}.news-list button{grid-template-columns:24px 70px minmax(0,1fr);gap:8px}.news-rail-thumb,.news-list .news-rail-thumb{width:70px}.news-feature-copy{padding:23px 24px 25px}}
@media (max-width:980px){.news-section-header{align-items:flex-start}.news-layout{grid-template-columns:1fr}.news-feature{min-height:0}.news-sidebar{min-height:0}.news-list{display:flex;flex-direction:column}.news-list button{min-height:78px}.news-rail-thumb,.news-list .news-rail-thumb{height:62px}}
@media (max-width:640px){.news-section-header{display:block}.news-archive-link{margin-top:18px}.news-feature{grid-template-rows:260px auto;border-radius:12px}.news-feature-media{min-height:260px;padding:16px}.news-feature-copy{min-height:270px;padding:20px}.news-feature-media__number{font-size:5rem}.news-sidebar{padding:10px;border-radius:12px}.news-list button{grid-template-columns:20px 68px minmax(0,1fr);padding:6px;gap:8px}.news-rail-thumb,.news-list .news-rail-thumb{width:68px;height:56px}.news-rail-meta time{display:none}.news-feature-copy h3{font-size:1.45rem}}


/* =========================================================
   31 — NEWS-BEREICH FINAL 2026
   Kompakter, moderner und stärker an Gaming-Landingpages angelehnt.
   ========================================================= */
.news-section {
  position: relative;
}

.news-section-header {
  margin-bottom: 30px;
}

.news-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, .8fr);
  gap: 20px;
  align-items: stretch;
}

.news-feature {
  min-height: 0;
  height: 590px;
  grid-template-rows: 318px minmax(0, 1fr);
  border-color: rgba(211, 154, 63, .3);
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(8, 17, 16, .98), rgba(4, 11, 10, .99));
  box-shadow: 0 24px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.025);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.news-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 171, 88, .5);
  box-shadow: 0 30px 85px rgba(0,0,0,.42), 0 0 38px rgba(211,154,63,.055);
}

.news-feature-media {
  min-height: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-size .5s ease, filter .28s ease;
}

.news-feature:hover .news-feature-media {
  filter: saturate(1.08) contrast(1.03);
}

.news-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,8,8,.18), transparent 46%, rgba(3,8,8,.12)),
    linear-gradient(180deg, rgba(2,7,7,.02) 36%, rgba(2,7,7,.86) 100%);
}

.news-feature-media__top {
  position: relative;
  z-index: 2;
}

.news-feature-media__number {
  display: none !important;
}

.news-feature-copy {
  min-height: 0;
  padding: 22px 28px 24px;
  overflow: hidden;
}

.news-feature-copy h3 {
  margin: 11px 0 8px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-main-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #98a09c;
  font-size: .74rem;
  line-height: 1.72;
}

.news-main-text .news-links {
  display: none;
}

.news-main-link {
  margin-top: auto;
  padding-top: 16px;
}

.news-sidebar {
  min-height: 0;
  height: 590px;
  padding: 16px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(211,154,63,.045), transparent 15rem),
    linear-gradient(180deg, rgba(8,17,16,.98), rgba(4,11,10,.99));
  box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.025);
}

.news-sidebar-head {
  min-height: 54px;
  padding: 0 3px 13px;
}

.news-sidebar-head > div {
  min-width: 0;
}

.news-sidebar-head span,
.news-sidebar-head small {
  display: block;
}

.news-sidebar-head small {
  margin-top: 4px;
  color: #59635f;
  font-size: .49rem;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: none;
}

.news-list {
  margin-top: 11px;
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.news-list button {
  min-height: 0;
  padding: 9px;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 10px;
  background: rgba(255,255,255,.012);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.012);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.news-list button::after {
  display: none;
}

.news-list button:hover,
.news-list button.active {
  transform: translateY(-2px);
  border-color: rgba(211,154,63,.33);
  background: linear-gradient(135deg, rgba(211,154,63,.09), rgba(255,255,255,.018));
  box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.025);
}

.news-rail-index {
  display: none;
}

.news-rail-thumb,
.news-list .news-rail-thumb {
  width: 92px;
  height: 100%;
  min-height: 68px;
  border-radius: 8px;
  filter: saturate(.78) contrast(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  transition: transform .28s ease, filter .28s ease;
}

.news-list button:hover .news-rail-thumb,
.news-list button.active .news-rail-thumb {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.08);
}

.news-rail-meta small {
  color: #dd9441;
}

.news-rail-copy strong {
  margin-top: 6px;
  color: #e1e3df;
  font-size: .7rem;
  line-height: 1.28;
}

.news-rail-copy em {
  margin-top: 6px;
  opacity: 1;
  transform: none;
  color: #68736e;
  font-size: .5rem;
}

.news-list button:hover .news-rail-copy em,
.news-list button.active .news-rail-copy em {
  color: #d1a35d;
}

@media (max-width: 1100px) {
  .news-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .9fr);
  }

  .news-list button {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 9px;
  }

  .news-rail-thumb,
  .news-list .news-rail-thumb {
    width: 78px;
  }
}

@media (max-width: 980px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-feature,
  .news-sidebar {
    height: auto;
  }

  .news-feature {
    grid-template-rows: 310px auto;
  }

  .news-sidebar {
    min-height: 0;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .news-list button {
    min-height: 92px;
  }
}

@media (max-width: 640px) {
  .news-feature {
    grid-template-rows: 235px auto;
  }

  .news-feature-copy {
    padding: 20px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .news-list button {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 84px;
  }

  .news-rail-thumb,
  .news-list .news-rail-thumb {
    width: 76px;
    min-height: 62px;
  }
}

/* =========================================================
   32 — NEWS LAUNCHER / TIMELINE REDESIGN
   ========================================================= */
.news-section {
  padding-top: 94px;
}

.news-section::before {
  inset: 18px -8% auto;
  height: 520px;
  background:
    radial-gradient(circle at 24% 38%, rgba(211,154,63,.085), transparent 30rem),
    radial-gradient(circle at 78% 32%, rgba(29,94,80,.11), transparent 28rem);
}

.news-section-header {
  margin-bottom: 34px;
}

.news-section-header h2 {
  font-size: clamp(2.7rem, 3.20vw, 3.20rem);
  letter-spacing: -.055em;
}

.news-section-header p {
  max-width: 720px;
}

.news-layout {
  grid-template-columns: minmax(0, 1.58fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: stretch;
}

.news-feature {
  height: 610px;
  grid-template-rows: 355px minmax(0, 1fr);
  overflow: visible;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8,17,16,.98), rgba(4,10,10,.99));
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  transition: transform .35s ease, box-shadow .35s ease;
}

.news-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 42px 110px rgba(0,0,0,.5), 0 0 46px rgba(211,154,63,.07);
}

.news-feature-media {
  min-height: 355px;
  border-radius: 14px 14px 0 0;
  background-size: 103%;
  background-position: center;
  transform: translateZ(0);
  transition: background-size 1.2s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.news-feature:hover .news-feature-media {
  background-size: 110%;
  filter: saturate(1.08) contrast(1.04);
}

.news-feature-media::before {
  background:
    linear-gradient(90deg, rgba(2,7,7,.28), transparent 50%, rgba(2,7,7,.08)),
    linear-gradient(180deg, rgba(2,7,7,0) 34%, rgba(2,7,7,.18) 58%, rgba(2,7,7,.98) 100%);
}

.news-feature-media::after {
  inset: auto -10% -42% 18%;
  height: 82%;
  background: radial-gradient(ellipse, rgba(229,91,28,.24), transparent 66%);
  filter: blur(30px);
}

.news-feature-media__top {
  padding: 2px;
}

.news-channel-badge,
.news-feature-state {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.news-feature-copy {
  min-height: 255px;
  padding: 25px 30px 28px;
  border: 0;
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(180deg, rgba(7,16,15,.99), rgba(3,9,9,.995));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.news-feature-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.news-main-text {
  max-width: 780px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #969e99;
  font-size: .76rem;
  line-height: 1.72;
}

.news-main-text .news-links {
  display: none;
}

.news-main-link {
  min-height: 40px;
  margin-top: auto;
  padding: 0 15px;
  gap: 12px;
  color: #f6eee2;
  border: 1px solid rgba(211,154,63,.28);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(211,154,63,.12), rgba(217,71,19,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.news-main-link:hover {
  transform: translateY(-2px);
  border-color: rgba(236,178,88,.6);
  background: linear-gradient(135deg, rgba(211,154,63,.2), rgba(217,71,19,.14));
  box-shadow: 0 12px 28px rgba(0,0,0,.22), 0 0 22px rgba(211,154,63,.07);
}

.news-main-link span {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
}

.news-sidebar,
.news-timeline {
  min-height: 610px;
  padding: 4px 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.news-sidebar-head {
  min-height: 58px;
  padding: 0 0 18px 30px;
  border-bottom: 0;
}

.news-sidebar-head span {
  color: #d9ad64;
}

.news-sidebar-head small {
  display: block;
  margin-top: 5px;
  color: #616b66;
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.news-sidebar-head strong {
  border: 0;
  background: rgba(211,154,63,.09);
  box-shadow: inset 0 0 0 1px rgba(211,154,63,.18);
}

.news-list {
  position: relative;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-list::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 13px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(232,174,86,.58), rgba(211,154,63,.18) 72%, transparent);
  box-shadow: 0 0 14px rgba(211,154,63,.12);
}

.news-list button {
  position: relative;
  min-height: 103px;
  padding: 13px 0 13px 43px;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) 74px;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  transition: transform .22s ease, background .22s ease;
}

.news-list button::after {
  display: none;
}

.news-list button:hover,
.news-list button.active {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(211,154,63,.085), rgba(255,255,255,.014) 72%, transparent);
}

.news-timeline-marker {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #07100f;
  box-shadow: 0 0 0 1px rgba(211,154,63,.28);
}

.news-timeline-marker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #716449;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.news-list button.active .news-timeline-marker,
.news-list button:hover .news-timeline-marker {
  box-shadow: 0 0 0 1px rgba(237,180,92,.7), 0 0 18px rgba(211,154,63,.18);
}

.news-list button.active .news-timeline-marker i,
.news-list button:hover .news-timeline-marker i {
  transform: scale(1.35);
  background: #f0b85d;
  box-shadow: 0 0 12px rgba(240,184,93,.85);
}

.news-list button.active .news-timeline-marker i {
  animation: newsTimelinePulse 1.8s ease-in-out infinite;
}

@keyframes newsTimelinePulse {
  0%,100% { box-shadow: 0 0 8px rgba(240,184,93,.55); }
  50% { box-shadow: 0 0 18px rgba(240,184,93,.95); }
}

.news-timeline-date {
  align-self: start;
  padding-top: 5px;
  color: #6f7974;
  font-size: .51rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.news-list button.active .news-timeline-date {
  color: #e0aa55;
}

.news-rail-copy {
  min-width: 0;
}

.news-rail-copy > small {
  color: #cb7c36;
  font-size: .49rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.news-rail-copy strong {
  margin-top: 5px;
  color: #daddd8;
  font-size: .76rem;
  line-height: 1.28;
}

.news-list button.active .news-rail-copy strong {
  color: #fff4df;
}

.news-timeline-action {
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #78817d;
  font-size: .5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.news-list button:hover .news-timeline-action,
.news-list button.active .news-timeline-action {
  color: #cda05d;
  opacity: 1;
  transform: none;
}

.news-timeline-thumb {
  width: 74px;
  height: 56px;
  border-radius: 7px;
  background-color: #101a19;
  background-size: cover;
  background-position: center;
  filter: saturate(.65) contrast(1.05) brightness(.78);
  opacity: .68;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.news-list button:hover .news-timeline-thumb,
.news-list button.active .news-timeline-thumb {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1.08) brightness(.95);
}

@media (max-width: 1100px) {
  .news-layout { grid-template-columns: minmax(0,1.35fr) minmax(300px,.76fr); gap: 24px; }
  .news-list button { grid-template-columns: 42px minmax(0,1fr) 62px; padding-left: 40px; }
  .news-timeline-thumb { width: 62px; height: 50px; }
}

@media (max-width: 980px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-feature { height: auto; }
  .news-sidebar, .news-timeline { min-height: 0; padding: 12px 0 0; }
  .news-sidebar-head { padding-left: 30px; }
  .news-list button { min-height: 88px; }
}

@media (max-width: 640px) {
  .news-section { padding-top: 72px; }
  .news-section-header h2 { font-size: clamp(2.2rem,10vw,3rem); }
  .news-feature { grid-template-rows: 255px auto; border-radius: 12px; }
  .news-feature-media { min-height: 255px; border-radius: 12px 12px 0 0; background-size: cover; }
  .news-feature:hover .news-feature-media { background-size: cover; }
  .news-feature-copy { padding: 20px; border-radius: 0 0 12px 12px; }
  .news-feature-copy h3 { font-size: 1.75rem; }
  .news-list button { grid-template-columns: 38px minmax(0,1fr); padding: 12px 4px 12px 38px; }
  .news-timeline-thumb { display: none; }
  .news-timeline-action { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .news-feature,
  .news-feature-media,
  .news-list button,
  .news-timeline-marker i { transition: none; }
  .news-list button.active .news-timeline-marker i { animation: none; }
}

/* =========================================================
   31 — BORDERLESS PREMIUM PASS
   Vereinheitlicht die restlichen Bereiche mit dem neuen
   News-Launcher: neutrale Kanten, mehr Tiefe, Licht und Hover.
   ========================================================= */

/* Große Flächen: Goldkante entfernen, Tiefe über Schatten erzeugen */
.community-card,
.chaos-today,
.live-hero-card,
.discord-panel,
.join-banner {
  border-color: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.community-card,
.chaos-today,
.live-hero-card,
.discord-panel,
.join-banner,
.build-card,
.media-card {
  transition:
    transform 220ms cubic-bezier(.22, .8, .24, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

/* Hero-Statistik: nur noch eine sehr dezente Glas-Kante */
.community-card {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 100% 0%, rgba(102, 55, 21, 0.16), transparent 15rem),
    linear-gradient(150deg, rgba(12, 17, 16, 0.91), rgba(5, 10, 10, 0.94));
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 36px 88px rgba(0, 0, 0, 0.5),
    0 0 42px rgba(226, 122, 47, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Heute im Chaos: keine goldene Außenlinie mehr */
.chaos-today {
  border-color: rgba(255, 255, 255, 0.065);
  background:
    radial-gradient(circle at 12% 0%, rgba(211, 154, 63, 0.065), transparent 19rem),
    radial-gradient(circle at 90% 100%, rgba(38, 229, 138, 0.04), transparent 18rem),
    linear-gradient(145deg, rgba(10, 19, 18, 0.97), rgba(4, 11, 10, 0.99));
}

.chaos-today:hover {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.46),
    0 0 38px rgba(38, 229, 138, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chaos-today__card:hover,
.chaos-today__card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.036);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(211, 154, 63, 0.045);
}

/* Build- und Medienkarten: neutrale Kante, kräftigerer Lift */
.build-card,
.build-card:first-child,
.media-card,
.media-card:nth-child(n) {
  border-color: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.build-card:hover,
.build-card:focus-visible,
.media-card:hover,
.media-card:focus-visible {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.52),
    0 0 34px rgba(226, 122, 47, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.build-card:hover .build-card-media,
.build-card:focus-visible .build-card-media,
.media-card:hover img,
.media-card:hover video,
.media-card:focus-visible img,
.media-card:focus-visible video {
  transform: scale(1.085);
  filter: saturate(1.12) contrast(1.04);
}

/* Discord-Bereich: gleiche schwebende Glasflächen wie im Newsbereich */
.live-hero-card,
.discord-panel {
  border-color: rgba(255, 255, 255, 0.07);
}

.live-hero-card:hover,
.discord-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 36px 86px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(38, 229, 138, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.voice-channel-modern,
.member-modern,
.role-modern {
  border-color: rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.voice-channel-modern:hover,
.member-modern:hover,
.role-modern:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

/* Join-Banner: Bild und Licht statt goldener Rahmen */
.join-banner {
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.44),
    0 0 48px rgba(226, 91, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.join-banner:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.56),
    0 0 58px rgba(226, 91, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

/* Gold bleibt als Akzent erhalten, aber nicht mehr als Außenrahmen */
.build-filter,
.section-more a,
.chaos-today__icon,
.build-game,
.build-category {
  box-shadow: none;
}

@media (hover: none) {
  .community-card:hover,
  .chaos-today:hover,
  .live-hero-card:hover,
  .discord-panel:hover,
  .join-banner:hover,
  .build-card:hover,
  .media-card:hover,
  .voice-channel-modern:hover,
  .member-modern:hover,
  .role-modern:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-card,
  .chaos-today,
  .live-hero-card,
  .discord-panel,
  .join-banner,
  .build-card,
  .media-card,
  .voice-channel-modern,
  .member-modern,
  .role-modern {
    transition: none;
  }
}

/* =========================================================
   40 — PREMIUM GLASS SYSTEM V5
   Einheitlicher Glass-/Shadow-Stil, konsistente Hover-Bewegung
   und ein rahmenloser Seitenaufbau.
   ========================================================= */

:root {
  --glass-border: rgba(255, 255, 255, 0.065);
  --glass-border-hover: rgba(255, 255, 255, 0.135);
  --glass-bg: linear-gradient(145deg, rgba(10, 20, 18, 0.94), rgba(4, 11, 10, 0.975));
  --glass-shadow: 0 22px 55px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.026);
  --glass-shadow-hover: 0 34px 76px rgba(0, 0, 0, 0.50), 0 0 40px rgba(35, 106, 83, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --card-lift: translateY(-6px);
}

/* Äußerer Goldrahmen vollständig entfernen */
.site-shell {
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.64),
    0 0 85px rgba(12, 52, 43, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

/* Header ebenfalls neutral und ruhig */
.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.38),
    inset 0 -1px 0 rgba(255, 255, 255, 0.018);
}

/* Einheitliche große Glasflächen */
.community-card,
.chaos-today,
.live-hero-card,
.discord-panel,
.join-banner {
  border-color: var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  transition:
    transform 220ms cubic-bezier(.2,.8,.2,1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.community-card:hover,
.chaos-today:hover,
.live-hero-card:hover,
.discord-panel:hover,
.join-banner:hover {
  transform: var(--card-lift);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

/* Kleine Karten und Zeilen folgen derselben Bewegung */
.chaos-today__card,
.build-card,
.media-card,
.voice-channel-modern,
.member-modern,
.role-modern,
.news-timeline-item,
.news-list button,
.news-rail button {
  border-color: var(--glass-border);
  box-shadow:
    0 13px 30px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.022);
  transition:
    transform 210ms cubic-bezier(.2,.8,.2,1),
    border-color 210ms ease,
    box-shadow 210ms ease,
    background 210ms ease;
}

.chaos-today__card:hover,
.chaos-today__card:focus-visible,
.build-card:hover,
.build-card:focus-visible,
.media-card:hover,
.media-card:focus-visible,
.voice-channel-modern:hover,
.member-modern:hover,
.role-modern:hover,
.news-timeline-item:hover,
.news-timeline-item:focus-visible,
.news-list button:hover,
.news-list button:focus-visible,
.news-rail button:hover,
.news-rail button:focus-visible {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  background-color: rgba(255, 255, 255, 0.032);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(228, 139, 56, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  outline: none;
}

/* Aktive News bleibt akzentuiert, ohne wieder einen Goldrahmen zu bilden */
.news-timeline-item.active,
.news-list button.active,
.news-rail button.active {
  border-color: rgba(255, 255, 255, 0.105);
  background:
    radial-gradient(circle at 0 50%, rgba(211, 154, 63, 0.105), transparent 58%),
    rgba(255, 255, 255, 0.028);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.43),
    0 0 28px rgba(211, 154, 63, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Bildbewegung überall gleich */
.build-card-media,
.media-card img,
.media-card video,
.news-feature-media,
.news-launcher-visual,
.news-timeline-thumb {
  transition:
    transform 620ms cubic-bezier(.2,.8,.2,1),
    filter 420ms ease;
}

.build-card:hover .build-card-media,
.build-card:focus-visible .build-card-media,
.media-card:hover img,
.media-card:hover video,
.media-card:focus-visible img,
.media-card:focus-visible video,
.news-feature:hover .news-feature-media,
.news-launcher-main:hover .news-launcher-visual,
.news-timeline-item:hover .news-timeline-thumb {
  transform: scale(1.065);
  filter: saturate(1.11) contrast(1.045) brightness(1.035);
}

/* Innere Discord-Zeilen: seitlicher Impuls statt unterschiedlicher Effekte */
.voice-channel-modern:hover,
.member-modern:hover,
.role-modern:hover {
  transform: translateX(4px) translateY(-2px);
}

/* Gold nur noch als Akzent, nicht als Umrandung kompletter Module */
.chaos-today,
.community-card,
.live-hero-card,
.discord-panel,
.join-banner,
.build-card,
.media-card {
  outline: none;
}

/* Tastaturfokus bleibt sichtbar */
:is(a, button, [tabindex]):focus-visible {
  outline: 2px solid rgba(224, 165, 79, 0.72);
  outline-offset: 3px;
}

@media (hover: none) {
  .community-card:hover,
  .chaos-today:hover,
  .live-hero-card:hover,
  .discord-panel:hover,
  .join-banner:hover,
  .chaos-today__card:hover,
  .build-card:hover,
  .media-card:hover,
  .voice-channel-modern:hover,
  .member-modern:hover,
  .role-modern:hover,
  .news-timeline-item:hover,
  .news-list button:hover,
  .news-rail button:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-card,
  .chaos-today,
  .live-hero-card,
  .discord-panel,
  .join-banner,
  .chaos-today__card,
  .build-card,
  .media-card,
  .voice-channel-modern,
  .member-modern,
  .role-modern,
  .news-timeline-item,
  .news-list button,
  .news-rail button,
  .build-card-media,
  .media-card img,
  .media-card video,
  .news-feature-media,
  .news-launcher-visual,
  .news-timeline-thumb {
    transition: none !important;
  }
}
/* =========================================================
   42 — FIX: JOIN-BANNER-HINTERGRUND WIEDERHERSTELLEN
   Der Premium-Glass-Block darf das vorhandene join-bg.jpg
   nicht überschreiben.
   ========================================================= */

.join-banner {
  background:
    linear-gradient(
      90deg,
      rgba(16, 10, 7, 0.96) 0%,
      rgba(39, 16, 9, 0.72) 56%,
      rgba(12, 10, 9, 0.86) 100%
    ),
    url("/assets/join-bg.jpg") center / cover no-repeat;

  border-color: var(--glass-border);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.44),
    0 0 48px rgba(226, 91, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.join-banner:hover {
  background:
    linear-gradient(
      90deg,
      rgba(16, 10, 7, 0.93) 0%,
      rgba(39, 16, 9, 0.66) 56%,
      rgba(12, 10, 9, 0.82) 100%
    ),
    url("/assets/join-bg.jpg") center / cover no-repeat;

  border-color: var(--glass-border-hover);
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.56),
    0 0 58px rgba(226, 91, 32, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

/* =========================================================
   43 — TYPOGRAFIE-UPDATE: NEWS-CHRONIK
   ========================================================= */

.news-sidebar,
.news-timeline {
  min-width: 0;
}

.news-sidebar-head {
  min-height: 76px;
  padding: 0 0 20px 30px;
  align-items: center;
}

.news-sidebar-head span {
  color: #e0ad5b;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.news-sidebar-head small {
  margin-top: 7px;
  color: #87908b;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.025em;
}

.news-sidebar-head strong {
  min-width: 42px;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #e8b963;
  font-size: 0.9rem;
  font-weight: 900;
}

.news-list button {
  min-height: 116px;
  padding-top: 15px;
  padding-bottom: 15px;
  grid-template-columns: 58px minmax(0, 1fr) 82px;
  gap: 14px;
}

.news-timeline-date {
  padding-top: 4px;
  color: #8b9590;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.075em;
}

.news-rail-copy > small,
.news-list .news-rail-copy > small {
  color: #e09242;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.news-rail-copy strong,
.news-list .news-rail-copy strong {
  margin-top: 7px;
  color: #e7ebe7;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.news-timeline-action {
  margin-top: 8px;
  gap: 7px;
  color: #9aa39e;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.news-timeline-thumb {
  width: 82px;
  height: 62px;
  border-radius: 9px;
}

.news-timeline-marker {
  width: 17px;
  height: 17px;
}

.news-timeline-marker i {
  width: 6px;
  height: 6px;
}

.news-feature-media span,
.news-main-badge,
.news-feature-badge {
  font-size: 0.72rem;
}

.news-meta,
.news-main-meta {
  font-size: 0.72rem;
}

.news-feature-copy p,
.news-main-copy p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.news-feature-copy a,
.news-main-link {
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .news-list button {
    grid-template-columns: 54px minmax(0, 1fr) 72px;
  }

  .news-timeline-thumb {
    width: 72px;
    height: 56px;
  }

  .news-rail-copy strong,
  .news-list .news-rail-copy strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 640px) {
  .news-sidebar-head {
    min-height: 68px;
    padding: 0 4px 16px;
  }

  .news-sidebar-head span {
    font-size: 0.9rem;
  }

  .news-sidebar-head small {
    font-size: 0.72rem;
  }

  .news-sidebar-head strong {
    min-width: 38px;
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 0.82rem;
  }

  .news-list button {
    min-height: 102px;
    padding: 12px 8px 12px 38px;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 12px;
  }

  .news-timeline-date {
    grid-column: 1 / -1;
    padding-top: 0;
    font-size: 0.68rem;
  }

  .news-rail-copy > small,
  .news-list .news-rail-copy > small {
    font-size: 0.68rem;
  }

  .news-rail-copy strong,
  .news-list .news-rail-copy strong {
    font-size: 0.94rem;
  }

  .news-timeline-action {
    font-size: 0.68rem;
  }

  .news-timeline-thumb {
    display: block;
    width: 72px;
    height: 54px;
  }
}



/* =========================================================
   PREMIUM TYPOGRAPHY TUNING
   ========================================================= */

.site-shell{
  border:1px solid rgba(255,255,255,.06);
  box-shadow:
    0 42px 120px rgba(0,0,0,.58),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.section-header p,
.hero-description,
.join-copy p{
  font-size:.88rem;
  line-height:1.7;
}

.news-feature-copy h3{
  font-size:clamp(2rem,2.2vw,2.45rem);
  line-height:1.08;
}

.news-feature-copy p{
  font-size:.84rem;
}

.news-meta{
  font-size:.68rem;
}

.news-feature-copy a{
  font-size:.76rem;
}

.news-sidebar-head{
  min-height:60px;
}

.news-sidebar-head span{
  font-size:.95rem;
}

.news-sidebar-head small{
  font-size:.74rem;
}

.news-list .news-rail-copy small{
  font-size:.68rem;
}

.news-list .news-rail-copy strong{
  font-size:.92rem;
  line-height:1.35;
}

.build-card,
.media-card,
.server-panel,
.roles-strip,
.news-feature,
.news-sidebar{
  border-color:rgba(255,255,255,.07);
  box-shadow:
    0 22px 54px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.025);
}

.build-card:hover,
.media-card:hover,
.server-panel:hover{
  transform:translateY(-4px);
  box-shadow:
    0 34px 74px rgba(0,0,0,.45),
    0 0 26px rgba(211,154,63,.08);
}

.join-banner{
  background:
    linear-gradient(90deg,rgba(16,10,7,.96),rgba(39,16,9,.72),rgba(12,10,9,.84)),
    url("/assets/join-bg.jpg") center/cover no-repeat;
}

/* =========================================================
   44 — FINALER NEWS-FEINSCHLIFF
   Linke Hauptmeldung kompakter, rechte Chronik gut lesbar.
   Bestehende Bilder und Hintergründe bleiben unverändert.
   ========================================================= */

/* Linke Hauptmeldung: Titel wieder kleiner und ausgewogener */
.news-feature-copy h3,
.news-main-copy h3,
.news-main-title {
  max-width: 100%;
  font-size: clamp(1.9rem, 2vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
}

/* Fließtext links lesbar, aber nicht überdimensioniert */
.news-feature-copy p,
.news-main-copy p {
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
  color: #9fa7a2 !important;
}

/* Meta und Quellen links etwas zurücknehmen */
.news-meta,
.news-main-meta {
  font-size: 0.66rem !important;
}

.news-feature-copy a,
.news-main-link {
  font-size: 0.74rem !important;
}

/* Badges auf dem großen Bild kompakt halten */
.news-feature-media span,
.news-main-badge,
.news-feature-badge {
  font-size: 0.66rem !important;
}

/* Rechte Chronik: Überschrift gut lesbar, aber nicht zu groß */
.news-sidebar-head {
  min-height: 64px !important;
  padding-bottom: 16px !important;
}

.news-sidebar-head span {
  font-size: 0.96rem !important;
  line-height: 1.15 !important;
  letter-spacing: 0.1em !important;
}

.news-sidebar-head small {
  margin-top: 6px !important;
  font-size: 0.73rem !important;
  line-height: 1.4 !important;
}

.news-sidebar-head strong {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
  font-size: 0.82rem !important;
}

/* Timeline-Einträge kompakter als zuvor, aber deutlich lesbarer als ursprünglich */
.news-list button,
.news-timeline-item {
  min-height: 108px !important;
}

.news-timeline-date {
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
}

.news-rail-copy > small,
.news-list .news-rail-copy > small,
.news-timeline-channel {
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.news-rail-copy strong,
.news-list .news-rail-copy strong,
.news-timeline-title {
  font-size: 0.92rem !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
}

.news-timeline-action {
  font-size: 0.7rem !important;
  line-height: 1.3 !important;
}

/* Aktive Meldung klar hervorheben, ohne größer zu werden */
.news-list button.active,
.news-timeline-item.active {
  transform: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(211, 154, 63, 0.13),
      rgba(10, 18, 17, 0.96) 42%,
      rgba(7, 14, 13, 0.98)
    ) !important;
  border-color: rgba(211, 154, 63, 0.24) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 3px 0 0 rgba(224, 171, 86, 0.78) !important;
}

/* Join-Banner-Hintergrund ausdrücklich erhalten */
.join-banner {
  background:
    linear-gradient(
      90deg,
      rgba(16, 10, 7, 0.96) 0%,
      rgba(39, 16, 9, 0.72) 56%,
      rgba(12, 10, 9, 0.84) 100%
    ),
    url("/assets/join-bg.jpg") center / cover no-repeat !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .news-feature-copy h3,
  .news-main-copy h3,
  .news-main-title {
    font-size: clamp(1.8rem, 2.6vw, 2.15rem) !important;
  }

  .news-rail-copy strong,
  .news-list .news-rail-copy strong,
  .news-timeline-title {
    font-size: 0.88rem !important;
  }
}

@media (max-width: 640px) {
  .news-feature-copy h3,
  .news-main-copy h3,
  .news-main-title {
    font-size: clamp(1.65rem, 8vw, 2rem) !important;
  }

  .news-feature-copy p,
  .news-main-copy p {
    font-size: 0.82rem !important;
  }

  .news-sidebar-head span {
    font-size: 0.88rem !important;
  }

  .news-sidebar-head small {
    font-size: 0.7rem !important;
  }

  .news-rail-copy strong,
  .news-list .news-rail-copy strong,
  .news-timeline-title {
    font-size: 0.9rem !important;
  }
}
