    body {
    padding-bottom: 140px; /* Höhe des Footers + etwas Abstand */
    }
    .rating-image {
    width: 18px;
    height: 16px;
    object-fit: contain;
    }
    .coins-column {
    width: 10px; /* Setze die gewünschte Breite für die Coins-Spalte */
    }

    .highlight {
    color: #f39c12;
    font-weight: bold;
    }

    .main-banner {
    background: rgb(35,40,50);
    background: linear-gradient(0deg, rgba(35,40,50,1) 0%, rgba(44,60,84,1) 100%);
    padding: 50px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .header-text h6, .header-text h4, .header-text p {
      color: #ffffff;
    }

    .main-button a.glowing-btn {
      border: 2px solid #f39c12;
      padding: 10px 30px;
      background-color: transparent;
      color: #fff;
      text-transform: uppercase;
      font-weight: bold;
      transition: 0.3s ease;
      box-shadow: 0px 0px 15px rgba(243, 156, 18, 0.7);
      border-radius: 50px;
    }

    .main-button a.glowing-btn:hover {
      background-color: #f39c12;
      color: #fff;
      box-shadow: 0px 0px 20px rgba(243, 156, 18, 1);
      transform: scale(1.05);
    }

    .floating-image {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0% { transform: translatey(0px); }
      50% { transform: translatey(-20px); }
      100% { transform: translatey(0px); }
    }

    .scroll-down i {
      font-size: 40px;
      color: #f39c12;
      animation: bounce 2s infinite;
    }

    .scroll-down:hover i {
      color: #e67e22;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    /* Adding a glow effect to the banner */
    .main-banner::before {
      content: '';
      position: absolute;
      top: -50px;
      left: -50px;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.1);
      z-index: 1;
      pointer-events: none;
      animation: rotatingGlow 20s linear infinite;
    }

    @keyframes rotatingGlow {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

/* ====== NAV LAYOUT (Grid mit Areas) ====== */
.ch-header { backdrop-filter: blur(8px); }
.ch-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "brand links stats";
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

/* Brand */
.ch-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.ch-brand__logo { height:28px; width:auto; display:block; }
.ch-brand__name { color:#fff; font-weight:700; font-size:16px; letter-spacing:.3px; }

/* Links */
.ch-links { list-style:none; margin:0; padding:0; display:flex; gap:12px; align-items:center; }
.ch-link {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:10px; color:#d7d9e0; text-decoration:none;
  transition:background .2s, color .2s, transform .05s; font-size:14px;
}
.ch-link i { font-size:14px; opacity:.95; }
.ch-link:hover { background:rgba(255,255,255,.06); color:#fff; transform:translateY(-1px); }

/* SL time als kleines Badge */
.ch-badge {
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:12px; background:rgba(255,255,255,.06); color:#cfd2da;
  font-size:12px; font-weight:600; letter-spacing:.2px;
}

/* Stats (schlankere Pills) */
.ch-stats { display:flex; align-items:center; gap:12px; }
.ch-pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:12px; background:rgba(255,255,255,.06); color:#e9ebf4;
  white-space:nowrap;
}
.ch-pill i { font-size:14px; opacity:.9; }
.ch-pill__label { font-size:12px; opacity:.75; text-transform:uppercase; letter-spacing:.35px; }
.ch-pill__val { font-weight:800; font-variant-numeric:tabular-nums; font-size:13px; }

/* Burger */
.ch-burger {
  display:none; height:36px; width:42px; margin-left:8px;
  border-radius:10px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04); cursor:pointer;
}
.ch-burger__bar { display:block; height:2px; width:20px; margin:5px auto; background:#fff; border-radius:2px; }

/* ====== BREAKPOINTS ====== */
/* 2-zeiliges Layout: Links unten links, Stats unten rechts */
@media (max-width: 1279px) {
  .ch-nav {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand stats"
      "links links";
    row-gap: 20px;
  }
  .ch-links { justify-content:flex-start; }
  .ch-stats { justify-self:end; }
}

/* Mobile: Burger-Menü, SL-Zeit ausblenden, Links als Overlay */
@media (max-width: 980px) {
  .ch-burger { display:block; }
  .ch-links {
    position: fixed; left: 0; right: 0; top: 70px;
    display: none; flex-direction: column; gap: 6px;
    background: rgba(15,17,26,.96); padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08); z-index: 1001;
  }
  .ch-links.is-open { display:flex; }
  .ch-sltime { display:none; }
  .ch-pill__label { display:none; } /* Platz sparen: nur Werte + Icon mobil */
}

/* Klein: Gaps etwas runter, damit nichts quetscht */
@media (max-width: 360px) {
  .ch-links { gap:4px; }
  .ch-pill { gap:6px; padding:5px 8px; }
}

/* ===== Footer ===== */
.ch-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin-top: 0px;
  background: rgba(15,17,26, 0.6);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #cfd2da;
  font-size: 14px;
}
.ch-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0 10px;
}
.ch-footer__logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.ch-footer__logo img { height:28px; width:auto; }
.ch-footer__logo span { color:#fff; font-weight:700; letter-spacing:.3px; }
.ch-footer__claim { margin-top:10px; opacity:.85; line-height:1.5; }

.ch-footer__title {
  color:#e9ebf4; font-weight:700; font-size:13px;
  text-transform: uppercase; letter-spacing:.35px; margin:6px 0 10px;
}
.ch-footer__nav ul { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.ch-footer__nav a { color:#cfd2da; text-decoration:none; }
.ch-footer__nav a:hover { color:#fff; text-decoration:underline; }

.ch-socials { display:flex; gap:10px; }
.ch-socials a {
  height:36px; width:36px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px; background: rgba(255,255,255,.06); color:#e9ebf4; text-decoration:none;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, background .2s ease;
}
.ch-socials a:hover { transform: translateY(-2px); background: rgba(255,255,255,.12); }

.ch-status { margin-top:12px; display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:10px; background:rgba(255,255,255,.06); }
.ch-status .dot { width:8px; height:8px; border-radius:50%; display:inline-block; }
.ch-status--normal .dot { background:#4caf50; }
.ch-status--update .dot { background:#ffc107; }

.ch-footer__sep {
  border: none; height:1px; background: rgba(255,255,255,.08);
  margin: 10px 0 8px;
}

.ch-footer__meta {
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 0 18px;
  font-size: 13px;
}
.ch-footer__meta a { color:#e9ebf4; text-decoration:none; }
.ch-footer__meta a:hover { text-decoration:underline; }

/* Back-to-top */
.ch-top {
  height:36px; width:36px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:10px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06); color:#fff; cursor:pointer;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  opacity:.85;
}
.ch-top:hover { transform: translateY(-2px); background:rgba(255,255,255,.12); opacity:1; }

/* Responsive */
@media (max-width: 980px) {
  .ch-footer__grid { grid-template-columns: 1fr; }
  .ch-footer__meta { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===== Server Status Card (animated) ===== */
.ch-footer__status { display:flex; flex-direction:column; gap:12px; }

/* Card */
.ch-statuscard {
  position: relative;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}
.ch-statuscard::before {
  /* zarte, animierte Kante */
  content:"";
  position:absolute; inset:-1px;
  border-radius: 14px;
  padding:1px;
  background: conic-gradient(from 0deg,
    rgba(80,220,120,0.45), rgba(80,220,120,0.0) 35%, rgba(80,220,120,0.45) 70%, rgba(80,220,120,0.0) 100%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite: exclude;
  animation: chSpin 8s linear infinite;
  pointer-events:none;
}
.ch-statuscard--update::before {
  background: conic-gradient(from 0deg,
    rgba(255,193,7,0.55), rgba(255,193,7,0.0) 35%, rgba(255,193,7,0.55) 70%, rgba(255,193,7,0.0) 100%);
}

@keyframes chSpin { to { transform: rotate(360deg); } }

.ch-statuscard__header {
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.ch-statuscard__badge {
  font-size:11px; text-transform:uppercase; letter-spacing:.4px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  padding:4px 8px; border-radius: 999px; color:#e9ebf4;
}

/* LIVE pulse */
.ch-live { display:inline-flex; align-items:center; gap:8px; }
.ch-live__dot {
  width:10px; height:10px; border-radius:50%;
  background:#4caf50; box-shadow: 0 0 0 0 rgba(76,175,80,.7);
  animation: chPulse 1.8s ease-out infinite;
}
.ch-statuscard--update .ch-live__dot {
  background:#ffc107; box-shadow: 0 0 0 0 rgba(255,193,7,.65);
}
@keyframes chPulse {
  0% { box-shadow: 0 0 0 0 rgba(76,175,80,.6); }
  70% { box-shadow: 0 0 0 10px rgba(76,175,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); }
}
.ch-statuscard--update .ch-live__text { color:#ffe28c; }
.ch-live__text { font-weight:700; color:#cfe7d6; }

/* Nachricht */
.ch-statuscard__msg { margin:10px 0 8px; color:#d8dde7; opacity:.95; line-height:1.5; font-size:14px; }

/* Aktivitäts-Welle (leichter Equalizer) */
.ch-activity {
  display:flex; align-items:flex-end; gap:6px;
  height:22px; margin-top:6px;
  opacity:.85;
}
.ch-activity span {
  width:6px; border-radius:3px; background:rgba(255,255,255,0.10);
  animation: chBar 1.4s ease-in-out infinite;
}
.ch-activity span:nth-child(odd)  { animation-duration: 1.6s; }
.ch-activity span:nth-child(3n)   { animation-duration: 1.2s; }
.ch-activity span:nth-child(4n)   { animation-duration: 1.8s; }
@keyframes chBar { 0%,100% { height:20% } 50% { height: 95% } }

/* Farbakzente je Status */
.ch-statuscard--normal .ch-activity span { background: rgba(80,220,120,0.25); }
.ch-statuscard--update .ch-activity span { background: rgba(255,193,7,0.30); }

/* Respektiere reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  .ch-statuscard::before, .ch-live__dot, .ch-activity span { animation: none !important; }
}

.ch-statuscard {
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
}
.ch-statuscard__header { margin-bottom: 6px; }
.ch-statuscard__msg { margin: 4px 0 6px; font-size: 13px; }
.ch-activity { margin-top: 4px; height: 18px; }

/* ===== Row-Card Stil nach Skizze ===== */
.gaming-library .coin-grid {
  display: grid;
  grid-template-columns: 1fr;        /* 1 pro Zeile (clean, mittig) */
  gap: 12px;
  max-width: 900px;                  /* mittlere Breite */
  margin: 0 auto;                    /* zentriert das Grid */
}

.gaming-library .coin-card--row {
  display: grid;
  grid-template-columns: auto 1fr auto; /* thumb | chips | button */
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

/* Thumbnail links */
.gaming-library .coin-thumb {
  position: relative;
  width: 160px; height: 120px;
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #222;
}
.gaming-library .coin-thumb img.lazy {
  width: 100%; height: 100%; object-fit: cover; display:block;
}
.gaming-library .coin-thumb .coin-rating {
  position: absolute; right: 8px; bottom: 8px;
  height: 18px; width: auto; border-radius: 4px;
}

/* Chips mittig */
.gaming-library .coin-line {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.gaming-library .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  background: #fff; color: #111;      /* wie in der Skizze: helle Pills */
  font-size: 13px; font-weight: 700;
}
.gaming-library .chip i { font-size: 13px; opacity: .9; }
.gaming-library .chip--owner { text-transform: none; }

/* Teleport rechts */
.gaming-library .btn-teleport--row {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px;
  background: #fff; color: #111; text-decoration: none; font-weight: 800;
  border: none;
}
.gaming-library .btn-teleport--row:hover { filter: brightness(0.95); }

/* Responsiv: auf schmalen Screens stapeln */
@media (max-width: 680px) {
  .gaming-library .coin-card--row {
    grid-template-columns: 1fr;      /* untereinander */
    gap: 10px;
  }
  .gaming-library .coin-thumb {
    width: 100%; height: 180px;      /* breiteres Bild oben */
    border-radius: 12px;
  }
  .gaming-library .coin-actions { display: flex; justify-content: flex-end; }
}

/* Optional: etwas Luft um den Bereich */
.gaming-library .heading-section { text-align: center; }
.gaming-library .ch-sub { text-align: center; color:#cfd2da; opacity:.85; margin: 4px 0 10px; }

/* Support forms – dunkler Input passend zum Theme */
.form-control {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #e9ebf4;
  border-radius: 10px;
}
.form-control:focus {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  box-shadow: none;
}
.disabled-input {
  opacity: .6;
}

/* Card Headings im Admin/Support klar weiß */
.ch-card h3 { color:#fff; }
.ch-sub, .muted { color:#cfd2da; opacity:.95; }

/* Labels in Formularen klar lesbar */
.form-label, label {
  color: #e9ebf4 !important; /* hellgrau fast weiß */
  font-weight: 500;
}

/* Alle Inputfelder, Textareas und Selects */
.form-control, select.form-control {
  background: rgba(255,255,255,0.06) !important; /* dunkler Hintergrund */
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #f5f7fa !important; /* Schrift hell */
  border-radius: 8px;
}

/* Placeholder Texte */
.form-control::placeholder {
  color: #aab0c3 !important;
}

/* Bei Fokus */
.form-control:focus, select.form-control:focus {
  background: rgba(255,255,255,0.1) !important;
  border-color: #4dabf7 !important;  /* blauer Rand passend zur Page */
  color: #fff !important;
  box-shadow: none !important;
}

/* Dropdown-Optionen */
select.form-control option {
  background: #1c1f2a;    /* Dark Hintergrund */
  color: #e9ebf4;         /* Helle Schrift */
}

/* Darkmode Tabelle */
.ch-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #1e1f26;      /* dunkler Hintergrund */
  border-radius: 8px;
  overflow: hidden;
}

.ch-table th, 
.ch-table td {
  padding: 12px 15px;
  text-align: left;
  color: #f5f7fa;           /* Heller Text */
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Labels (erste Spalte) */
.ch-table th {
  width: 150px;
  font-weight: 600;
  color: #4dabf7;           /* bläuliches Highlight */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Letzte Zeile ohne Border */
.ch-table tr:last-child td {
  border-bottom: none;
}

/* Message Bereich (pre-Tag im Darkmode) */
.ch-table pre {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 5px;
  color: #f5f7fa;
  font-family: inherit;
  font-size: 14px;
}

/* FAQ shell */
.faq-toolbar {
  display:flex; align-items:center; gap:10px; margin:12px auto 10px;
  max-width: 760px;
}
.faq-toolbar .form-control {
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:#e9ebf4; border-radius:10px;
}
.faq-count { color:#cfd2da; font-size:13px; }

.faq-accordion { max-width: 900px; margin: 0 auto; display:flex; flex-direction:column; gap:10px; }

/* <details> accordion */
.faq-accordion details {
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:12px; overflow:hidden;
}
.faq-accordion summary {
  cursor:pointer; list-style:none; padding:14px 16px;
  display:flex; align-items:center; justify-content:space-between;
  color:#fff; font-weight:800;
}
.faq-accordion summary::-webkit-details-marker { display:none; }
.faq-accordion summary span { pointer-events:none; }

/* chevron */
.faq-accordion details summary::after{
  content:"\25BC"; font-size:12px; opacity:.8; transition:transform .2s ease;
}
.faq-accordion details[open] summary::after { transform:rotate(180deg); }

.faq-body {
  padding: 0 16px 14px 16px; color:#e9ebf4; line-height:1.6;
  border-top:1px solid rgba(255,255,255,.08);
}

/* Links */
.faq-body a { color:#80b8ff; text-decoration:underline; }
.faq-body a:hover { text-decoration:none; }

/* Responsive */
@media (max-width: 640px){
  .faq-toolbar { flex-direction:column; align-items:stretch; }
}

/* Höhe des Headers zentral definieren */
:root { --ch-header-h: 72px; }           /* Desktop */
@media (max-width: 991px) { :root { --ch-header-h: 64px; } }  /* Mobile */

/* Help/FAQ nicht unter den Header schieben */
.faq-section { 
  margin-top: calc(var(--ch-header-h) + 12px);  /* Abstand unter dem sticky/fixed Header */
}

/* Wenn per #hash gesprungen wird (Deep-Link): nicht unter Header verschwinden */
.heading-section,
#faqSearch,
.faq-accordion details {
  scroll-margin-top: calc(var(--ch-header-h) + 10px);
}

/* Sicherheit: Header liegt über Content, aber Content selbst nicht "hinter" ihm */
.header-area { z-index: 9999; }

/* Card reuse */
.ch-card { border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); border-radius:12px; padding:14px; }

/* AI assistant styles */
.ai-form { display:flex; gap:8px; }
.ai-form .form-control {
  background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:#e9ebf4; border-radius:10px;
}
.ai-form .form-control:focus { background:rgba(255,255,255,.1); border-color:#4dabf7; color:#fff; box-shadow:none; }
.ai-box { margin-top:10px; }
.ai-a { color:#e9ebf4; line-height:1.6; white-space:pre-wrap; }
.ai-src { margin-top:6px; font-size:12px; }


