
/************************************************************
 * LOKALE SCHRIFTARTEN (kein externer Aufruf, DSGVO-konform)
 * Dateien liegen in /assets/fonts/ auf deinem Server.
 * Einrichtung: siehe assets/fonts/ANLEITUNG.txt
 ************************************************************/
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rajdhani';
  src: url('../fonts/rajdhani-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrains-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/************************************************************
 * 0) DESIGN-VARIABLEN & GRUNDEINSTELLUNGEN
 * (Struktur/Komponenten nach Vorlage des Nutzers, Akzentfarbe
 *  auf Lila/Cyan umgestellt statt Gold)
 ************************************************************/
:root{
  --bg:#0b0c0e;
  --panel:#14161a;
  --panel2:#1a1d22;
  --text:#eceeef;
  --muted:#b6b9be;
  --accent:#7c5cff;       /* Lila statt Gold */
  --accent-2:#00e5c7;     /* Cyan als Sekundärfarbe */
  --accent-ink:#ffffff;   /* Textfarbe auf dem Akzent-Button */
  --success:#57d17a;
  --danger:#ff5e66;
  --warn:#f0b44d;
  --border:#23262b;
  --radius:14px;
  --shadow:0 6px 20px rgba(0,0,0,.35);
  --font-mono: 'JetBrains Mono', monospace;

  --brand-facebook:#1877F2;
  --brand-instagram-1:#f77737;
  --brand-instagram-2:#e1306c;
  --brand-instagram-3:#c13584;
  --brand-youtube:#FF0000;
  --brand-twitch:#9146FF;
  --brand-tiktok:#000000;
  --brand-steam:#171a21;
  --brand-discord:#5865F2;
}

*{ box-sizing:border-box }
html{ font-size:16px; scroll-behavior:smooth; }
html,body{ height:100% }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{ max-width:100%; height:auto; display:block }
a{ color:var(--text); text-decoration:none }
a:hover{ opacity:.92 }
h1,h2,h3,h4{ margin:0 0 .6rem; font-weight:800; letter-spacing:.2px; }
p{ margin:0 0 .75rem; color:var(--muted); }
.small{ font-size:.9rem }
.muted{ color:var(--muted) }
:focus-visible{ outline:2px solid var(--accent-2); outline-offset:2px; }

.sr-only{
  position:absolute !important; width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/************************************************************
 * 1) BUTTONS, INPUTS & FORM ELEMENTE
 ************************************************************/
.btn,.btn-ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.7rem .95rem; border-radius:10px; cursor:pointer;
  gap:.5rem; user-select:none; white-space:nowrap; font-size:14px;
  border:1px solid transparent; transition:transform .15s ease, border-color .15s ease, filter .15s ease;
}
.btn{
  border:1px solid #2a2f35;
  background:var(--accent);
  color:var(--accent-ink); font-weight:800;
}
.btn:hover{ transform:translateY(-1px); filter:brightness(1.08); }
.btn-ghost{
  border:1px solid var(--border);
  background:var(--panel2);
  color:#fff;
}
.btn-ghost:hover{ border-color:#2f343a }
.btn-block{ width:100%; }
.btn-sm,.btn-ghost-sm{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.45rem .7rem; border-radius:10px; font-size:.85rem; font-weight:800;
  border:1px solid var(--border); background:var(--panel); color:#fff;
}
.btn-sm{ background:var(--accent); color:var(--accent-ink); border-color:#2a2f35; }
.btn-ghost-sm:hover{ border-color:#2f343a }
.btn-danger{ background:rgba(255,94,102,.12); border-color:#5a2e30; color:var(--danger); }

.input,select.input,textarea.input{
  width:100%; padding:.7rem .8rem; border-radius:10px;
  border:1px solid var(--border); background:#0f1114; color:#fff;
  outline:none; transition:border .15s, box-shadow .15s; font:14px/1.5 system-ui, sans-serif;
}
.input:focus{
  border-color:#3b4047;
  box-shadow:0 0 0 2px rgba(124,92,255,.25);
}
textarea.input{ resize:vertical }
.field{ margin-bottom:14px; }
.field label{ display:block; font-size:13px; font-weight:700; margin-bottom:6px; color:var(--text); }
.field-hint{ font-size:12px; color:var(--muted); margin-top:6px; }

/************************************************************
 * 2) LAYOUT-CONTAINER & KARTEN
 ************************************************************/
.container,.wrap{ max-width:1200px; margin:24px auto; padding:0 16px }

.wrap.two,.home-layout{
  display:grid; grid-template-columns:1fr 360px; gap:24px; align-items:start;
}
@media (max-width:980px){
  .wrap.two,.home-layout{ grid-template-columns:1fr }
}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  margin-bottom:20px;
}

/************************************************************
 * 3) HERO / BANNER & SUCHE OBEN
 ************************************************************/
.hero{
  position:relative; width:100%; min-height:220px;
  background:#000 center/cover no-repeat;
  border-bottom:1px solid #000;
}
.hero__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero__scrim{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.05) 60%); }

.search-box{
  position:absolute; left:16px; bottom:16px; z-index:5;
  display:flex; gap:8px; align-items:center; flex-wrap:wrap;
}
.search-input{
  width:min(60vw,380px);
  padding:10px 12px; border-radius:10px; border:1px solid var(--border);
  background:#111316; color:#fff;
}

.lang-switch--hero{ position:absolute; right:16px; bottom:16px; z-index:5; display:flex; gap:4px; }
.lang-switch__item{
  font-family:var(--font-mono); font-size:18px; font-weight:700; padding:5px;
  border-radius:6px; color:#cbd5e1; background:#161a20; border:1px solid #2a2f38;
  line-height:1; display:inline-flex; align-items:center; justify-content:center;
}
.lang-switch__item svg{ display:block; border-radius:3px; }
.lang-switch__item:hover{ border-color:#3b4047; }
.lang-switch__item.is-active{ background:var(--accent); color:var(--accent-ink); border-color:transparent; }

@media (max-width:520px){
  .hero{ min-height:160px; }
  .lang-switch--hero{ position:static; margin:10px 16px 0 auto; display:flex; justify-content:flex-end }
  .search-box{ position:static; margin:10px 16px }
}

/* Status-Ticker (live Server-Status, schmaler Streifen) */
.status-ticker{
  background:#121419; border-bottom:1px solid #000;
  overflow:hidden; white-space:nowrap; height:32px; display:flex; align-items:center;
}
.status-ticker__track{ display:inline-flex; align-items:center; gap:32px; animation:ticker 30s linear infinite; padding-left:100%; }
.status-ticker:hover .status-ticker__track{ animation-play-state:paused; }
@keyframes ticker{ from{ transform:translateX(0); } to{ transform:translateX(-100%); } }
.status-ticker__item{ font-family:var(--font-mono); font-size:12px; color:var(--muted); display:inline-flex; align-items:center; gap:8px; }
.status-ticker__item strong{ color:var(--text); }
.dot{ width:7px; height:7px; border-radius:50%; display:inline-block; }
.dot.is-online{ background:var(--success); box-shadow:0 0 6px var(--success); }
.dot.is-offline{ background:var(--danger); }
.dot.is-maint{ background:var(--warn); }
.live-dot{ display:inline-flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:10px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.06em; }
.live-dot::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--accent-2); box-shadow:0 0 6px var(--accent-2); animation:pulse 1.6s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

/************************************************************
 * 4) NAVIGATION (TOP-NAV + MOBILMENÜ)
 ************************************************************/
.nav{
  background:#121419;
  border-top:1px solid #000;
  border-bottom:1px solid #000;
  position:sticky; top:0; z-index:50;
}
.navbar{
  max-width:1200px; margin:0 auto; padding:.6rem 1.25rem;
  display:flex; align-items:center; gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand__mark{
  color:var(--bg); background:linear-gradient(135deg, var(--accent), var(--accent-2));
  width:36px; height:36px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0;
  overflow:hidden;
}
.brand__mark img{ width:100%; height:100%; object-fit:contain; }
.brand__logo{ height:36px; width:auto; max-width:170px; object-fit:contain; }
.brand__name{
  font-family:'Rajdhani', system-ui, sans-serif; font-weight:700; font-size:21px;
  letter-spacing:.04em; text-transform:uppercase; line-height:1;
  background:linear-gradient(90deg, #fff 0%, var(--accent-2) 120%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  white-space:nowrap;
}

.burger{
  display:none; background:transparent;
  border:1px solid var(--border); border-radius:10px;
  padding:.45rem .6rem; color:#fff; cursor:pointer; flex-shrink:0;
}
.nav-inner{
  flex:1;
  display:flex; align-items:center; justify-content:center;
  gap:6px; flex-wrap:wrap;
}
.nav-inner a{
  font-weight:600; letter-spacing:.3px; font-size:15px;
  padding:.5rem .75rem; border-radius:10px; white-space:nowrap;
  transition:color .18s, background-color .18s, transform .18s;
}
.nav-inner a:hover{ color:var(--accent-ink); background:var(--accent); transform:translateY(-1px) }
.nav-inner a.is-active{ color:var(--accent-ink); background:var(--accent) }

.nav-spacer{ width:0; flex-shrink:0; }
@media (min-width:981px){ .nav-spacer{ width:36px; } }

.menu{ display:none }
@media (max-width:980px){
  .nav-inner{ display:none }
  .burger{ display:inline-flex; margin-left:auto; }
  .nav.is-open .navbar{ flex-wrap:wrap; }
  .nav.is-open .nav-inner{
    display:flex; flex-direction:column; align-items:stretch;
    width:100%; gap:8px; padding:14px 0 6px; justify-content:flex-start;
  }
  .nav.is-open .nav-inner a{ width:100%; text-align:left; }
}

/************************************************************
 * 5) SLIDER (Bild-Slideshow in der Willkommens-Karte)
 ************************************************************/
.slider{
  position:relative;
  height:clamp(220px,45vw,380px);
  border-radius:12px; overflow:hidden;
  border:1px solid var(--border); background:#0c0d0f;
}
.slide{ position:absolute; inset:0; opacity:0; transition:opacity .8s ease }
.slide.active{ opacity:1 }
.slide img{ width:100%; height:100%; object-fit:cover }
.slide .cap{
  position:absolute; left:12px; bottom:12px;
  background:rgba(0,0,0,.45); padding:8px 10px; border-radius:8px;
}
.slider__placeholder{ display:flex; align-items:center; justify-content:center; height:100%; color:var(--border); font-size:42px; font-weight:800; }

/************************************************************
 * 6) GAMESERVER-GITTER & SERVER-KARTEN
 ************************************************************/
.grid-servers{ display:grid; grid-template-columns:repeat(auto-fit, minmax(230px, 1fr)); gap:16px; }
@media (max-width:980px){ .grid-servers{ grid-template-columns:repeat(2,1fr) } }
@media (max-width:680px){ .grid-servers{ grid-template-columns:1fr } }

.server-card img{
  width:100%; aspect-ratio:16/9; object-fit:cover;
  border-radius:10px; border:1px solid var(--border); margin-bottom:10px;
}
.server-card__noimg{
  width:100%; aspect-ratio:16/9; border-radius:10px; border:1px solid var(--border);
  margin-bottom:10px; background:var(--panel2); display:flex; align-items:center; justify-content:center;
  font-size:32px; font-weight:800; color:var(--border);
}
.server-card__top{ display:flex; justify-content:space-between; align-items:flex-start; gap:10px; margin-bottom:6px; }
.server-card__players{ font-weight:800; font-size:1.1rem; }
.server-card__players span{ font-weight:400; color:var(--muted); font-size:.85rem; }
.meta-row{ display:flex; flex-wrap:wrap; gap:8px; margin-top:6px }

.chip{
  display:inline-block; padding:4px 10px;
  border:1px solid var(--border); border-radius:999px;
  background:var(--panel2); font-weight:700; font-size:.9rem;
}
.desc-box{
  margin-top:8px; padding:10px 12px;
  border:1px solid var(--border); border-radius:10px;
  background:var(--panel2);
}
.ip-box{
  font-family:var(--font-mono); font-size:13px; background:var(--panel2);
  border:1px solid var(--border); border-radius:8px; padding:8px 12px; margin-top:10px;
  color:var(--accent-2); display:flex; justify-content:space-between; align-items:center;
}

/************************************************************
 * 7) EVENTS – COVER & LISTE
 ************************************************************/
.event-cover{
  width:100%; aspect-ratio:16/9; object-fit:cover;
  border-radius:10px; border:1px solid var(--border);
  margin-bottom:12px; background:#0c0d0f;
}
.event-row{
  display:grid; grid-template-columns:64px 1fr; gap:14px; align-items:flex-start;
}
.event-date{
  text-align:center; background:var(--panel2); border:1px solid var(--border); border-radius:10px; padding:10px 0;
}
.event-date .day{ font-size:22px; font-weight:800; display:block; line-height:1; color:var(--accent-2); }
.event-date .month{ font-size:11px; text-transform:uppercase; color:var(--muted); }

/* Klickbare Event-Karten mit Titelbild (Startseite "Events & Gewinnspiele") */
.event-news-card{ display:block; padding:0; overflow:hidden; color:var(--text); transition:transform .15s, border-color .15s; }
.event-news-card:hover{ transform:translateY(-2px); border-color:rgba(124,92,255,0.45); opacity:1; }
.event-news-card img{ width:100%; aspect-ratio:16/9; object-fit:cover; }
.event-news-card__noimg{
  width:100%; aspect-ratio:16/9; display:flex; align-items:center; justify-content:center;
  background:var(--panel2); font-size:32px;
}
.event-news-card__body{ padding:16px 18px; }
.event-news-card__date{ font-family:var(--font-mono); font-size:11px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }

.event-card:target{ border-color:var(--accent); box-shadow:0 0 0 2px rgba(124,92,255,0.35); scroll-margin-top:90px; }

/* Event-Typ-Kennzeichnung: Event (lila) / Gewinnspiel (gold) / Wartung (orange) */
.event-news-card{ position:relative; }
.event-news-card.type-event     { border-color: rgba(124,92,255,0.55); box-shadow: 0 0 0 1px rgba(124,92,255,0.25); }
.event-news-card.type-giveaway  { border-color: rgba(255,209,102,0.6); box-shadow: 0 0 0 1px rgba(255,209,102,0.3); }
.event-news-card.type-maintenance { border-color: rgba(255,107,84,0.55); box-shadow: 0 0 0 1px rgba(255,107,84,0.3); }

.type-tag{
  position:absolute; top:10px; left:10px; z-index:2;
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-mono); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  padding:5px 10px; border-radius:999px; backdrop-filter:blur(4px);
}
.type-tag--event    { background:rgba(124,92,255,0.18); color:#b9a8ff; border:1px solid rgba(124,92,255,0.5); }
.type-tag--giveaway { background:rgba(255,209,102,0.18); color:#ffd166; border:1px solid rgba(255,209,102,0.5); }
.type-tag--maintenance { background:rgba(255,107,84,0.18); color:#ff8b73; border:1px solid rgba(255,107,84,0.5); }

.event-card.type-event     { border-left:3px solid #7c5cff; }
.event-card.type-giveaway  { border-left:3px solid #ffd166; }
.event-card.type-maintenance { border-left:3px solid #ff6b54; }

/* ---- Rich-Text-Toolbar (Event-Beschreibung im Admin) ---- */
.rte-toolbar{ display:flex; gap:6px; margin-bottom:8px; flex-wrap:wrap; }
.rte-toolbar button{
  width:34px; height:34px; border-radius:8px; border:1px solid var(--border);
  background:var(--panel2); color:#fff; cursor:pointer; font-weight:700; font-size:14px;
}
.rte-toolbar button:hover{ border-color:#3b4047; }
.rte-toolbar button.u{ text-decoration:underline; }
.rte-toolbar button.i{ font-style:italic; }
.rte-box{
  min-height:140px; border:1px solid var(--border); border-radius:10px; background:#0f1114;
  padding:12px 14px; color:#fff; font-size:14px; line-height:1.6;
}
.rte-box:focus{ outline:none; border-color:#3b4047; }
.rte-text-colors{ display:flex; gap:6px; align-items:center; padding:6px 8px; background:var(--panel2); border:1px solid var(--border); border-radius:8px; }
.rte-text-colors span{ width:18px; height:18px; border-radius:50%; cursor:pointer; border:1px solid rgba(255,255,255,0.2); display:inline-block; }
.rte-toolbar-sep{ width:1px; background:var(--border); margin:2px 4px; }

/* ---- Farbwähler (Event-Kartenfarbe) ---- */
.color-picker-row{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.color-picker-row input[type=color]{
  width:54px; height:38px; border-radius:8px; border:1px solid var(--border); background:none; cursor:pointer; padding:2px;
}
.color-swatches{ display:flex; gap:8px; flex-wrap:wrap; }
.color-swatch{ width:28px; height:28px; border-radius:50%; border:2px solid transparent; cursor:pointer; }
.color-swatch.is-selected{ border-color:#fff; box-shadow:0 0 0 2px var(--bg), 0 0 0 3px #fff; }

/* ---- Galerie-Upload-Vorschau (Admin) ---- */
.gallery-upload-preview{ display:grid; grid-template-columns:repeat(5,1fr); gap:8px; margin-top:10px; }
.gallery-upload-preview img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:8px; border:1px solid var(--border); }

/* ---- Event-Detailseite (groß, nach Klick auf eine Karte) ---- */
.event-detail{ border-radius:16px; overflow:hidden; border:1px solid var(--border); margin:24px 0; }
.event-detail__cover{ position:relative; }
.event-detail__cover img{ width:100%; aspect-ratio:21/9; object-fit:cover; display:block; }
.event-detail__scrim{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(8,10,16,0.92) 10%, rgba(8,10,16,0.3) 60%, transparent 100%); }
.event-detail__overlay{ position:absolute; left:0; right:0; bottom:0; padding:28px; }
.event-detail__body{ padding:28px; background:var(--panel); }
.event-detail__meta{ display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 20px; }
.event-detail__desc{ font-size:15px; line-height:1.75; color:var(--text); max-width:760px; }
.event-detail__desc strong{ color:#fff; }
.event-detail__gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:24px; }
.event-detail__gallery img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:10px; border:1px solid var(--border); cursor:pointer; transition:transform .15s; }
.event-detail__gallery img:hover{ transform:scale(1.03); }
@media (max-width:700px){
  .event-detail__gallery{ grid-template-columns:repeat(2,1fr); }
  .event-detail__cover img{ aspect-ratio:4/3; }
  .event-detail__body{ padding:20px; }
}

/************************************************************
 * 17) SCHÖNE FORMULARFELDER MIT ICON (Login/Register/Profil)
 ************************************************************/
.nice-field{ margin-bottom:16px; }
.nice-field label{ display:block; font-size:13px; font-weight:700; margin-bottom:7px; color:var(--text); }
.nice-field .input{ padding:11px 14px 11px 38px; font-size:14px; transition:border-color .15s, box-shadow .15s; }
.nice-field .input:focus{ border-color:var(--accent); box-shadow:0 0 0 3px rgba(124,92,255,.18); }
.field-icon-wrap{ position:relative; }
.field-icon-wrap .ico{ position:absolute; left:13px; bottom:11px; font-size:15px; opacity:.6; pointer-events:none; }
.field-icon-wrap .input{ padding-left:38px; }
.field-icon-wrap select.input{ padding-left:38px; }

/************************************************************
 * 18) AUTH-KARTE (Login/Register), Häkchen-Mensch-Check
 ************************************************************/
.auth-card{
  max-width:440px; margin:50px auto; background:linear-gradient(180deg, var(--panel), var(--panel2));
  border:1px solid var(--border); border-radius:18px; padding:36px 32px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}
.auth-card--wide{ max-width:620px; }
.auth-card__icon{
  width:56px; height:56px; border-radius:14px; margin:0 auto 18px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center; font-size:26px; color:#06070a;
}
.auth-card h1{ text-align:center; font-size:24px; margin-bottom:6px; }
.auth-card .sub{ text-align:center; margin-bottom:26px; color:var(--muted); }

.human-check{
  display:flex; align-items:center; gap:12px; padding:14px 16px;
  background:var(--panel2); border:1px solid var(--border); border-radius:12px; margin:18px 0;
  cursor:pointer; transition:border-color .15s;
}
.human-check:hover{ border-color:#3b4047; }
.human-check input[type=checkbox]{ width:22px; height:22px; flex-shrink:0; accent-color:var(--accent); cursor:pointer; }
.human-check__label{ font-size:14px; font-weight:600; flex:1; }
.human-check__badge{ font-family:var(--font-mono); font-size:10px; color:var(--muted); }

/************************************************************
 * 19) GROSSE SPIELE-AUSWAHL MIT ICON (Registrierung/Profil)
 ************************************************************/
.game-picker{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.game-card{
  position:relative; border:2px solid var(--border); border-radius:14px; background:var(--panel2);
  padding:16px 12px 14px; text-align:center; cursor:pointer; transition:border-color .15s, transform .15s, background .15s;
}
.game-card:hover{ transform:translateY(-2px); border-color:#3b4047; }
.game-card.is-selected{ border-color:var(--accent); background:rgba(124,92,255,0.12); }
.game-card input{ position:absolute; top:10px; right:10px; width:18px; height:18px; accent-color:var(--accent); }
.game-card__icon{ width:64px; height:64px; border-radius:14px; margin:0 auto 10px; object-fit:cover; border:1px solid var(--border); background:var(--bg); }
.game-card__icon--placeholder{ display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--border); }
.game-card__name{ font-weight:700; font-size:14px; }
@media (max-width:700px){ .game-picker{ grid-template-columns:repeat(2,1fr); } }

/************************************************************
 * 20) NAV-ADMIN-BUTTON (rollenfarbig)
 ************************************************************/
.nav-admin-btn{
  display:inline-flex; align-items:center; gap:7px; padding:8px 14px 8px 10px;
  border-radius:999px; font-family:var(--font-mono); font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.03em; border:1px solid; transition:transform .15s;
}
.nav-admin-btn:hover{ transform:translateY(-1px); opacity:1; }
.nav-admin-btn__dot{ width:7px; height:7px; border-radius:50%; }
.nav-admin-btn.role-moderator{ background:rgba(0,229,199,0.1); border-color:rgba(0,229,199,0.4); color:var(--accent-2); }
.nav-admin-btn.role-moderator .nav-admin-btn__dot{ background:var(--accent-2); box-shadow:0 0 6px var(--accent-2); }
.nav-admin-btn.role-admin{ background:rgba(124,92,255,0.1); border-color:rgba(124,92,255,0.4); color:#a995ff; }
.nav-admin-btn.role-admin .nav-admin-btn__dot{ background:#a995ff; box-shadow:0 0 6px #a995ff; }
.nav-admin-btn.role-boss_admin{ background:rgba(212,175,55,0.12); border-color:rgba(212,175,55,0.45); color:#d4af37; }
.nav-admin-btn.role-boss_admin .nav-admin-btn__dot{ background:#d4af37; box-shadow:0 0 6px #d4af37; }

/************************************************************
 * 21) SIDEBAR-PROFILBOX (eingeloggt, auf jeder Seite)
 ************************************************************/
.profile-box{ text-align:center; padding:0 !important; overflow:hidden; }
.profile-box__cover{ height:64px; margin:-1px -1px 0; border-radius:var(--radius) var(--radius) 0 0; background:linear-gradient(135deg, var(--accent), var(--accent-2)); }
.profile-box__cover.role-vip{ background:linear-gradient(135deg, #ffd166, #ff9f4d); }
.profile-box__cover.role-moderator{ background:linear-gradient(135deg, #00e5c7, #00a896); }
.profile-box__cover.role-admin{ background:linear-gradient(135deg, #7c5cff, #5a3fd6); }
.profile-box__cover.role-boss_admin{ background:linear-gradient(135deg, #d4af37, #8a6d1f); }
.profile-box__avatar{ width:78px; height:78px; border-radius:50%; object-fit:cover; border:4px solid var(--panel); position:relative; margin:-39px auto 0; display:block; box-shadow:0 4px 14px rgba(0,0,0,.4); }
.profile-box__name{ font-family:'Rajdhani', sans-serif; font-size:19px; font-weight:700; margin-top:10px; }
.profile-box__role{
  display:inline-flex; align-items:center; gap:5px; font-family:var(--font-mono); font-size:11px;
  text-transform:uppercase; letter-spacing:.05em; color:var(--accent-2); background:rgba(0,229,199,0.1);
  border:1px solid rgba(0,229,199,0.3); padding:3px 10px; border-radius:999px; margin-top:6px;
}
.profile-box__role.role-vip{ background:rgba(255,209,102,0.12); border-color:rgba(255,209,102,0.4); color:#ffd166; }
.profile-box__role.role-moderator{ background:rgba(0,229,199,0.1); border-color:rgba(0,229,199,0.4); color:var(--accent-2); }
.profile-box__role.role-admin{ background:rgba(124,92,255,0.1); border-color:rgba(124,92,255,0.4); color:#a995ff; }
.profile-box__role.role-boss_admin{ background:rgba(212,175,55,0.12); border-color:rgba(212,175,55,0.4); color:#d4af37; }
.profile-box__stats{ display:flex; justify-content:space-around; padding:14px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin:14px 0; }
.profile-box__stat{ text-align:center; }
.profile-box__stat .num{ font-family:'Rajdhani', sans-serif; font-size:20px; font-weight:700; color:#fff; }
.profile-box__stat .label{ font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; }
.profile-box__actions{ display:flex; flex-direction:column; gap:8px; padding:0 16px 18px; }
.profile-box__actions .btn-ghost, .profile-box__actions .btn{ width:100%; }
.profile-box__actions .btn-ghost.role-vip{ background:rgba(255,209,102,0.12); border-color:rgba(255,209,102,0.4); color:#ffd166; }
.profile-box__actions .btn-ghost.role-moderator{ background:rgba(0,229,199,0.1); border-color:rgba(0,229,199,0.4); color:var(--accent-2); }
.profile-box__actions .btn-ghost.role-admin{ background:rgba(124,92,255,0.1); border-color:rgba(124,92,255,0.4); color:#a995ff; }
.profile-box__actions .btn-ghost.role-boss_admin{ background:rgba(212,175,55,0.12); border-color:rgba(212,175,55,0.4); color:#d4af37; }

/************************************************************
 * 22) GEWINNSPIEL: REGION/LÄNDER-MEHRFACHAUSWAHL (Admin)
 ************************************************************/
.region-quick{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
.region-quick button{ padding:6px 12px; border-radius:999px; border:1px solid var(--border); background:var(--panel2); color:#fff; font-size:12px; font-weight:700; cursor:pointer; }
.region-quick button:hover{ border-color:var(--accent); }
.country-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:6px; max-height:220px; overflow-y:auto; padding:12px; background:#0f1114; border:1px solid var(--border); border-radius:10px; }
.country-grid label{ display:flex; align-items:center; gap:6px; font-size:13px; padding:4px 6px; border-radius:6px; cursor:pointer; }
.country-grid label:hover{ background:var(--panel2); }
.country-grid input{ width:auto; accent-color:var(--accent); }
@media (max-width:600px){ .country-grid{ grid-template-columns:repeat(2,1fr); } }

/************************************************************
 * 23) GEWINNSPIEL: BEDINGUNGEN HERVORGEHOBEN (Event-Seite)
 ************************************************************/
.conditions-panel{ background:var(--panel2); border:1px solid var(--border); border-radius:12px; padding:16px; margin-bottom:18px; }
.conditions-panel h4{ font-size:13px; text-transform:uppercase; letter-spacing:.05em; color:var(--accent-2); margin-bottom:10px; }
.condition-item{ display:flex; align-items:center; gap:10px; padding:8px 0; border-bottom:1px solid var(--border); }
.condition-item:last-child{ border-bottom:none; }
.condition-item__icon{ width:30px; height:30px; border-radius:8px; background:var(--bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:14px; }
.condition-item__text{ font-size:13px; }
.condition-ok{ color:var(--success); }
.condition-no{ color:var(--danger); }
.condition-unknown{ color:var(--muted); }

.lock-notice{ display:flex; gap:12px; align-items:flex-start; background:rgba(255,107,84,0.08); border:1px solid rgba(255,107,84,0.3); border-radius:10px; padding:14px 16px; }
.lock-notice__icon{ font-size:20px; }
.lock-notice__text{ font-size:13px; line-height:1.6; }
.lock-notice__text strong{ color:#ff8b73; }

/************************************************************
 * 24) V.I.P-BEREICH
 ************************************************************/
.vip-hero{
  border-radius:16px; padding:32px; margin-bottom:24px; text-align:center;
  background:linear-gradient(135deg, rgba(255,209,102,0.15), rgba(255,159,77,0.08));
  border:1px solid rgba(255,209,102,0.35);
}
.vip-hero h1{ font-size:28px; margin-bottom:6px; }
.vip-perk{ display:flex; align-items:flex-start; gap:14px; padding:16px; background:var(--panel2); border:1px solid var(--border); border-radius:12px; margin-bottom:12px; }
.vip-perk__icon{ width:42px; height:42px; border-radius:10px; background:linear-gradient(135deg,#ffd166,#ff9f4d); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }

/************************************************************
 * 25) ADMIN: SPIEL-ICON-ZEILEN
 ************************************************************/
.game-admin-row{ display:flex; align-items:center; gap:14px; padding:12px; background:var(--panel2); border:1px solid var(--border); border-radius:10px; margin-bottom:10px; }
.game-admin-row img{ width:48px; height:48px; border-radius:10px; object-fit:cover; border:1px solid var(--border); }
.game-admin-row .name{ font-weight:700; flex:1; }

/************************************************************
 * 8) LISTENANSICHTEN (Galerie, Mods)
 ************************************************************/
.list{ display:grid; gap:8px }
.item{
  display:grid; grid-template-columns:auto 1fr auto; gap:10px; align-items:center;
  background:var(--panel2); border:1px solid var(--border); border-radius:10px;
  padding:10px;
}
.item img{ width:200px; height:auto; object-fit:cover; border-radius:8px; border:1px solid var(--border); }

.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width:780px){ .gallery-grid{ grid-template-columns:repeat(2,1fr) } }
@media (max-width:520px){ .gallery-grid{ grid-template-columns:1fr } }
.gallery-tile{ border-radius:12px; overflow:hidden; border:1px solid var(--border); position:relative; aspect-ratio:4/3; background:var(--panel2); }
.gallery-tile img{ width:100%; height:100%; object-fit:cover; }
.gallery-tile__cap{ position:absolute; left:0; right:0; bottom:0; padding:10px 12px; background:linear-gradient(0deg, rgba(0,0,0,.8), transparent); font-size:13px; font-weight:600; }

/************************************************************
 * 9) LOGIN / AKTIONSELEMENTE
 ************************************************************/
.login-card h3{ margin-bottom:.5rem }
.actions{ display:flex; gap:8px; flex-wrap:wrap }
.sidebar-login__links{ display:flex; justify-content:space-between; font-size:12px; margin-top:10px; }
.sidebar-login__links a{ color:var(--accent-2); }
.sidebar-profile{ text-align:center; }
.sidebar-profile__name{ font-size:18px; font-weight:800; margin:10px 0 2px; }
.sidebar-profile__role{ font-family:var(--font-mono); font-size:11px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }

/************************************************************
 * 10) FOOTER
 ************************************************************/
.footer{ margin-top:28px; border-top:1px solid #0b0c0e; background:#0f1113; }
.footer-inner{
  max-width:1200px; margin:0 auto; padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
  color:var(--muted);
}
.footer-links{ display:flex; gap:18px; font-size:13px; }
.footer-links a:hover{ color:var(--text); }
.footer-social{ display:flex; gap:8px; }

/************************************************************
 * 11) DIVERSES / UTILITY
 ************************************************************/
code{ background:#101216; border:1px solid var(--border); padding:.15rem .35rem; border-radius:6px; }
hr{ border:none; border-top:1px solid var(--border); margin:12px 0 }
.card form{ min-width:0 } .card .input{ min-width:0 }
.empty-state{ text-align:center; padding:50px 20px; color:var(--muted); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:16px; flex-wrap:wrap; margin-bottom:18px; }
.eyebrow{ font-family:var(--font-mono); font-size:12px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.1em; }
.flash{ padding:12px 16px; border-radius:10px; margin:0 0 16px; font-size:14px; border:1px solid; }
.flash--success{ background:rgba(87,209,122,.1); border-color:#315c41; color:var(--success); }
.flash--error{ background:rgba(255,94,102,.1); border-color:#5a2e30; color:var(--danger); }
.flash--info{ background:rgba(124,92,255,.1); border-color:#3b2f6b; color:var(--accent); }

/************************************************************
 * 12) SOCIAL-BUTTONS (Startseite, große Kacheln + Header-Icons)
 ************************************************************/
.social-grid{ display:grid; grid-template-columns:1fr; gap:10px }
.social-btn{
  display:flex; align-items:center; gap:12px;
  border:1px solid var(--border); border-radius:12px;
  background:var(--panel2); padding:10px 12px;
  transition:transform .15s, background .15s, border-color .15s;
}
.social-btn:hover{ transform:translateY(-1px); border-color:#2f343a }
.social-btn .ico{ width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center }
.social-btn svg{ width:24px; height:24px; fill:#fff }
.social-btn.discord{   background:linear-gradient(90deg,#5865F2 0%, #3b45b8 100%) }
.social-btn.steam{     background:linear-gradient(90deg,#1b2838 0%, #0b141c 100%) }
.social-btn.facebook{  background:linear-gradient(90deg,#1877F2 0%, #0d47a1 100%) }
.social-btn.instagram{ background:linear-gradient(90deg,#c13584 0%, #e1306c 50%, #f77737 100%) }
.social-btn.youtube{ background:linear-gradient(90deg,#FF0000 0%, #a30000 100%) }
.social-btn span:last-child{ font-weight:800; letter-spacing:.3px }

/* Kompakte Social-Icons (z. B. im Header) */
.social-icons{ display:flex; gap:8px; flex-wrap:wrap; }
.social-icons .si{
  inline-size:32px; block-size:32px; border:1px solid var(--border); border-radius:8px;
  display:inline-flex; align-items:center; justify-content:center; background:var(--panel2);
  transition:transform .15s, border-color .15s, background .15s; color:#fff;
}
.social-icons .si:hover{ transform:translateY(-1px); border-color:#2f343a }
.social-icons .si svg{ width:18px; height:18px; display:block; fill:currentColor }
.social-icons .brand-facebook{ background:var(--brand-facebook) }
.social-icons .brand-steam{ background:var(--brand-steam) }
.social-icons .brand-discord{ background:var(--brand-discord) }
.social-icons .brand-youtube{ background:var(--brand-youtube) }
.social-icons .brand-instagram{
  background:
    radial-gradient(35% 35% at 30% 110%, #ffd600 0%, transparent 60%),
    radial-gradient(45% 50% at 100% 0%, #feda77 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-instagram-1) 0%, var(--brand-instagram-2) 50%, var(--brand-instagram-3) 100%);
  border-color:transparent;
}

/************************************************************
 * 13) BADGES (Status)
 ************************************************************/
.badge{
  display:inline-block; font-weight:800; letter-spacing:.3px; font-size:12px;
  padding:.25rem .55rem; border-radius:8px;
  border:1px solid var(--border); background:var(--panel2);
}
.badge.warn{ background:rgba(240,180,77,.14); border-color:#6b5230; color:#f0b44d }
.badge.online{ background:rgba(87,209,122,.14); border-color:#315c41; color:var(--success) }
.badge.offline{ background:rgba(255,94,102,.14); border-color:#5a2e30; color:var(--danger) }

/************************************************************
 * 14) TEAM-GRID
 ************************************************************/
.team-grid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px; }
@media (max-width:980px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .team-grid{ grid-template-columns:1fr; } }
.tcard{ text-align:center; transition:transform .15s, border-color .15s; }
.tcard:hover{ transform:translateY(-1px); border-color:#2f343a }
.tcard__ava{
  width:88px; height:88px; object-fit:cover; border-radius:50%;
  border:1px solid var(--border); margin:0 auto 12px;
}
.tcard__name{ font-weight:900; font-size:1.05rem; margin:0 0 4px 0; }
.tcard__rank{ font-size:.85rem; font-weight:700; color:var(--accent-2); text-transform:uppercase; letter-spacing:.05em; }

/************************************************************
 * 15) ADMIN-BEREICH (eigenständig, nutzt gleiche Variablen)
 ************************************************************/
.admin-shell{ display:flex; min-height:100vh; }
.admin-sidebar{ width:230px; flex-shrink:0; background:#0f1113; border-right:1px solid var(--border); padding:24px 16px; position:sticky; top:0; height:100vh; }
.admin-sidebar a{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px; border-radius:8px; font-size:14px;
  color:var(--muted); margin-bottom:4px; font-weight:700;
  text-decoration:none; transition:background .12s, color .12s;
}
.admin-sidebar a:hover{ background:var(--panel2); color:#fff; }
.admin-sidebar a.is-active{ background:var(--accent); color:#fff; }
.admin-main{ flex:1; padding:32px; overflow-x:hidden; }
.admin-topbar{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
.table-wrap{ background:var(--panel); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
table{ width:100%; border-collapse:collapse; font-size:14px; }
th,td{ text-align:left; padding:12px 16px; border-bottom:1px solid var(--border); }
th{ color:var(--muted); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:.05em; }
tr:last-child td{ border-bottom:none; }
.stat-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:18px; margin-bottom:30px; }
.stat-card{ background:var(--panel); border:1px solid var(--border); border-radius:var(--radius); padding:20px; }
.stat-card .num{ font-size:32px; font-weight:800; }
.stat-card .label{ font-size:13px; color:var(--muted); }
.grid{ display:grid; gap:16px; }
.grid--2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:700px){ .grid--2{ grid-template-columns:1fr; } }

/* Admin-Button-Varianten (BEM-Stil, doppelter Dash) */
.btn--primary{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.65rem 1rem; border-radius:10px;
  background:var(--accent); color:#fff; border:1px solid #2a2f35;
  font-weight:700; cursor:pointer; white-space:nowrap; text-decoration:none;
}
.btn--primary:hover{ filter:brightness(1.1); }
.btn--outline{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.65rem 1rem; border-radius:10px;
  background:var(--panel2); color:#fff; border:1px solid var(--border);
  font-weight:700; cursor:pointer; white-space:nowrap; text-decoration:none;
}
.btn--outline:hover{ border-color:#3b4047; }
.btn--danger{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.65rem 1rem; border-radius:10px;
  background:rgba(255,94,102,.12); color:var(--danger); border:1px solid #5a2e30;
  font-weight:700; cursor:pointer; white-space:nowrap; text-decoration:none;
}
.btn--danger:hover{ background:rgba(255,94,102,.2); }
/* Standalone-Formularkarten (Login/Register/Passwort etc.) */
.form-card{ max-width:440px; margin:40px auto; }
.form-card--wide{ max-width:680px; }
.form-card .sub{ font-size:14px; margin-bottom:20px; color:var(--muted); }
.form-foot{ margin-top:16px; font-size:13px; color:var(--muted); text-align:center; }
.form-foot a{ color:var(--accent-2); }

/************************************************************
 * 16) KOMPATIBILITÄT für Seiten, die noch nicht auf die neuen
 *     Klassennamen umgestellt sind (Team/Galerie/Mods/Events/
 *     Kontakt/Admin) — gleiche Optik, alte Klassennamen.
 ************************************************************/
.page-header{ padding:8px 0 4px; }
.page-header__eyebrow{ font-family:var(--font-mono); font-size:12px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.1em; }
.page-header h1{ font-size:clamp(26px,4vw,38px); margin-top:6px; }
.page-header p{ max-width:640px; color:var(--muted); }

.section{ max-width:1200px; margin:0 auto; padding:28px 16px; }
.section--alt{ background:rgba(255,255,255,.02); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.grid--2{ grid-template-columns:repeat(2,1fr); }
.grid--3{ grid-template-columns:repeat(3,1fr); }
.grid--4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:980px){ .grid--3,.grid--4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .grid--2,.grid--3,.grid--4{ grid-template-columns:1fr; } }

.team-card{ text-align:center; }
.team-card__avatar{ width:88px; height:88px; border-radius:50%; margin:0 auto 12px; object-fit:cover; border:1px solid var(--border); }
.team-card__role{ font-family:var(--font-mono); font-size:11px; color:var(--accent-2); text-transform:uppercase; letter-spacing:.06em; }
.card__meta{ font-family:var(--font-mono); font-size:12px; color:var(--muted); }

.gallery-item{ border-radius:12px; overflow:hidden; border:1px solid var(--border); position:relative; aspect-ratio:4/3; background:var(--panel2); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-item__caption{ position:absolute; left:0; right:0; bottom:0; padding:10px 12px; background:linear-gradient(0deg, rgba(0,0,0,.8), transparent); font-size:13px; font-weight:600; }

.event-card{ display:flex; gap:16px; align-items:flex-start; }
.event-card__date{ text-align:center; flex-shrink:0; background:var(--panel2); border:1px solid var(--border); border-radius:10px; width:60px; padding:10px 0; }
.event-card__date .day{ font-size:22px; font-weight:800; display:block; line-height:1; color:var(--accent-2); }
.event-card__date .month{ font-size:11px; text-transform:uppercase; color:var(--muted); }

.prose{ color:var(--muted); }
.prose p{ white-space:pre-line; }

/* btn--primary/outline/danger/sm sind weiter oben (Zeile ~730) bereits definiert */

.badge--online{ background:rgba(87,209,122,.14); border-color:#315c41; color:var(--success); }
.badge--offline{ background:rgba(255,94,102,.14); border-color:#5a2e30; color:var(--danger); }
.badge--maint{ background:rgba(240,180,77,.14); border-color:#6b5230; color:var(--warn); }

/************************************************************
 * 26) COOKIE-HINWEIS-STREIFEN
 ************************************************************/
/* cookie-notice ersetzt durch cookie-banner (Abschnitt 32) */

/************************************************************
 * 27) ADMIN: NACHRICHTEN-BADGE + NEU-LABEL
 ************************************************************/
.nav-badge{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:20px; height:20px; padding:0 5px;
  background:#e8332a; color:#fff; border-radius:999px;
  font-size:10px; font-weight:700; font-family:var(--font-mono);
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge{ 0%,100%{ box-shadow:0 0 0 0 rgba(232,50,42,.6); } 50%{ box-shadow:0 0 0 5px rgba(232,50,42,0); } }

.msg-new-indicator{
  display:inline-flex; align-items:center; gap:5px;
  font-family:var(--font-mono); font-size:11px; font-weight:700;
  color:#fff; background:var(--accent); padding:2px 8px;
  border-radius:999px; letter-spacing:.04em;
}
.msg-new-indicator::before{ content:''; width:6px; height:6px; border-radius:50%; background:#fff; display:block; animation: blink-dot 1.2s ease-in-out infinite; }
@keyframes blink-dot{ 0%,100%{ opacity:1; } 50%{ opacity:.2; } }

.msg-card-new{ border-left:4px solid var(--accent); background:linear-gradient(135deg,rgba(124,92,255,0.06),transparent 60%); }
.msg-card-read{ opacity:.65; border-left:4px solid transparent; }

.filter-tabs{ display:flex; gap:4px; background:var(--panel2); padding:4px; border-radius:10px; width:fit-content; margin-bottom:16px; }
.filter-tab{ padding:6px 14px; border-radius:7px; border:none; background:transparent; color:var(--muted); font-weight:600; font-size:13px; cursor:pointer; }
.filter-tab.is-active{ background:var(--accent); color:#fff; }

/************************************************************
 * 28) EVENT-TEILNAHME-BESTÄTIGUNG
 ************************************************************/
.confirm-box{
  background:linear-gradient(135deg,rgba(124,92,255,0.08),rgba(0,229,199,0.04));
  border:1px solid rgba(124,92,255,0.35); border-radius:14px; padding:22px;
}
.confirm-box.confirmed{ border-color:rgba(87,209,122,0.4); background:linear-gradient(135deg,rgba(87,209,122,0.08),rgba(0,229,199,0.04)); }
.confirm-option{
  display:flex; align-items:center; gap:14px; padding:13px 15px;
  background:var(--panel2); border:1px solid var(--border); border-radius:12px;
  cursor:pointer; transition:border-color .15s, background .15s; margin-bottom:8px;
}
.confirm-option:hover{ border-color:var(--accent); background:rgba(124,92,255,0.08); }
.confirm-option.is-selected{ border-color:var(--accent); background:rgba(124,92,255,0.12); }
.confirm-option__icon{ width:40px; height:40px; border-radius:10px; background:var(--bg); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.confirm-option__title{ font-weight:700; font-size:14px; }
.confirm-option__sub{ font-size:12px; color:var(--muted); margin-top:2px; }
.confirm-option__check{ margin-left:auto; width:22px; height:22px; border-radius:50%; border:2px solid var(--border); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.confirm-option__check.checked{ background:var(--accent); border-color:var(--accent); color:#fff; font-size:11px; font-weight:700; }

/************************************************************
 * 29) AGB / DATENSCHUTZ-SEITEN
 ************************************************************/
.legal-card{ max-width:760px; }
.legal-section{ margin-bottom:28px; }
.legal-section h3{ font-size:16px; color:var(--accent-2); margin-bottom:10px; border-bottom:1px solid var(--border); padding-bottom:8px; }
.legal-section p, .legal-section li{ font-size:14px; line-height:1.75; }
.legal-section ul{ padding-left:20px; }
.legal-section li{ margin-bottom:6px; }

.agb-check{
  display:flex; align-items:flex-start; gap:12px; padding:13px 15px;
  background:var(--panel2); border:1px solid var(--border); border-radius:12px; margin-bottom:10px;
}
.agb-check input[type=checkbox]{ width:20px; height:20px; flex-shrink:0; margin-top:1px; accent-color:var(--accent); cursor:pointer; }
.agb-check__text{ font-size:13px; line-height:1.6; }
.agb-check__text a{ color:var(--accent-2); }

/************************************************************
 * 30) KONTAKTFORMULAR MOBIL-FIX
 ************************************************************/
@media (max-width:600px){
  .contact-grid{ grid-template-columns:1fr !important; }
}

/************************************************************
 * 31) STATISTIK-DASHBOARD (Admin)
 ************************************************************/
.stat-grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:20px; }
@media (max-width:800px){ .stat-grid-4{ grid-template-columns:repeat(2,1fr); } }
.stat-tile{ background:var(--panel); border:1px solid var(--border); border-radius:12px; padding:18px; }
.stat-tile__num{ font-family:'Rajdhani',sans-serif; font-size:28px; font-weight:700; color:#fff; }
.stat-tile__label{ font-size:12px; color:var(--muted); margin-top:2px; }
.stat-tile__trend{ font-family:var(--font-mono); font-size:11px; margin-top:6px; }
.trend-up{ color:var(--success); }
.trend-down{ color:var(--danger); }

.chart-bars{ display:flex; align-items:flex-end; gap:6px; height:100px; margin-bottom:28px; }
.chart-bar{ flex:1; border-radius:4px 4px 0 0; background:var(--accent); opacity:.7; position:relative; }
.chart-bar:hover{ opacity:1; }
.chart-bar__label{ position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); font-size:9px; color:var(--muted); white-space:nowrap; font-family:var(--font-mono); }
.chart-bar__val{ position:absolute; top:-18px; left:50%; transform:translateX(-50%); font-size:9px; color:#fff; font-family:var(--font-mono); white-space:nowrap; }

.page-stat-row{ display:flex; align-items:center; gap:10px; padding:9px 0; border-bottom:1px solid var(--border); }
.page-stat-row:last-child{ border-bottom:none; }
.page-stat-row__url{ flex:1; font-family:var(--font-mono); font-size:12px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.page-stat-row__bar-wrap{ width:100px; height:6px; background:var(--panel2); border-radius:99px; overflow:hidden; flex-shrink:0; }
.page-stat-row__bar{ height:100%; background:var(--accent); border-radius:99px; }
.page-stat-row__count{ font-family:var(--font-mono); font-size:12px; color:#fff; font-weight:700; width:36px; text-align:right; flex-shrink:0; }

/************************************************************
 * 32) COOKIE-BANNER (Variante A – deutlicher Streifen)
 ************************************************************/
.cookie-banner{
  position:fixed; bottom:0; left:0; right:0; z-index:9000;
  background:var(--panel); border-top:2px solid var(--accent);
  padding:16px 28px; box-shadow:0 -6px 30px rgba(0,0,0,.5);
  display:flex; align-items:center; gap:18px; flex-wrap:wrap;
}
.cookie-banner__icon{ font-size:26px; flex-shrink:0; }
.cookie-banner__text{ flex:1; min-width:200px; }
.cookie-banner__text strong{ color:#fff; font-size:15px; display:block; margin-bottom:3px; }
.cookie-banner__text p{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }
.cookie-banner__text a{ color:var(--accent-2); }
.cookie-banner__btn{
  background:var(--accent); border:none; color:#fff; font-family:'Rajdhani',sans-serif;
  font-weight:700; font-size:15px; padding:10px 22px; border-radius:8px; cursor:pointer;
  white-space:nowrap; flex-shrink:0;
}
.cookie-banner__btn:hover{ opacity:.85; }
.cookie-banner__more{ font-size:12px; color:var(--muted); text-decoration:underline; cursor:pointer; white-space:nowrap; flex-shrink:0; }
@media(max-width:600px){
  .cookie-banner{ padding:14px 16px; }
  .cookie-banner__icon{ display:none; }
}

/************************************************************
 * 33) ADMIN: ANTWORT-BOX (verbessert)
 ************************************************************/
.reply-box{ background:var(--bg); border:1px solid var(--border); border-radius:14px; overflow:hidden; margin-top:12px; }
.reply-box__head{
  background:linear-gradient(135deg,rgba(124,92,255,.1),rgba(0,229,199,.06));
  border-bottom:1px solid var(--border); padding:14px 18px;
  display:flex; align-items:center; gap:12px;
}
.reply-box__head-icon{ font-size:20px; }
.reply-box__head-title{ font-weight:700; font-size:14px; }
.reply-box__head-meta{ font-size:12px; color:var(--muted); margin-top:2px; }
.reply-box__preview{
  padding:8px 18px; background:rgba(0,0,0,.2); border-bottom:1px solid var(--border);
  font-size:11px; color:var(--muted); font-family:var(--font-mono);
  display:flex; gap:12px; flex-wrap:wrap;
}
.reply-box__preview strong{ color:#9aa; }
.reply-box__body{ padding:16px 18px; }
.reply-box__quote{
  background:var(--panel2); border:1px solid var(--border); border-left:3px solid var(--accent);
  border-radius:0 8px 8px 0; padding:10px 14px; margin-top:10px;
  font-size:12px; color:var(--muted); line-height:1.6;
}
.reply-box__quote-label{ font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.05em; color:var(--accent-2); margin-bottom:4px; }
.reply-box__footer{
  padding:12px 18px; border-top:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.reply-box__footer-hint{ font-size:12px; color:var(--muted); }

/************************************************************
 * 34) KONTAKTFORMULAR: Abschnitts-Design + sticky Bar
 ************************************************************/
.contact-section{
  background:var(--panel2); border:1px solid var(--border); border-radius:14px;
  padding:20px; margin-bottom:14px;
}
.contact-section__head{ display:flex; align-items:center; gap:12px; margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.contact-section__icon{ width:38px; height:38px; border-radius:10px; flex-shrink:0; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center; font-size:17px; }
.contact-section__title{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:16px; }
.contact-section__sub{ font-size:12px; color:var(--muted); }

.contact-action-bar{
  background:rgba(10,13,20,.96); border:1px solid var(--border); border-radius:12px;
  padding:14px 20px; display:flex; align-items:center; justify-content:space-between;
  gap:10px; flex-wrap:wrap; box-shadow:0 -4px 20px rgba(0,0,0,.3);
  position:sticky; bottom:10px;
}

/************************************************************
 * 35) EVENT-TEILNAHME: einfacher Join-Button
 ************************************************************/
.join-box{
  background:linear-gradient(135deg,rgba(0,229,199,.08),rgba(124,92,255,.06));
  border:1px solid rgba(0,229,199,.35); border-radius:14px; padding:22px; text-align:center;
}
.join-box__count{ font-family:var(--font-mono); font-size:13px; color:var(--muted); margin-bottom:14px; }
.join-box__count span{ color:#fff; font-weight:700; }
.join-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:14px 32px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border:none; border-radius:12px; font-family:'Rajdhani',sans-serif;
  font-weight:700; font-size:18px; color:#fff; cursor:pointer;
  box-shadow:0 4px 20px rgba(124,92,255,.35); transition:transform .15s, box-shadow .15s;
}
.join-btn:hover{ transform:translateY(-2px); box-shadow:0 8px 28px rgba(124,92,255,.45); }
.join-confirmed{
  background:linear-gradient(135deg,rgba(87,209,122,.1),rgba(0,229,199,.06));
  border:1px solid rgba(87,209,122,.4); border-radius:14px; padding:22px; text-align:center;
}

/************************************************************
 * 36) ADMIN: NEUE SIDEBAR MIT GRUPPEN
 ************************************************************/
.admin-sidebar{
  width:230px; flex-shrink:0; background:#0b0c0f; border-right:1px solid var(--border);
  display:flex; flex-direction:column; height:100vh; position:sticky; top:0; overflow-y:auto;
}
.admin-sidebar__brand{
  padding:18px 14px 14px; border-bottom:1px solid var(--border);
  display:flex; align-items:center; gap:10px; flex-shrink:0;
}
.admin-sidebar__brand-icon{
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  display:flex; align-items:center; justify-content:center; font-weight:900; font-size:15px; color:#fff;
}
.admin-sidebar__brand-name{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:15px; }
.admin-sidebar__brand-role{ font-size:10px; color:var(--accent-2); font-family:var(--font-mono); margin-top:1px; }
.admin-sidebar__nav{ padding:10px 8px; flex:1; }
.admin-sidebar__group{ margin-bottom:16px; }
.admin-sidebar__group-label{
  font-size:10px; color:var(--muted); text-transform:uppercase;
  letter-spacing:.08em; font-family:var(--font-mono); padding:0 8px; margin-bottom:4px; display:block;
}
.admin-sidebar a{
  display:flex; align-items:center; gap:9px; padding:8px 10px; border-radius:9px;
  font-size:13px; font-weight:600; color:var(--muted); text-decoration:none;
  margin-bottom:2px; transition:all .12s; white-space:nowrap;
}
.admin-sidebar a:hover{ background:var(--panel2); color:#fff; }
.admin-sidebar a.is-active{ background:rgba(124,92,255,.18); color:var(--accent); border:1px solid rgba(124,92,255,.25); }
.admin-sidebar__link-icon{ width:18px; text-align:center; font-size:13px; flex-shrink:0; }
.admin-sidebar__footer{ padding:8px 8px 14px; border-top:1px solid var(--border); flex-shrink:0; }

/************************************************************
 * 37) ADMIN: MITGLIEDER ROLLEN-GRUPPEN
 ************************************************************/
.role-group{ margin-bottom:28px; }
.role-group__head{
  display:flex; align-items:center; gap:10px; margin-bottom:12px;
  padding-bottom:10px; border-bottom:1px solid var(--border);
}
.role-group__badge{
  padding:3px 10px; border-radius:999px; font-size:11px; font-weight:700;
  font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em;
}
.role-group__badge.role-boss_admin{ background:rgba(212,175,55,.15); color:#d4af37; border:1px solid rgba(212,175,55,.35); }
.role-group__badge.role-admin{ background:rgba(124,92,255,.15); color:#a995ff; border:1px solid rgba(124,92,255,.35); }
.role-group__badge.role-moderator{ background:rgba(0,229,199,.12); color:var(--accent-2); border:1px solid rgba(0,229,199,.3); }
.role-group__badge.role-vip{ background:rgba(255,209,102,.12); color:#ffd166; border:1px solid rgba(255,209,102,.3); }
.role-group__badge.role-member{ background:var(--panel2); color:var(--muted); border:1px solid var(--border); }
.role-group__count{ font-size:12px; color:var(--muted); font-family:var(--font-mono); }

.team-card{
  display:flex; align-items:center; gap:14px; padding:14px 16px;
  border-radius:12px; border:1px solid; margin-bottom:8px;
}
.team-card.role-boss_admin{ background:rgba(212,175,55,.06); border-color:rgba(212,175,55,.3); }
.team-card.role-admin{ background:rgba(124,92,255,.06); border-color:rgba(124,92,255,.3); }
.team-card.role-moderator{ background:rgba(0,229,199,.05); border-color:rgba(0,229,199,.25); }
.team-card__avatar{
  width:42px; height:42px; border-radius:50%; background:var(--panel2);
  display:flex; align-items:center; justify-content:center; font-size:16px;
  flex-shrink:0; border:2px solid var(--border); overflow:hidden;
}
.team-card__avatar img{ width:100%; height:100%; object-fit:cover; }
.team-card__info{ flex:1; min-width:0; }
.team-card__name{ font-weight:700; font-size:14px; }
.team-card__since{ font-size:11px; color:var(--muted); font-family:var(--font-mono); margin-top:2px; }

.member-row2{
  display:flex; align-items:center; gap:12px; padding:10px 12px;
  background:var(--panel); border:1px solid var(--border); border-radius:10px; margin-bottom:6px;
}
.member-row2__avatar{
  width:34px; height:34px; border-radius:50%; background:var(--panel2);
  display:flex; align-items:center; justify-content:center; font-size:13px;
  flex-shrink:0; overflow:hidden; border:1px solid var(--border);
}
.member-row2__avatar img{ width:100%; height:100%; object-fit:cover; }
.member-row2__name{ font-weight:700; font-size:14px; }
.member-row2__meta{ font-size:11px; color:var(--muted); margin-top:1px; font-family:var(--font-mono); }

/************************************************************
 * 38) ADMIN: KONTAKT-KARTEN (neues Design)
 ************************************************************/
.msg-card2{ border-radius:14px; overflow:hidden; border:1px solid var(--border); margin-bottom:12px; }
.msg-card2.is-new{ border-left:4px solid var(--accent); }
.msg-card2.is-answered{ border-left:4px solid var(--accent-2); opacity:.8; }

/* Neue Nachrichten-Karten */
.msg-wrap{ display:flex; flex-direction:column; gap:12px; }
.msg-card{ background:var(--panel); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition:border-color .15s; }
.msg-card.is-new{ border-color:rgba(124,92,255,.45); }
.msg-card.is-texture{ border-color:rgba(124,92,255,.35); }
.msg-head{ display:flex; align-items:center; gap:12px; padding:13px 16px; background:var(--panel2); border-bottom:1px solid var(--border); }
.msg-avatar{ width:40px; height:40px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:'Rajdhani',sans-serif; font-size:16px; font-weight:700; background:rgba(124,92,255,.15); color:#a995ff; }
.msg-avatar.texture{ background:rgba(124,92,255,.2); color:#a995ff; }
.msg-from{ flex:1; min-width:0; }
.msg-name{ font-size:14px; font-weight:700; color:var(--text); margin-bottom:2px; display:flex; align-items:center; gap:7px; flex-wrap:wrap; }
.msg-info{ font-size:11px; color:var(--muted); }
.msg-meta{ display:flex; flex-direction:column; align-items:flex-end; gap:5px; flex-shrink:0; }
.msg-time{ font-size:10px; color:var(--muted); font-family:var(--font-mono); }
.badge-new{ background:rgba(255,94,102,.15); border:1px solid rgba(255,94,102,.35); color:var(--danger); padding:2px 8px; border-radius:999px; font-size:10px; font-weight:700; font-family:var(--font-mono); }
.badge-done{ background:rgba(87,209,122,.1); border:1px solid rgba(87,209,122,.3); color:#57d17a; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:700; }
.badge-read{ background:rgba(255,255,255,.06); border:1px solid var(--border); color:var(--muted); padding:2px 8px; border-radius:999px; font-size:10px; }
.badge-tex{ background:rgba(124,92,255,.15); border:1px solid rgba(124,92,255,.3); color:#a995ff; padding:2px 8px; border-radius:999px; font-size:10px; font-weight:700; }
.msg-body{ padding:14px 16px; font-size:13px; color:var(--text); line-height:1.7; border-bottom:1px solid var(--border); }
.msg-texture{ margin:0; border-bottom:1px solid var(--border); display:grid; grid-template-columns:200px 1fr; }
.msg-texture-img{ background:linear-gradient(135deg,#1a1025,#0d0910); display:flex; align-items:center; justify-content:center; border-right:1px solid var(--border); position:relative; min-height:130px; overflow:hidden; }
.msg-texture-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.msg-texture-img-placeholder{ text-align:center; }
.msg-texture-ext{ position:absolute; top:8px; left:8px; background:rgba(0,0,0,.7); backdrop-filter:blur(4px); border:1px solid rgba(255,255,255,.15); color:#fff; font-size:10px; font-weight:700; font-family:var(--font-mono); padding:2px 7px; border-radius:5px; }
.msg-texture-info{ padding:16px; display:flex; flex-direction:column; justify-content:space-between; gap:10px; }
.msg-texture-title{ font-family:'Rajdhani',sans-serif; font-size:16px; font-weight:700; color:var(--text); margin-bottom:4px; }
.msg-texture-meta{ font-size:11px; color:var(--muted); font-family:var(--font-mono); line-height:1.6; }
.msg-texture-btns{ display:flex; gap:8px; flex-wrap:wrap; }
.msg-dl-btn{ display:inline-flex; align-items:center; gap:7px; padding:10px 20px; border-radius:10px; font-size:13px; font-weight:700; background:var(--accent); color:#fff; text-decoration:none; border:none; cursor:pointer; transition:opacity .12s; }
.msg-dl-btn:hover{ opacity:.85; }
.msg-view-btn{ display:inline-flex; align-items:center; gap:6px; padding:9px 14px; border-radius:10px; font-size:12px; font-weight:700; background:var(--panel2); border:1px solid var(--border); color:var(--muted); text-decoration:none; transition:all .12s; }
.msg-view-btn:hover{ border-color:rgba(124,92,255,.4); color:#fff; }
.msg-reply-prev{ padding:12px 16px; background:rgba(87,209,122,.04); border-bottom:1px solid var(--border); border-left:3px solid #57d17a; }
.msg-reply-prev-label{ font-size:10px; color:#57d17a; font-family:var(--font-mono); margin-bottom:5px; }
.msg-reply-prev-text{ font-size:13px; color:var(--text); line-height:1.6; }
.msg-reply{ padding:14px 16px; background:var(--panel2); border-bottom:1px solid var(--border); }
.msg-reply-head{ display:flex; align-items:center; gap:10px; margin-bottom:10px; padding-bottom:10px; border-bottom:1px solid var(--border); }
.msg-reply-head-icon{ width:32px; height:32px; border-radius:50%; background:rgba(124,92,255,.15); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; }
.msg-reply-head-info{ flex:1; }
.msg-reply-head-title{ font-size:13px; font-weight:700; color:var(--text); margin-bottom:1px; }
.msg-reply-head-meta{ font-size:10px; color:var(--muted); font-family:var(--font-mono); }
.msg-reply-preview{ display:flex; gap:14px; padding:8px 10px; background:var(--bg); border:1px solid var(--border); border-radius:8px; font-size:11px; color:var(--muted); margin-bottom:10px; flex-wrap:wrap; }
.msg-reply-preview strong{ color:var(--text); }
.msg-reply-ta{ width:100%; min-height:80px; resize:vertical; margin-bottom:8px; }
.msg-reply-quote{ padding:8px 10px; background:var(--bg); border:1px solid var(--border); border-radius:8px; font-size:11px; color:var(--muted); margin-bottom:10px; border-left:3px solid rgba(124,92,255,.4); }
.msg-reply-footer{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.msg-reply-hint{ font-size:11px; color:var(--muted); }
.msg-filters{ display:flex; gap:6px; margin-bottom:18px; flex-wrap:wrap; align-items:center; justify-content:space-between; }
.msg-filter-tabs{ display:flex; gap:6px; }
.msg-ftab{ padding:5px 14px; border-radius:999px; font-size:12px; font-weight:700; cursor:pointer; border:1px solid var(--border); background:var(--panel); color:var(--muted); transition:all .12s; text-decoration:none; }
.msg-ftab:hover{ color:#fff; border-color:rgba(124,92,255,.4); }
.msg-ftab.active{ background:rgba(124,92,255,.15); border-color:rgba(124,92,255,.5); color:#fff; }
.msg-ftab.danger.active{ background:rgba(255,94,102,.12); border-color:rgba(255,94,102,.4); color:var(--danger); }
.btn-action{ display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:8px; font-size:12px; font-weight:700; cursor:pointer; border:1px solid var(--border); background:var(--panel); color:var(--muted); text-decoration:none; transition:all .12s; }
.btn-action:hover{ border-color:rgba(124,92,255,.4); color:#fff; }
.btn-action.primary{ background:var(--accent); border-color:var(--accent); color:#fff; }
.btn-action.primary:hover{ opacity:.85; }
.btn-action.danger{ border-color:rgba(255,94,102,.3); color:var(--danger); }
.btn-action.danger:hover{ background:rgba(255,94,102,.1); }
.btn-action.success{ border-color:rgba(87,209,122,.3); color:#57d17a; }

/************************************************************
 * 39) ADMIN: EVENT-FORMULAR (Abschnitte, Steps, sticky Bar)
 ************************************************************/
.ev-steps{ display:flex; margin-bottom:24px; }
.ev-step{ flex:1; display:flex; flex-direction:column; align-items:center; position:relative; }
.ev-step::after{ content:''; position:absolute; top:18px; left:50%; right:-50%; height:2px; background:var(--border); z-index:0; }
.ev-step:last-child::after{ display:none; }
.ev-step__dot{
  width:36px; height:36px; border-radius:50%; border:2px solid var(--border);
  background:var(--panel2); display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; z-index:1; font-family:var(--font-mono); margin-bottom:6px;
}
.ev-step__dot.done{ background:var(--accent); border-color:var(--accent); color:#fff; }
.ev-step__dot.active{ border-color:var(--accent-2); color:var(--accent-2); box-shadow:0 0 0 4px rgba(0,229,199,.15); }
.ev-step__label{ font-size:10px; color:var(--muted); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em; }

.ev-section{ background:var(--panel2); border:1px solid var(--border); border-radius:14px; padding:20px; margin-bottom:14px; }
.ev-section__head{ display:flex; align-items:center; gap:12px; margin-bottom:18px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.ev-section__icon{ width:38px; height:38px; border-radius:10px; flex-shrink:0; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center; font-size:17px; }
.ev-section__title{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:17px; }
.ev-section__sub{ font-size:12px; color:var(--muted); }

.ev-type-cards{ display:flex; gap:10px; flex-wrap:wrap; }
.ev-type{ flex:1; min-width:100px; padding:12px 10px; border:2px solid var(--border); border-radius:12px; text-align:center; cursor:pointer; background:var(--bg); transition:all .15s; }
.ev-type:hover{ border-color:#3b4047; }
.ev-type.sel-event{ border-color:var(--accent); background:rgba(124,92,255,.1); }
.ev-type.sel-giveaway{ border-color:#ffd166; background:rgba(255,209,102,.08); }
.ev-type.sel-maintenance{ border-color:#e8332a; background:rgba(232,51,42,.08); }
.ev-type__icon{ font-size:24px; margin-bottom:5px; }
.ev-type__label{ font-size:12px; font-weight:700; }

.ev-date-range{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:10px; }
.ev-date-arrow{ text-align:center; color:var(--muted); font-size:20px; }

.ev-color-dots{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.ev-color-dot{ width:28px; height:28px; border-radius:50%; cursor:pointer; border:3px solid transparent; transition:transform .12s; }
.ev-color-dot:hover{ transform:scale(1.15); }
.ev-color-dot.is-selected{ border-color:#fff; box-shadow:0 0 0 2px var(--bg); }

.ev-sticky-bar{
  position:sticky; bottom:0; background:rgba(10,13,20,.96);
  border-top:1px solid var(--border); padding:14px 20px;
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap; border-radius:0 0 14px 14px;
  box-shadow:0 -4px 24px rgba(0,0,0,.45);
}

/************************************************************
 * 40) EINSTELLUNGEN: TABS + KARTEN
 ************************************************************/
.settings-tabs{ display:flex; gap:4px; background:var(--panel2); padding:4px; border-radius:12px; margin-bottom:24px; flex-wrap:wrap; }
.settings-tab{ padding:9px 16px; border-radius:9px; border:none; background:transparent; color:var(--muted); font-weight:700; font-size:13px; cursor:pointer; display:flex; align-items:center; gap:7px; transition:all .12s; white-space:nowrap; }
.settings-tab:hover{ background:var(--panel); color:#fff; }
.settings-tab.is-active{ background:var(--accent); color:#fff; }
.settings-section{ display:none; }
.settings-section.is-active{ display:block; }

.settings-card{ background:var(--panel2); border:1px solid var(--border); border-radius:14px; overflow:hidden; margin-bottom:16px; }
.settings-card__head{ padding:15px 20px; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:12px; background:var(--panel); }
.settings-card__icon{ width:36px; height:36px; border-radius:10px; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.settings-card__title{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:16px; }
.settings-card__sub{ font-size:12px; color:var(--muted); margin-top:1px; }
.settings-card__body{ padding:20px; }

.social-row{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.social-row:last-of-type{ margin-bottom:0; }
.social-row__icon{ width:36px; height:36px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; background:var(--panel); }

.imp-row2{ display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.imp-row2__label{ min-width:120px; flex-shrink:0; font-size:11px; color:var(--muted); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em; }
.imp-row2__field{ flex:1; }

.img-preview-row{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.img-preview-box{ width:90px; height:58px; border-radius:10px; background:var(--bg); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:22px; overflow:hidden; flex-shrink:0; }
.img-preview-box img{ width:100%; height:100%; object-fit:cover; }

.settings-sticky{ position:sticky; bottom:0; background:rgba(10,13,20,.96); border-top:1px solid var(--border); padding:14px 0 14px; display:flex; justify-content:space-between; align-items:center; gap:10px; margin-top:8px; }

/************************************************************
 * 41) IMPRESSUM-SEITE
 ************************************************************/
.imp-header{ background:linear-gradient(135deg,rgba(124,92,255,.1),rgba(0,229,199,.05)); border:1px solid rgba(124,92,255,.3); border-radius:14px; padding:24px; display:flex; align-items:center; gap:18px; margin-bottom:20px; }
.imp-header__icon{ width:56px; height:56px; border-radius:14px; flex-shrink:0; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center; font-size:26px; }
.imp-header__title{ font-family:'Rajdhani',sans-serif; font-size:26px; font-weight:700; margin-bottom:2px; }
.imp-header__sub{ font-size:13px; color:var(--muted); }

.imp-section{ background:var(--panel2); border:1px solid var(--border); border-radius:12px; padding:20px; margin-bottom:12px; }
.imp-section__head{ display:flex; align-items:center; gap:10px; margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border); }
.imp-section__icon{ font-size:20px; }
.imp-section__title{ font-family:'Rajdhani',sans-serif; font-weight:700; font-size:17px; }
.imp-row{ display:flex; gap:10px; align-items:baseline; margin-bottom:9px; font-size:14px; }
.imp-row:last-child{ margin-bottom:0; }
.imp-row__label{ color:var(--muted); font-size:11px; font-family:var(--font-mono); min-width:120px; flex-shrink:0; text-transform:uppercase; letter-spacing:.04em; padding-top:2px; }
.imp-row__value{ color:var(--text); line-height:1.6; }
.imp-row__value a{ color:var(--accent-2); text-decoration:none; }
.imp-discord-badge{ display:inline-flex; align-items:center; gap:8px; padding:7px 14px; background:rgba(88,101,242,.15); border:1px solid rgba(88,101,242,.4); border-radius:9px; color:#7289da; font-weight:700; font-size:13px; text-decoration:none !important; }

/************************************************************
 * 42) TEAM-SEITE: NEUE KARTEN + MODAL
 ************************************************************/
.team-grid2{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:18px; }
.team-card3{ background:var(--panel); border:1px solid var(--border); border-radius:16px; overflow:hidden; cursor:pointer; position:relative; transition:transform .15s, border-color .15s, box-shadow .15s; }
.team-card3:hover{ transform:translateY(-4px); border-color:rgba(124,92,255,.5); box-shadow:0 12px 36px rgba(0,0,0,.4); }
.team-card3__cover{ height:80px; position:relative; }
.team-card3__cover.role-boss_admin{ background:linear-gradient(135deg,#d4af37,#8a6d1f); }
.team-card3__cover.role-admin{ background:linear-gradient(135deg,#7c5cff,#5a3fd6); }
.team-card3__cover.role-moderator{ background:linear-gradient(135deg,#00e5c7,#00a896); }
.team-card3__cover-pattern{ position:absolute;inset:0;opacity:.15;background-image:repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);background-size:12px 12px; }
.team-card3__avatar{ width:68px;height:68px;border-radius:50%;border:4px solid var(--panel);background:var(--panel2);position:absolute;bottom:-34px;left:18px;display:flex;align-items:center;justify-content:center;font-size:26px;overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.4); }
.team-card3__avatar img{ width:100%;height:100%;object-fit:cover; }
.team-card3__body{ padding:42px 18px 18px; }
.team-card3__name{ font-family:'Rajdhani',sans-serif;font-size:18px;font-weight:700;margin-bottom:5px; }
.team-card3__ranks{ display:flex;gap:5px;flex-wrap:wrap;margin-bottom:9px; }
.team-rank{ padding:2px 9px;border-radius:999px;font-size:11px;font-weight:700;font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.04em; }
.team-rank.boss_admin{ background:rgba(212,175,55,.15);color:#d4af37;border:1px solid rgba(212,175,55,.35); }
.team-rank.admin{ background:rgba(124,92,255,.15);color:#a995ff;border:1px solid rgba(124,92,255,.35); }
.team-rank.moderator{ background:rgba(0,229,199,.12);color:var(--accent-2);border:1px solid rgba(0,229,199,.3); }
.team-rank.custom{ background:var(--panel2);color:var(--muted);border:1px solid var(--border); }
.team-card3__bio{ font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:12px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.team-card3__socials{ display:flex;gap:6px;flex-wrap:wrap; }
.team-social-icon{ width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px;background:var(--panel2);border:1px solid var(--border);text-decoration:none;color:var(--text);transition:all .12s; }
.team-social-icon:hover{ border-color:var(--accent); }
.team-card3__hint{ position:absolute;top:10px;right:12px;font-size:10px;color:rgba(255,255,255,.5);font-family:var(--font-mono); }

/* Modal */
.team-modal-overlay{ position:fixed;inset:0;background:rgba(0,0,0,.75);z-index:800;display:flex;align-items:center;justify-content:center;padding:20px;backdrop-filter:blur(4px); }
.team-modal-overlay.hidden{ display:none; }
.team-modal2{ background:var(--panel);border:1px solid var(--border);border-radius:20px;max-width:520px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 24px 80px rgba(0,0,0,.6); }
.team-modal2__cover{ height:120px;border-radius:16px 16px 0 0;position:relative; }
.team-modal2__cover.role-boss_admin{ background:linear-gradient(135deg,#d4af37,#8a6d1f); }
.team-modal2__cover.role-admin{ background:linear-gradient(135deg,#7c5cff,#5a3fd6); }
.team-modal2__cover.role-moderator{ background:linear-gradient(135deg,#00e5c7,#00a896); }
.team-modal2__close{ position:absolute;top:12px;right:14px;background:rgba(0,0,0,.45);border:none;color:#fff;border-radius:8px;padding:5px 12px;cursor:pointer;font-size:14px; }
.team-modal2__avatar{ width:86px;height:86px;border-radius:50%;border:5px solid var(--panel);background:var(--panel2);position:absolute;bottom:-43px;left:24px;display:flex;align-items:center;justify-content:center;font-size:34px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.5); }
.team-modal2__avatar img{ width:100%;height:100%;object-fit:cover; }
.team-modal2__body{ padding:52px 24px 24px; }
.team-modal2__name{ font-family:'Rajdhani',sans-serif;font-size:24px;font-weight:700;margin-bottom:6px; }
.team-modal2__bio{ font-size:14px;color:var(--text);line-height:1.75;margin-bottom:18px; }
.team-modal2__info{ display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:20px; }
.team-modal2__info-tile{ background:var(--panel2);border:1px solid var(--border);border-radius:10px;padding:11px 13px; }
.team-modal2__info-label{ font-size:10px;color:var(--muted);font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.04em;margin-bottom:3px; }
.team-modal2__info-value{ font-size:14px;font-weight:700; }
.team-modal2__socials{ display:flex;gap:8px;flex-wrap:wrap; }
.modal-soc{ display:inline-flex;align-items:center;gap:7px;padding:8px 14px;border-radius:10px;text-decoration:none;font-size:13px;font-weight:700;border:1px solid var(--border);background:var(--panel2);color:var(--text);transition:all .12s; }
.modal-soc:hover{ transform:translateY(-1px);opacity:.85; }
.modal-soc.discord{ background:rgba(88,101,242,.12);border-color:rgba(88,101,242,.4);color:#7289da; }
.modal-soc.steam{ background:rgba(200,200,200,.08);border-color:#3a3f4a;color:#c7d5e0; }
.modal-soc.youtube{ background:rgba(255,0,0,.1);border-color:rgba(255,0,0,.35);color:#ff4e45; }
.modal-soc.facebook{ background:rgba(66,103,178,.12);border-color:rgba(66,103,178,.4);color:#4e7dc8; }
.modal-soc.instagram{ background:rgba(214,41,118,.1);border-color:rgba(214,41,118,.35);color:#e1306c; }
.modal-soc.twitch{ background:rgba(145,71,255,.12);border-color:rgba(145,71,255,.4);color:#9147ff; }
.modal-soc.website{ background:rgba(0,229,199,.08);border-color:rgba(0,229,199,.3);color:var(--accent-2); }

/************************************************************
 * 43) PARTNER-SEITE
 ************************************************************/
.partner-grid2{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.partner-own{ grid-column:span 2; background:var(--panel); border:2px solid rgba(255,0,0,.4); border-radius:16px; overflow:hidden; box-shadow:0 0 30px rgba(255,0,0,.1); }
.partner-own__banner{ height:140px; position:relative; background:linear-gradient(135deg,#c4302b,#1a0505); }
.partner-own__body{ padding:52px 22px 22px; display:flex; gap:20px; flex-wrap:wrap; }
.partner-own__main{ flex:1; min-width:200px; }
.partner-own__stats{ display:flex; flex-direction:column; gap:8px; min-width:150px; }

/* ===== NEUE PARTNER CARDS ===== */
.pc{background:var(--panel);border:1px solid rgba(255,255,255,.07);border-radius:16px;overflow:visible;cursor:pointer;transition:all .2s;position:relative;display:flex;flex-direction:column;}
.pc:hover{transform:translateY(-3px);}
.pc.yt{border-color:rgba(255,70,70,.18);} .pc.yt:hover{border-color:rgba(255,70,70,.5);box-shadow:0 14px 40px rgba(255,59,48,.12);}
.pc.tw{border-color:rgba(145,71,255,.18);} .pc.tw:hover{border-color:rgba(145,71,255,.5);box-shadow:0 14px 40px rgba(145,71,255,.12);}
.pc.cr{border-color:rgba(0,229,199,.14);} .pc.cr:hover{border-color:rgba(0,229,199,.4);box-shadow:0 14px 40px rgba(0,229,199,.08);}
.pc-banner{height:88px;border-radius:16px 16px 0 0;position:relative;overflow:hidden;flex-shrink:0;}
.pc-banner.yt{background:linear-gradient(135deg,#6b0e0e 0%,#2e0404 50%,#160202 100%);}
.pc-banner.tw{background:linear-gradient(135deg,#3d1880 0%,#160830 50%,#0a041a 100%);}
.pc-banner.cr{background:linear-gradient(135deg,#004d44 0%,#001a16 50%,#000d0b 100%);}
.pc-banner::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(90deg,rgba(255,255,255,.055) 0,rgba(255,255,255,.055) 1px,transparent 0,transparent 36px),repeating-linear-gradient(0deg,rgba(255,255,255,.055) 0,rgba(255,255,255,.055) 1px,transparent 0,transparent 36px);}
.pc-banner.yt::after{content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:radial-gradient(ellipse,rgba(255,59,48,.35),transparent 70%);}
.pc-banner.tw::after{content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:radial-gradient(ellipse,rgba(145,71,255,.35),transparent 70%);}
.pc-banner.cr::after{content:'';position:absolute;top:-30px;right:-30px;width:140px;height:140px;background:radial-gradient(ellipse,rgba(0,229,199,.25),transparent 70%);}
.pc-type{position:absolute;top:10px;left:12px;display:flex;align-items:center;gap:5px;padding:3px 10px;border-radius:999px;font-size:10px;font-weight:700;font-family:var(--font-mono);z-index:1;}
.pc-type.yt{background:rgba(255,59,48,.2);border:1px solid rgba(255,59,48,.45);color:#ff9090;}
.pc-type.tw{background:rgba(145,71,255,.2);border:1px solid rgba(145,71,255,.45);color:#c4aaff;}
.pc-type.cr{background:rgba(0,229,199,.15);border:1px solid rgba(0,229,199,.4);color:#00e5c7;}
.pc-partner{position:absolute;top:10px;right:12px;padding:2px 8px;border-radius:4px;font-size:9px;font-weight:700;font-family:var(--font-mono);background:rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.55);z-index:1;}
.pc-av{position:absolute;top:62px;left:16px;width:56px;height:56px;border-radius:50%;border:3px solid var(--panel);overflow:hidden;box-shadow:0 4px 14px rgba(0,0,0,.65);background:var(--panel2);display:flex;align-items:center;justify-content:center;font-size:20px;z-index:10;}
.pc-av img{width:100%;height:100%;object-fit:cover;}
.pc-body{padding:34px 16px 14px;flex:1;border-radius:0 0 16px 16px;background:var(--panel);}
.pc-name{font-family:'Rajdhani',sans-serif;font-size:18px;font-weight:700;color:#fff;margin-bottom:1px;}
.pc-handle{font-size:11px;color:var(--muted);font-family:var(--font-mono);margin-bottom:10px;}
.pc-stats{display:flex;gap:7px;margin-bottom:11px;}
.pc-stat{flex:1;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);border-radius:8px;padding:8px 6px;text-align:center;}
.pc-stat .n{font-family:'Rajdhani',sans-serif;font-size:17px;font-weight:700;line-height:1;}
.pc-stat .l{font-size:9px;color:var(--muted);text-transform:uppercase;letter-spacing:.03em;margin-top:2px;}
.pc.yt .pc-stat .n{color:#ff7070;}
.pc.tw .pc-stat .n{color:#b39dff;}
.pc.cr .pc-stat .n{color:#00e5c7;}
.pc-bio{font-size:12px;color:var(--muted);line-height:1.6;margin-bottom:11px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.pc-vid{border-radius:9px;overflow:hidden;position:relative;margin-bottom:11px;}
.pc-vid img{width:100%;display:block;}
.pc-vid-play{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.2);}
.pc-vid-btn{width:40px;height:40px;background:rgba(255,59,48,.92);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;box-shadow:0 4px 14px rgba(255,59,48,.5);}
.pc-vid-title{position:absolute;bottom:0;left:0;right:0;padding:5px 9px;background:linear-gradient(to top,rgba(0,0,0,.85),transparent);font-size:10px;color:rgba(255,255,255,.85);}
.pc-tags{display:flex;gap:4px;flex-wrap:wrap;margin-bottom:11px;}
.pc-tag{background:rgba(124,92,255,.1);border:1px solid rgba(124,92,255,.2);color:#a995ff;padding:2px 7px;border-radius:4px;font-size:10px;font-weight:700;}
.pc-foot{display:flex;align-items:center;justify-content:space-between;padding-top:10px;border-top:1px solid rgba(255,255,255,.06);}
.pc-socs{display:flex;gap:5px;}
.pc-soc{width:30px;height:30px;border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:13px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);text-decoration:none;transition:all .12s;}
.pc-soc:hover{background:rgba(255,255,255,.1);transform:translateY(-1px);}
.pc-btn{padding:7px 16px;border-radius:9px;font-size:12px;font-weight:700;cursor:pointer;border:1px solid transparent;transition:all .15s;background:none;}
.pc-btn.yt{background:rgba(255,59,48,.12);border-color:rgba(255,59,48,.3);color:#ff8080;}
.pc-btn.yt:hover{background:rgba(255,59,48,.22);}
.pc-btn.tw{background:rgba(145,71,255,.12);border-color:rgba(145,71,255,.3);color:#c4aaff;}
.pc-btn.tw:hover{background:rgba(145,71,255,.22);}
.pc-btn.cr{background:rgba(0,229,199,.1);border-color:rgba(0,229,199,.25);color:#00e5c7;}
.pc-btn.cr:hover{background:rgba(0,229,199,.18);}
.pc-large .pc-bio{-webkit-line-clamp:3;}
/* Grid: 2 gleiche Spalten */
.partner-grid-new{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media(max-width:560px){.partner-grid-new{grid-template-columns:1fr 1fr;}}
.partner-card2:hover{ transform:translateY(-3px); box-shadow:0 12px 36px rgba(0,0,0,.4); }
.partner-card2.yt{ border-color:rgba(255,0,0,.2); }
.partner-card2.tw{ border-color:rgba(145,71,255,.2); }
.partner-card2.cr{ border-color:rgba(0,229,199,.2); }
.partner-banner2{ height:90px; position:relative; overflow:hidden; }
.partner-banner2.yt{ background:linear-gradient(135deg,#c4302b,#1a0505); }
.partner-banner2.tw{ background:linear-gradient(135deg,#6441a5,#1a0d2e); }
.partner-banner2.cr{ background:linear-gradient(135deg,#00e5c7,#003d35); }
.partner-banner2__pattern{ position:absolute;inset:0;opacity:.15;background-image:repeating-linear-gradient(45deg,#fff 0,#fff 1px,transparent 0,transparent 50%);background-size:12px 12px; }
.partner-banner2__tag{ position:absolute;top:9px;left:12px;font-family:var(--font-mono);font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;padding:2px 8px;border-radius:999px; }
.partner-banner2__tag.yt{ background:rgba(255,0,0,.25);border:1px solid rgba(255,0,0,.5);color:#ff6b6b; }
.partner-banner2__tag.tw{ background:rgba(145,71,255,.25);border:1px solid rgba(145,71,255,.5);color:#b39dff; }
.partner-banner2__tag.cr{ background:rgba(0,229,199,.2);border:1px solid rgba(0,229,199,.4);color:var(--accent-2); }
.partner-avatar2{ width:62px;height:62px;border-radius:50%;border:4px solid var(--panel);background:var(--panel2);position:absolute;bottom:-31px;left:16px;display:flex;align-items:center;justify-content:center;font-size:24px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,.5); }
.partner-avatar2 img{ width:100%;height:100%;object-fit:cover; }
.partner-avatar2--own{ width:76px;height:76px;bottom:-38px;left:22px;font-size:30px; }
.partner-verified{ position:absolute;top:9px;right:12px;background:rgba(0,229,199,.15);border:1px solid rgba(0,229,199,.4);border-radius:999px;padding:2px 8px;font-size:10px;font-weight:700;color:var(--accent-2);font-family:var(--font-mono); }
.partner-own-badge{ position:absolute;top:9px;right:12px;background:rgba(0,0,0,.5);border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:2px 8px;font-size:10px;color:#fff;font-family:var(--font-mono);font-weight:700; }
.partner-body2{ padding:38px 16px 16px; }
.partner-name2{ font-family:'Rajdhani',sans-serif;font-size:18px;font-weight:700;margin-bottom:2px; }
.partner-handle2{ font-family:var(--font-mono);font-size:11px;color:var(--muted);margin-bottom:8px; }
.partner-bio2{ font-size:13px;color:var(--muted);line-height:1.6;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.partner-stats2{ display:flex;gap:12px;margin-bottom:10px; }
.partner-stat2 .num{ font-family:'Rajdhani',sans-serif;font-size:16px;font-weight:700;color:#fff; }
.partner-stat2 .lbl{ font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.03em; }
.partner-tags2{ display:flex;gap:5px;flex-wrap:wrap;margin-bottom:10px; }
.partner-tag2{ font-size:11px;padding:2px 7px;border-radius:6px;background:var(--panel2);border:1px solid var(--border);color:var(--muted); }
.partner-links2{ display:flex;gap:5px;flex-wrap:wrap; }
.p-lnk{ display:inline-flex;align-items:center;gap:5px;padding:6px 11px;border-radius:8px;text-decoration:none;font-size:12px;font-weight:700;border:1px solid;transition:all .12s; }
.p-lnk:hover{ opacity:.85;transform:translateY(-1px); }
.p-lnk.yt{ background:rgba(255,0,0,.1);border-color:rgba(255,0,0,.35);color:#ff4e45; }
.p-lnk.tw{ background:rgba(145,71,255,.1);border-color:rgba(145,71,255,.35);color:#9147ff; }
.p-lnk.dc{ background:rgba(88,101,242,.1);border-color:rgba(88,101,242,.35);color:#7289da; }
.p-lnk.ig{ background:rgba(214,41,118,.1);border-color:rgba(214,41,118,.35);color:#e1306c; }
.p-lnk.fb{ background:rgba(66,103,178,.1);border-color:rgba(66,103,178,.35);color:#4e7dc8; }
.p-lnk.web{ background:rgba(0,229,199,.08);border-color:rgba(0,229,199,.3);color:var(--accent-2); }
.stat-pill2{ background:var(--panel2);border:1px solid var(--border);border-radius:10px;padding:10px 14px; }
.stat-pill2__num{ font-family:'Rajdhani',sans-serif;font-size:20px;font-weight:700;color:#fff; }
.stat-pill2__lbl{ font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.03em; }

/* Partner-Bewerbungs-CTA */
.apply-cta2{ background:linear-gradient(135deg,rgba(124,92,255,.08),rgba(0,229,199,.05)); border:1px solid rgba(124,92,255,.25); border-radius:16px; padding:28px 32px; display:flex; align-items:center; gap:24px; flex-wrap:wrap; margin-top:32px; }
.apply-cta2__icon{ font-size:44px;flex-shrink:0; }
.apply-cta2__text{ flex:1;min-width:200px; }
.apply-cta2__title{ font-family:'Rajdhani',sans-serif;font-size:20px;font-weight:700;margin-bottom:4px; }
.apply-cta2__sub{ font-size:13px;color:var(--muted);line-height:1.6; }

/* Partner-Profil-Editor */
.profile-editor2{ background:var(--panel2);border:1px solid var(--border);border-radius:16px;overflow:hidden; }
.profile-editor2__banner{ height:100px;background:linear-gradient(135deg,#c4302b,#1a0505);position:relative; }
.profile-editor2__avatar{ width:70px;height:70px;border-radius:50%;border:4px solid var(--panel2);background:var(--panel);position:absolute;bottom:-35px;left:22px;display:flex;align-items:center;justify-content:center;font-size:28px;box-shadow:0 4px 14px rgba(0,0,0,.5);overflow:hidden; }
.profile-editor2__body{ padding:46px 22px 22px; }
.editor-stat2{ background:var(--bg);border:1px solid var(--border);border-radius:10px;padding:11px 13px;display:flex;align-items:center;gap:10px; }
.editor-stat2__icon{ font-size:18px;flex-shrink:0; }
.editor-stat2__label{ font-size:10px;color:var(--muted);font-family:var(--font-mono);text-transform:uppercase;margin-bottom:2px; }
.editor-stat2__value{ font-size:14px;font-weight:700; }
.social-input-row{ display:flex;align-items:center;gap:8px;background:var(--bg);border:1px solid var(--border);border-radius:9px;padding:8px 10px;margin-bottom:8px; }
.social-input-row__icon{ font-size:16px;flex-shrink:0; }
.social-input-row input{ border:none;background:transparent;padding:0;font-size:13px;color:var(--text);width:100%;outline:none; }

/* Filter-Chips */
.partner-filters2{ display:flex;gap:6px;flex-wrap:wrap;margin-bottom:20px; }
.pfilter{ padding:6px 14px;border-radius:999px;border:1px solid var(--border);background:var(--panel2);color:var(--muted);font-size:12px;font-weight:700;cursor:pointer;transition:all .12s; }
.pfilter.is-active{ background:var(--accent);border-color:var(--accent);color:#fff; }
.pfilter:hover:not(.is-active){ border-color:#3b4047;color:#fff; }

@media(max-width:700px){
  .partner-grid2{ grid-template-columns:1fr; }
  .partner-own{ grid-column:span 1; }
  .partner-own__body{ flex-direction:column; }
  .team-grid2{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:480px){
  .team-grid2{ grid-template-columns:1fr; }
}

/************************************************************
 * 44) MOD-KARTEN + MODAL
 ************************************************************/
.mod-grid2{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; }

.mod-card2{ background:var(--panel); border:1px solid var(--border); border-radius:16px; overflow:hidden; cursor:pointer; position:relative; transition:transform .15s, box-shadow .15s, border-color .15s; }
.mod-card2:hover{ transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,.45); border-color:rgba(124,92,255,.4); }
.mod-card2__cover{ height:160px; background:var(--panel2); position:relative; overflow:hidden; }
.mod-card2__cover img{ width:100%; height:100%; object-fit:cover; }
.mod-card2__cover-fallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:52px; background:linear-gradient(135deg,rgba(124,92,255,.12),rgba(0,229,199,.06)); }
.mod-card2__badges{ position:absolute; bottom:10px; left:10px; display:flex; gap:5px; flex-wrap:wrap; }
.mod-badge2{ padding:3px 8px; border-radius:999px; font-size:10px; font-weight:700; font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em; backdrop-filter:blur(8px); }
.mod-badge2.version{ background:rgba(0,229,199,.3); border:1px solid rgba(0,229,199,.6); color:#00e5c7; }
.mod-badge2.game{ background:rgba(124,92,255,.3); border:1px solid rgba(124,92,255,.6); color:#c4b5ff; }
.mod-badge2.is-new{ background:rgba(164,255,46,.25); border:1px solid rgba(164,255,46,.5); color:#a4ff2e; }
.mod-badge2.updated{ background:rgba(240,180,77,.25); border:1px solid rgba(240,180,77,.5); color:#f0b44d; }
.mod-card2__body{ padding:16px; }
.mod-card2__name{ font-family:'Rajdhani',sans-serif; font-size:19px; font-weight:700; margin-bottom:3px; }
.mod-card2__author{ font-size:11px; color:var(--muted); font-family:var(--font-mono); margin-bottom:8px; }
.mod-card2__desc{ font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.mod-card2__footer{ display:flex; align-items:center; justify-content:space-between; gap:8px; flex-wrap:wrap; }
.mod-card2__meta{ display:flex; gap:12px; font-size:11px; color:var(--muted); font-family:var(--font-mono); }
.mod-dl-btn{ display:inline-flex; align-items:center; gap:6px; padding:7px 14px; border-radius:9px; background:var(--accent); color:#fff; text-decoration:none; font-size:12px; font-weight:700; border:none; cursor:pointer; transition:opacity .12s; }
.mod-dl-btn:hover{ opacity:.85; }

/* Modal */
.mod-modal-overlay2{ position:fixed; inset:0; background:rgba(0,0,0,.8); z-index:900; display:flex; align-items:flex-start; justify-content:center; padding:20px; overflow-y:auto; backdrop-filter:blur(4px); }
.mod-modal-overlay2.hidden{ display:none; }
.mod-modal2{ background:var(--panel); border:1px solid var(--border); border-radius:20px; max-width:720px; width:100%; box-shadow:0 24px 80px rgba(0,0,0,.7); margin:auto; }
.mod-modal2__cover{ height:220px; position:relative; overflow:hidden; border-radius:16px 16px 0 0; }
.mod-modal2__cover img{ width:100%; height:100%; object-fit:cover; }
.mod-modal2__cover-fallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:80px; background:linear-gradient(135deg,rgba(124,92,255,.15),rgba(0,229,199,.08)); }
.mod-modal2__close{ position:absolute; top:12px; right:14px; background:rgba(0,0,0,.55); border:none; color:#fff; border-radius:8px; padding:6px 14px; cursor:pointer; font-size:14px; font-family:'Rajdhani',sans-serif; font-weight:700; }
.mod-modal2__body{ padding:22px; }

.mod-info-grid2{ display:grid; grid-template-columns:repeat(auto-fit,minmax(110px,1fr)); gap:8px; margin-bottom:18px; }
.mod-info-tile{ background:var(--panel2); border:1px solid var(--border); border-radius:10px; padding:11px 13px; }
.mod-info-tile__label{ font-size:10px; color:var(--muted); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.04em; margin-bottom:3px; }
.mod-info-tile__value{ font-size:14px; font-weight:700; }

.mod-dl-row{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:18px; }
.mod-dl-direct{ display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:10px; background:var(--accent); color:#fff; text-decoration:none; font-size:13px; font-weight:700; transition:all .12s; }
.mod-dl-direct:hover{ opacity:.9; transform:translateY(-1px); }
.mod-dl-steam{ display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:10px; background:rgba(27,40,56,.9); border:1px solid rgba(200,200,200,.2); color:#c7d5e0; text-decoration:none; font-size:13px; font-weight:700; transition:all .12s; }
.mod-dl-steam:hover{ background:rgba(27,40,56,1); transform:translateY(-1px); }

.mod-tags2{ display:flex; gap:6px; flex-wrap:wrap; margin-bottom:16px; }
.mod-tag2{ font-size:11px; padding:3px 9px; border-radius:6px; background:var(--panel2); border:1px solid var(--border); color:var(--muted); }

.mod-tabs2{ display:flex; gap:4px; background:var(--panel2); padding:4px; border-radius:10px; margin-bottom:18px; }
.mod-tab2{ flex:1; padding:8px 6px; border-radius:8px; border:none; background:transparent; color:var(--muted); font-weight:700; font-size:12px; cursor:pointer; text-align:center; transition:all .12s; white-space:nowrap; }
.mod-tab2.is-active{ background:var(--accent); color:#fff; }
.mod-tab2:hover:not(.is-active){ color:#fff; }

.screenshots-grid2{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-bottom:8px; }
.screenshot-thumb2{ aspect-ratio:16/9; border-radius:8px; border:1px solid var(--border); background:var(--panel2); overflow:hidden; cursor:pointer; transition:opacity .12s; }
.screenshot-thumb2:hover{ opacity:.8; }
.screenshot-thumb2 img{ width:100%; height:100%; object-fit:cover; }
.screenshot-main2{ width:100%; border-radius:10px; border:1px solid var(--border); background:var(--panel2); aspect-ratio:16/9; overflow:hidden; margin-bottom:8px; }
.screenshot-main2 img{ width:100%; height:100%; object-fit:cover; }

.patchnote2{ border:1px solid var(--border); border-radius:12px; overflow:hidden; margin-bottom:10px; }
.patchnote2__head{ display:flex; align-items:center; justify-content:space-between; padding:12px 16px; background:var(--panel2); }
.patchnote2__version{ font-family:var(--font-mono); font-size:14px; font-weight:700; }
.patchnote2__type{ padding:2px 8px; border-radius:999px; font-size:10px; font-weight:700; font-family:var(--font-mono); }
.patchnote2__type.major{ background:rgba(232,51,42,.15); border:1px solid rgba(232,51,42,.35); color:var(--danger); }
.patchnote2__type.minor{ background:rgba(0,229,199,.12); border:1px solid rgba(0,229,199,.3); color:var(--accent-2); }
.patchnote2__type.patch{ background:var(--panel2); border:1px solid var(--border); color:var(--muted); }
.patchnote2__date{ font-size:11px; color:var(--muted); font-family:var(--font-mono); }
.patchnote2__body{ padding:12px 16px; border-top:1px solid var(--border); }
.patchnote2__list{ list-style:none; padding:0; margin:0; }
.patchnote2__list li{ font-size:13px; line-height:1.8; padding:2px 0; color:var(--muted); display:flex; gap:8px; }
.patchnote2__list li .pn-icon{ flex-shrink:0; font-weight:900; font-size:12px; margin-top:3px; width:14px; }
.pn-add .pn-icon{ color:#57d17a; }
.pn-fix .pn-icon{ color:var(--accent-2); }
.pn-change .pn-icon{ color:#f0b44d; }
.pn-remove .pn-icon{ color:var(--danger); }

.install-box{ background:var(--panel2); border:1px solid var(--border); border-radius:12px; padding:18px; margin-bottom:12px; }
.install-box__label{ font-size:11px; color:var(--muted); font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.05em; margin-bottom:12px; }

@media(max-width:600px){
  .mod-grid2{ grid-template-columns:1fr; }
  .mod-tabs2 .mod-tab2{ font-size:11px; padding:7px 4px; }
  .screenshots-grid2{ grid-template-columns:repeat(2,1fr); }
}

/************************************************************
 * 45) GAMESERVER-KARTEN
 ************************************************************/
.server-grid2{ display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:20px; }

.server-card2{
  background:var(--panel); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; position:relative;
  transition:transform .15s, box-shadow .15s;
}
.server-card2:hover{ transform:translateY(-3px); box-shadow:0 12px 36px rgba(0,0,0,.4); }
.server-card2.is-online { border-top:2px solid #57d17a; }
.server-card2.is-offline{ border-top:2px solid var(--danger); }
.server-card2.is-maintenance{ border-top:2px solid #f0b44d; }

.server-card2__banner{ height:110px; position:relative; overflow:hidden; background:linear-gradient(135deg,#0d1117,#1a2030); }
.server-card2__banner img{ width:100%; height:100%; object-fit:cover; opacity:.55; }
.server-card2__banner-fallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:44px; }
.server-card2__game-icon{ position:absolute; bottom:-18px; left:16px; width:42px; height:42px; border-radius:10px; border:3px solid var(--panel); background:var(--panel2); display:flex; align-items:center; justify-content:center; font-size:20px; box-shadow:0 4px 12px rgba(0,0,0,.4); overflow:hidden; }
.server-card2__game-icon img{ width:100%; height:100%; object-fit:cover; }

.server-status-pill2{ position:absolute; top:10px; right:12px; display:flex; align-items:center; gap:6px; padding:4px 10px; border-radius:999px; font-size:11px; font-weight:700; font-family:var(--font-mono); backdrop-filter:blur(6px); }
.server-status-pill2.online{ background:rgba(87,209,122,.2); border:1px solid rgba(87,209,122,.4); color:#57d17a; }
.server-status-pill2.offline{ background:rgba(255,94,102,.2); border:1px solid rgba(255,94,102,.4); color:var(--danger); }
.server-status-pill2.maintenance{ background:rgba(240,180,77,.2); border:1px solid rgba(240,180,77,.4); color:#f0b44d; }
.srv-status-dot{ width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.srv-status-dot.online{ background:#57d17a; animation:srv-pulse 2s infinite; }
.srv-status-dot.offline{ background:var(--danger); }
.srv-status-dot.maintenance{ background:#f0b44d; }
@keyframes srv-pulse{ 0%,100%{ box-shadow:0 0 0 3px rgba(87,209,122,.25); } 50%{ box-shadow:0 0 0 5px rgba(87,209,122,.08); } }

.hoster-badge2{ position:absolute; top:10px; left:12px; padding:3px 8px; border-radius:6px; font-size:10px; font-weight:700; font-family:var(--font-mono); backdrop-filter:blur(6px); }
.hoster-badge2.gghost{ background:rgba(0,229,199,.2); border:1px solid rgba(0,229,199,.4); color:var(--accent-2); }
.hoster-badge2.gportal{ background:rgba(255,165,0,.2); border:1px solid rgba(255,165,0,.4); color:#ffa500; }
.hoster-badge2.nitrado{ background:rgba(77,159,255,.2); border:1px solid rgba(77,159,255,.4); color:#4d9fff; }
.hoster-badge2.other{ background:var(--panel2); border:1px solid var(--border); color:var(--muted); }

.server-card2__body{ padding:26px 16px 16px; }
.server-card2__name{ font-family:'Rajdhani',sans-serif; font-size:19px; font-weight:700; margin-bottom:2px; }
.server-card2__game{ font-size:12px; color:var(--muted); font-family:var(--font-mono); margin-bottom:8px; }
.server-card2__desc{ font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

.player-bar2-wrap{ margin-bottom:12px; }
.player-bar2-top{ display:flex; justify-content:space-between; margin-bottom:5px; }
.player-bar2-count{ font-family:'Rajdhani',sans-serif; font-size:15px; font-weight:700; color:#fff; }
.player-bar2-max{ font-size:11px; color:var(--muted); font-family:var(--font-mono); padding-top:2px; }
.player-bar2{ height:6px; background:var(--panel2); border-radius:999px; overflow:hidden; }
.player-bar2__fill{ height:100%; border-radius:999px; transition:width .6s ease; }
.player-bar2__fill.low{ background:linear-gradient(90deg,#57d17a,#a4ff2e); }
.player-bar2__fill.mid{ background:linear-gradient(90deg,#f0b44d,#ffd166); }
.player-bar2__fill.high{ background:linear-gradient(90deg,#ff6b54,var(--danger)); }

.server-card2__footer{ display:flex; align-items:flex-end; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.server-tags2{ display:flex; gap:4px; flex-wrap:wrap; margin-bottom:6px; }
.server-tag2{ font-size:10px; padding:2px 7px; border-radius:5px; background:var(--panel2); border:1px solid var(--border); color:var(--muted); font-family:var(--font-mono); }
.server-ip-box2{ display:flex; align-items:center; gap:5px; padding:5px 9px; background:var(--panel2); border:1px solid var(--border); border-radius:7px; font-family:var(--font-mono); font-size:11px; cursor:pointer; color:var(--muted); transition:border-color .12s,color .12s; }
.server-ip-box2:hover{ border-color:var(--accent-2); color:var(--accent-2); }
.server-connect-btn2{ display:inline-flex; align-items:center; gap:6px; padding:8px 14px; border-radius:9px; background:var(--accent); color:#fff; text-decoration:none; font-size:12px; font-weight:700; border:none; cursor:pointer; transition:opacity .12s; white-space:nowrap; flex-shrink:0; }
.server-connect-btn2:hover{ opacity:.85; }
.server-connect-btn2.offline{ background:rgba(255,94,102,.15); border:1px solid rgba(255,94,102,.25); color:var(--danger); pointer-events:none; }
.server-connect-btn2.maintenance{ background:rgba(240,180,77,.15); border:1px solid rgba(240,180,77,.25); color:#f0b44d; pointer-events:none; }

.live-badge{ display:inline-flex; align-items:center; gap:5px; font-size:11px; color:var(--muted); font-family:var(--font-mono); }
.live-badge-dot{ width:5px; height:5px; border-radius:50%; background:#57d17a; animation:srv-pulse 2s infinite; }

/************************************************************
 * 46) GALERIE — KARTEN + LIGHTBOX + VIDEO
 ************************************************************/
.gal-grid2{ display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:20px; }
.gal-card2{ background:var(--panel); border:1px solid var(--border); border-radius:16px; overflow:hidden; cursor:pointer; transition:transform .15s, box-shadow .15s, border-color .15s; }
.gal-card2:hover{ transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,.5); border-color:rgba(124,92,255,.35); }
.gal-card2__main{ width:100%; aspect-ratio:16/9; background:var(--panel2); position:relative; overflow:hidden; }
.gal-card2__main img{ width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.gal-card2:hover .gal-card2__main img{ transform:scale(1.04); }
.gal-card2__fallback{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:48px; background:linear-gradient(135deg,rgba(124,92,255,.12),rgba(0,229,199,.06)); }
.gal-type-badge2{ position:absolute; top:10px; right:10px; display:flex; align-items:center; gap:5px; padding:4px 10px; border-radius:8px; font-size:11px; font-weight:700; font-family:var(--font-mono); backdrop-filter:blur(8px); }
.gal-type-badge2.photos{ background:rgba(0,0,0,.45); border:1px solid rgba(255,255,255,.15); color:#fff; }
.gal-type-badge2.video{ background:rgba(255,0,0,.25); border:1px solid rgba(255,0,0,.5); color:#ff6b6b; }
.gal-play-btn2{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:56px; height:56px; border-radius:50%; background:rgba(0,0,0,.6); backdrop-filter:blur(6px); border:2px solid rgba(255,255,255,.4); display:flex; align-items:center; justify-content:center; font-size:22px; transition:all .15s; }
.gal-card2:hover .gal-play-btn2{ background:rgba(255,0,0,.7); border-color:rgba(255,100,100,.6); transform:translate(-50%,-50%) scale(1.1); }
.gal-duration2{ position:absolute; bottom:8px; left:10px; background:rgba(0,0,0,.7); border-radius:5px; padding:2px 7px; font-size:11px; font-weight:700; font-family:var(--font-mono); color:#fff; }
.gal-thumbs2{ display:flex; gap:3px; padding:3px; background:var(--bg); border-bottom:1px solid var(--border); }
.gal-thumb2{ flex:1; aspect-ratio:16/9; border-radius:4px; overflow:hidden; background:var(--panel2); position:relative; }
.gal-thumb2 img{ width:100%; height:100%; object-fit:cover; }
.gal-thumb2.more{ display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.5); color:#fff; font-size:11px; font-weight:700; font-family:var(--font-mono); max-width:44px; flex:none; }
.gal-thumb2-play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.4); font-size:14px; color:#fff; }
.gal-card2__body{ padding:14px; }
.gal-card2__title{ font-family:'Rajdhani',sans-serif; font-size:17px; font-weight:700; margin-bottom:6px; }
.gal-card2__desc{ font-size:12px; color:var(--muted); line-height:1.6; margin-bottom:10px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.gal-meta2{ display:flex; flex-wrap:wrap; gap:5px; margin-bottom:10px; }
.gal-meta2-pill{ display:flex; align-items:center; gap:4px; padding:2px 8px; border-radius:7px; font-size:11px; font-weight:600; font-family:var(--font-mono); }
.gal-meta2-pill.game{ background:rgba(124,92,255,.12);border:1px solid rgba(124,92,255,.25);color:#c4b5ff; }
.gal-meta2-pill.server{ background:rgba(0,229,199,.1);border:1px solid rgba(0,229,199,.25);color:var(--accent-2); }
.gal-meta2-pill.date{ background:var(--panel2);border:1px solid var(--border);color:var(--muted); }
.gal-meta2-pill.vid{ background:rgba(255,0,0,.1);border:1px solid rgba(255,0,0,.25);color:#ff6b6b; }
.gal-card2__footer{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.gal-uploader2{ display:flex; align-items:center; gap:6px; font-size:12px; color:var(--muted); }
.gal-uploader2-av{ width:22px; height:22px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent-2)); display:flex; align-items:center; justify-content:center; font-size:10px; color:#fff; font-weight:900; flex-shrink:0; }
.gal-open-btn2{ display:inline-flex; align-items:center; gap:5px; padding:5px 12px; border-radius:8px; background:var(--accent); color:#fff; font-size:11px; font-weight:700; border:none; cursor:pointer; white-space:nowrap; transition:opacity .12s; }
.gal-open-btn2:hover{ opacity:.85; }

/* Lightbox */
.gal-lightbox2-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.9); z-index:900; display:flex; align-items:flex-start; justify-content:center; padding:20px; overflow-y:auto; backdrop-filter:blur(6px); }
.gal-lightbox2-overlay.hidden{ display:none; }
.gal-lightbox2{ background:var(--panel); border:1px solid var(--border); border-radius:20px; max-width:820px; width:100%; box-shadow:0 24px 80px rgba(0,0,0,.8); margin:auto; overflow:hidden; }
.gal-lightbox2__media{ width:100%; aspect-ratio:16/9; background:#000; position:relative; overflow:hidden; }
.gal-lightbox2__media img{ width:100%; height:100%; object-fit:cover; }
.gal-lightbox2__media video{ width:100%; height:100%; display:block; background:#000; }
.gal-lightbox2__close{ position:absolute; top:12px; right:14px; background:rgba(0,0,0,.6); border:none; color:#fff; border-radius:8px; padding:6px 14px; cursor:pointer; font-size:14px; font-family:'Rajdhani',sans-serif; font-weight:700; z-index:10; }
.gal-lightbox2__nav{ position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,.55); border:none; color:#fff; border-radius:8px; padding:10px 14px; cursor:pointer; font-size:20px; z-index:10; }
.gal-lightbox2__nav.prev{ left:10px; }
.gal-lightbox2__nav.next{ right:10px; }
.gal-lightbox2__counter{ position:absolute; bottom:10px; left:50%; transform:translateX(-50%); background:rgba(0,0,0,.55); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.15); border-radius:8px; padding:3px 12px; font-size:11px; color:#fff; font-family:var(--font-mono); }
.gal-lightbox2__thumbs{ display:flex; gap:6px; padding:10px; background:var(--bg); overflow-x:auto; border-bottom:1px solid var(--border); }
.gal-lightbox2__thumb{ width:80px; height:54px; border-radius:6px; overflow:hidden; flex-shrink:0; cursor:pointer; border:2px solid transparent; transition:border-color .12s; position:relative; }
.gal-lightbox2__thumb.active{ border-color:var(--accent); }
.gal-lightbox2__thumb img{ width:100%; height:100%; object-fit:cover; }
.gal-lightbox2__thumb-play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.4); color:#fff; font-size:18px; }
.gal-lightbox2__info{ padding:16px 20px; }
.gal-lightbox2__title{ font-family:'Rajdhani',sans-serif; font-size:21px; font-weight:700; margin-bottom:6px; }
.gal-lightbox2__desc{ font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:12px; }
.gal-lightbox2__meta{ display:flex; flex-wrap:wrap; gap:8px; align-items:center; }

/* Admin Galerie */
.gal-admin-list2{ display:flex; flex-direction:column; gap:10px; }
.gal-admin-item2{ display:flex; align-items:center; gap:14px; padding:12px 14px; background:var(--panel); border:1px solid var(--border); border-radius:12px; }
.gal-admin-item2__cover{ width:80px; height:54px; border-radius:8px; overflow:hidden; background:var(--panel2); flex-shrink:0; position:relative; }
.gal-admin-item2__cover img{ width:100%; height:100%; object-fit:cover; }
.gal-admin-item2__cover-play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.4); color:#fff; font-size:20px; }
.gal-drop-zone{ border:2px dashed var(--border); border-radius:12px; padding:24px 16px; text-align:center; cursor:pointer; transition:border-color .15s,background .15s; background:var(--bg); }
.gal-drop-zone:hover{ border-color:var(--accent); background:rgba(124,92,255,.04); }
.gal-drop-zone.video{ }
.gal-drop-zone.video:hover{ border-color:#ff4e45; background:rgba(255,0,0,.04); }
.gal-photo-thumb{ position:relative; aspect-ratio:16/9; border-radius:10px; overflow:hidden; border:1px solid var(--border); background:var(--panel2); cursor:pointer; }
.gal-photo-thumb img{ width:100%; height:100%; object-fit:cover; }
.gal-photo-thumb__overlay{ position:absolute; inset:0; background:rgba(0,0,0,.0); display:flex; align-items:center; justify-content:center; gap:6px; transition:background .15s; }
.gal-photo-thumb:hover .gal-photo-thumb__overlay{ background:rgba(0,0,0,.55); }
.gal-photo-thumb__btn{ opacity:0; background:rgba(0,0,0,.6); border:none; border-radius:6px; color:#fff; width:26px; height:26px; display:flex; align-items:center; justify-content:center; font-size:12px; cursor:pointer; transition:opacity .15s; }
.gal-photo-thumb:hover .gal-photo-thumb__btn{ opacity:1; }
.gal-cover-badge{ position:absolute; top:4px; left:4px; background:rgba(124,92,255,.9); border-radius:4px; padding:1px 5px; font-size:9px; font-weight:700; font-family:var(--font-mono); color:#fff; }
.gal-vid-badge{ position:absolute; top:4px; left:4px; background:rgba(255,0,0,.85); border-radius:4px; padding:1px 5px; font-size:9px; font-weight:700; font-family:var(--font-mono); color:#fff; }
.gal-media-tabs{ display:flex; gap:4px; background:var(--panel2); padding:4px; border-radius:10px; margin-bottom:14px; }
.gal-media-tab{ flex:1; padding:8px 6px; border-radius:8px; border:none; background:transparent; color:var(--muted); font-weight:700; font-size:12px; cursor:pointer; text-align:center; transition:all .12s; }
.gal-media-tab.is-active{ background:var(--accent); color:#fff; }

/* Filter-Chips */
.gal-filters{ display:flex; gap:6px; flex-wrap:wrap; margin-bottom:20px; }
