/* ==========================================================
   Ruhrpott Life – V9 Ultimate Stable Neon Edition (FINAL)
   Kombi aus Metallic Look + Overlay Fix + Clean Structure
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Pacifico&display=swap');

:root {
  --bg0:#0a0a0a;
  --bg1:#181818;
  --metal1:#2e2e2e;
  --metal2:#3a2b3f;
  --metal3:#4b264b;
  --accent:#c770ff;
  --accent2:#d29cff;
  --text:#e6e6e6;
}

/* ==========================================================
   GLOBAL
   ========================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  font-family: "Orbitron", sans-serif;
  background: radial-gradient(circle at center, var(--bg0) 0%, var(--bg1) 80%);
  color: var(--text);
  overflow-x: hidden;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  background: linear-gradient(90deg, #2e2e2e, #3a2b3f, #4b264b);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 0 20px #c770ff33;
  padding: 12px 25px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.logo-box {
  background: linear-gradient(145deg, #1e1e1e, #2c2c2c);
  border: 2px solid var(--accent);
  border-radius: 15px;
  padding: 8px 15px;
  box-shadow: 0 0 15px #c770ff44;
}
.logo-box img {
  height: 70px;
  width: auto;
  border-radius: 10px;
}
.slogan {
  font-family: "Pacifico", cursive;
  font-size: 1.5em;
  color: var(--accent2);
  text-shadow: 0 0 8px var(--accent2), 0 0 20px #b05cff;
}
.header-nav a {
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  margin: 0 4px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
  transition: .25s;
}
.header-nav a:hover {
  background: rgba(199,112,255,.10);
  box-shadow: 0 0 12px var(--accent2);
  transform: translateY(-1px);
}

/* ==========================================================
   LAYOUT – Sidebars + Content
   ========================================================== */
.container {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 18px;
  width: 95%;
  margin: 20px auto;
}
.sidebar {
  background: rgba(20,20,20,.9);
  border: 1px solid #3d3d3d;
  border-radius: 18px;
  padding: 15px;
  box-shadow: inset 0 0 10px #000, 0 0 15px #c770ff22;
}
.sidebar-section {
  background: rgba(30,30,30,.85);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #c770ff22;
  border: 1px solid #3c3c3c;
}
.sidebar-section h3 {
  margin: 0 0 10px;
  font-size: 1.1em;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  text-shadow: 0 0 6px var(--accent2);
  background: linear-gradient(90deg, var(--metal1), var(--metal2), var(--metal3));
}
.sidebar a {
  display: block;
  color: #ddd;
  background: rgba(255,255,255,.05);
  padding: 10px 12px;
  margin: 6px 0;
  border-radius: 10px;
  transition: .25s;
  text-decoration: none;
}
.sidebar a:hover {
  background: rgba(199,112,255,.10);
  box-shadow: 0 0 10px #c770ff66;
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================
   MAIN CONTENT (Threads)
   ========================================================== */
.main-content {
  background: rgba(25,25,25,.92);
  border: 1px solid #444;
  border-radius: 18px;
  padding: 25px;
  min-height: 600px;
  box-shadow: inset 0 0 8px #000, 0 0 10px #c770ff22;
}
.thread-box {
  display: flex;
  align-items: flex-start;
  background: rgba(30,30,30,.9);
  border: 1px solid #333;
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 12px;
  box-shadow: 0 0 10px #c770ff22;
  transition: .3s;
}
.thread-box:hover {
  box-shadow: 0 0 20px #b05cff66;
}
.thread-avatar {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-right: 15px;
  border: 2px solid var(--accent);
  object-fit: cover;
}
.thread-title {
  font-size: 1.2em;
  color: var(--accent2);
  text-decoration: none;
  text-shadow: 0 0 5px #c770ff;
}
.thread-title:hover { text-decoration: underline; }
.thread-meta {
  color: #aaa;
  font-size: .85em;
  margin-top: 2px;
}
.thread-excerpt {
  margin-top: 6px;
  color: #ccc;
}

/* ==========================================================
   REGISTER
   ========================================================== */
.register-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0;
  background: radial-gradient(circle at top, var(--bg1), var(--bg0));
  min-height: calc(100vh - 120px);
}
.register-content {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  width: 90%;
}
.register-form-box {
  flex: 0 0 380px;
  background: rgba(0,0,0,.6);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 25px #c770ff33;
  border: 2px solid var(--accent);
  text-align: center;
}
.register-form-box h2 {
  color: var(--accent2);
  text-shadow: 0 0 10px var(--accent2);
}
.register-form-box input,
.register-form-box select {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #e6e6e6;
  color: #000;
}
.register-btn {
  width: 100%;
  background: linear-gradient(90deg,#4b264b,#3a2b3f,#2e2e2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: .25s;
}
.register-btn:hover {
  box-shadow: 0 0 15px #c770ff;
  transform: translateY(-2px);
}
.small-hint {
  font-size: .85em;
  color: #bbb;
}
.register-info-section {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: rgba(30,30,30,.9);
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 0 12px #000;
  padding: 8px;
}
.info-card img {
  width: 100%;
  border-radius: 10px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: linear-gradient(90deg,#1a1a1a,#262626);
  color: #ccc;
  padding: 8px;
  text-align: center;
  font-size: .9em;
  border-top: 1px solid #333;
  box-shadow: 0 0 10px #c770ff22;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
}

/* ==========================================================
   OVERLAY SYSTEM – Stable Fade & Pulse
   ========================================================== */

/* Hintergrund */
#overlay-container, #loginOverlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

/* Modalbox */
#overlay-container .login-box,
#loginOverlay .login-box {
  position: relative;
  width: min(900px,95vw);
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: #111;
  overflow: visible;
  animation: popIn .45s ease both;
  box-shadow: 0 0 40px #b05cff99, inset 0 0 20px #b05cff22;
}
.modal-bg {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* Close Button */
.close-overlay,
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  color: var(--accent2);
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-shadow: 0 0 8px var(--accent2);
  z-index: 50;
  transition: color .25s, transform .25s;
}
.close-overlay:hover,
.close-btn:hover {
  color: #fff;
  transform: scale(1.15);
}

/* Popup 1 */
.welcome-cta {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  background: linear-gradient(90deg,var(--metal3),var(--metal2),var(--metal1));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  box-shadow: 0 0 18px #c770ff;
  animation: pulseGlow 1.8s ease-in-out infinite;
}
.welcome-cta:hover {
  box-shadow: 0 0 26px var(--accent2);
  transform: translateX(-50%) translateY(-1px);
}

/* ==========================================================
   ✅ Popup 2 Close-Button – Final Ruhrpott Life Fix
   ========================================================== */
#loginOverlay .login-box {
  position: relative !important;
  overflow: visible !important;
  z-index: 2;
}

/* Close-Button bleibt sauber in der Ecke */
#loginOverlay .close-btn {
  position: absolute !important;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: var(--accent2);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 50;
  text-shadow: 0 0 8px var(--accent2), 0 0 12px #000;
  transition: color 0.25s, transform 0.25s;
}

/* Hover-Effekt */
#loginOverlay .close-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Bild darf den Button nicht verdecken */
#loginOverlay img.modal-bg {
  position: relative;
  z-index: 1;
}

/* ==========================================================
   ANIMATIONEN
   ========================================================== */
@keyframes popIn {
  0% {opacity: 0; transform: scale(.96);}
  100% {opacity: 1; transform: scale(1);}
}
@keyframes pulseGlow {
  0%,100% {box-shadow: 0 0 18px #c770ff;}
  50% {box-shadow: 0 0 28px #d29cff;}
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width:1100px){.container{grid-template-columns:1fr}}
@media (max-width:720px){
  .header-wrapper{flex-wrap:wrap;gap:10px}
  .register-content{flex-direction:column}
  .login-overlay-box{left:50%;transform:translate(-50%,-50%);width:86%}
}

/* ==========================================================
   ✅ Ruhrpott Life – Login Popup Layout Fix (Final)
   ========================================================== */

/* Das innere Login-Feld wieder sauber positionieren */
#loginOverlay .login-overlay-box {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 340px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 0 18px #b05cff55;
  backdrop-filter: blur(3px);
  animation: fadeInZoom 0.5s ease both;
}

/* Eingaben und Buttons */
#loginOverlay .login-overlay-box h2 {
  color: #fff;
  text-shadow: 0 0 10px var(--accent2);
  margin-bottom: 10px;
}
#loginOverlay .login-overlay-box input {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: none;
  border-radius: 8px;
  background: #e7e7e7;
  color: #000;
}
#loginOverlay .login-overlay-box button {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--metal3), var(--metal2), var(--metal1));
  transition: 0.25s;
}
#loginOverlay .login-overlay-box button:hover {
  box-shadow: 0 0 15px var(--accent2);
  transform: translateY(-2px);
}

/* Sanfte Fade-in + Zoom-Animation */
@keyframes fadeInZoom {
  0% { opacity: 0; transform: translateY(-50%) scale(0.95); }
  100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* ==========================================================
   ✅ Ruhrpott Life – Login-Box sichtbar vor Bild (Final)
   ========================================================== */

#loginOverlay .login-overlay-box {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 340px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 0 18px #b05cff55;
  backdrop-filter: blur(3px);
  animation: fadeInZoom 0.5s ease both;
  z-index: 10; /* <-- Diese Zeile sorgt dafür, dass die Box über dem Bild liegt */
}

/* Bild selbst hinter die Box legen */
#loginOverlay img.modal-bg {
  position: relative;
  z-index: 1;
}

/* ==========================================================
   ✅ Ruhrpott Life – Sidebar Visual Cleanup (V7 Remaster Look)
   ========================================================== */

/* Äußerer Rahmen: leichtes Neon-Highlight */
.sidebar {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(199, 112, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(199, 112, 255, 0.15), inset 0 0 8px #000;
  padding: 14px;
}

/* Innere Sektionen: flach und elegant */
.sidebar-section {
  background: rgba(35, 35, 35, 0.9);
  border: none; /* kein zusätzlicher Rahmen */
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
}

/* Titel: bleibt neon-glowig */
.sidebar-section h3 {
  font-size: 1.1em;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--metal3), var(--metal2), var(--metal1));
  text-shadow: 0 0 6px var(--accent2);
  margin-bottom: 10px;
}

/* Karten (z. B. Streamer, Uhr etc.) */
.info-card {
  background: rgba(40, 40, 40, 0.8);
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 5px #000;
  padding: 8px;
}

/* Bilder in Karten */
.info-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Schrift leicht lesbarer machen */
.sidebar, .sidebar-section, .info-card {
  color: #e6e6e6;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.5px;
}

/* ==========================================================
   🟣 Ruhrpott Life – Sidebar V7 Remaster Style
   ========================================================== */

/* Seitenleisten Grundlayout */
.sidebar {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(199, 112, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(199, 112, 255, 0.15), inset 0 0 8px #000;
  padding: 16px;
  color: #e6e6e6;
  font-family: "Orbitron", sans-serif;
}

/* Abschnitt */
.sidebar-section {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.7);
}

/* Titel */
.sidebar-section h3 {
  font-size: 1.1em;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--metal3), var(--metal2), var(--metal1));
  text-shadow: 0 0 6px var(--accent2);
  margin-bottom: 10px;
}

/* Clockbox */
.clock-box {
  text-align: center;
  line-height: 1.6;
}
#liveClock {
  font-size: 1.4em;
  color: var(--accent2);
  text-shadow: 0 0 8px var(--accent2);
}
#liveDate {
  font-size: 0.9em;
  opacity: 0.9;
}

/* Letzte Beiträge */
.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts li {
  margin: 6px 0;
}
.recent-posts a {
  color: #c9c9c9;
  text-decoration: none;
  transition: color 0.2s;
}
.recent-posts a:hover {
  color: var(--accent2);
  text-shadow: 0 0 5px var(--accent2);
}

/* Streamer-Karten */
.streamer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.streamer-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(25, 25, 25, 0.8);
  border-radius: 10px;
  padding: 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}
.streamer-card:hover {
  box-shadow: 0 0 12px rgba(210, 156, 255, 0.4);
  transform: translateY(-2px);
}
.streamer-card img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--accent2);
  object-fit: cover;
}
.streamer-card span {
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 5px var(--accent2);
}

/* Info-Karte (z. B. Discord-Banner) */
.info-card {
  background: rgba(25, 25, 25, 0.85);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 5px #000;
}
.info-card img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 800px) {
  .sidebar {
    display: none; /* Seitenleisten mobil ausblenden */
  }
}

/* ==========================================================
   🟣 Side-Sheet Menü (V7 Revival)
   ========================================================== */
.side-sheet {
  position: fixed;
  inset: 0 0 0 auto;
  width: 280px;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(6px);
  box-shadow: -4px 0 20px rgba(199,112,255,0.2);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 10000;
  padding: 20px;
}
.side-sheet.show {
  transform: translateX(0);
}
.side-sheet ul {
  list-style: none;
  margin: 60px 0 0 0;
  padding: 0;
}
.side-sheet li {
  margin: 14px 0;
}
.side-sheet a {
  color: #fff;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  text-shadow: 0 0 6px var(--accent2);
  transition: color 0.2s;
}
.side-sheet a:hover {
  color: var(--accent2);
}
.close-side {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 26px;
  color: var(--accent2);
  background: none;
  border: none;
  cursor: pointer;
}
.close-side:hover { color:#fff; }

body {
  background: #0d0d0d;
  color: #ddd;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

.container {
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  gap: 15px;
  padding: 20px;
}

/* ===== Sidebar Base ===== */
.sidebar {
  background: #111;
  border: 1px solid #4a2a80;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 0 10px #6000ff50;
}

.sidebar-section {
  background: #161616;
  border: 1px solid #3a1c66;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 15px;
}

.sidebar-section h3 {
  background: #39135c;
  color: #fff;
  text-shadow: 0 0 8px #ff00ff;
  font-size: 1.1em;
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 0;
}

/* ===== CLOCK ===== */
.clock-box {
  text-align: center;
  margin-bottom: 10px;
}
#rp-clock {
  font-size: 1.5em;
  color: #e0e0ff;
}
#rp-date {
  color: #999;
}

/* ===== CALENDAR ===== */
.calendar {
  margin-top: 10px;
}
.calendar-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 4px;
}
.calendar-grid div {
  padding: 4px;
  font-size: 0.8em;
  color: #bbb;
}
.calendar-grid .today {
  background: #6a00ff;
  border-radius: 6px;
  color: #fff;
}

/* ===== THREADS ===== */
.main-content h2 {
  color: #fff;
  text-shadow: 0 0 10px #a050ff;
}

.thread-box {
  display: flex;
  align-items: flex-start;
  background: #141414;
  border: 1px solid #3d2066;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 10px;
}
.thread-avatar {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
  border: 2px solid #6a00ff;
  object-fit: cover;
}
.thread-title {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.thread-title:hover {
  color: #b45bff;
}
.thread-meta {
  color: #888;
  font-size: 0.8em;
}
.thread-excerpt {
  margin-top: 4px;
  color: #ccc;
}

/* ===== STREAMER ===== */
.streamer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.streamer-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ccc;
  background: #191919;
  border: 1px solid #4a2a80;
  border-radius: 10px;
  padding: 5px;
  transition: all 0.2s ease;
}
.streamer-item:hover {
  background: #2b1652;
}
.streamer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
  object-fit: cover;
}
.streamer-info {
  flex-grow: 1;
}
.streamer-name {
  display: block;
  font-weight: bold;
  color: #fff;
}
.streamer-title {
  font-size: 0.75em;
  color: #999;
}
.badge {
  font-size: 0.75em;
  border-radius: 5px;
  padding: 3px 6px;
}
.badge-live {
  background: #ff0040;
  color: #fff;
}
.badge-offline {
  background: #333;
  color: #aaa;
}

.btn-show-all {
  background: linear-gradient(90deg, #6a00ff, #ff00cc);
  border: none;
  color: #fff;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  margin-top: 10px;
  text-shadow: 0 0 6px #000;
}
.btn-show-all:hover {
  opacity: 0.8;
}

/* ===== SIDE SHEET ===== */
.side-sheet-overlay {
  position: fixed;
  inset: 0;
  background: #00000080;
  opacity: 0;
  transition: opacity 0.3s;
}
.side-sheet-overlay.open {
  opacity: 1;
}
.side-sheet {
  position: fixed;
  right: -400px;
  top: 0;
  width: 350px;
  height: 100%;
  background: #111;
  border-left: 2px solid #6a00ff;
  box-shadow: -5px 0 15px #6a00ff80;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
}
.side-sheet.open {
  right: 0;
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #333;
  color: #fff;
}
.sheet-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
}
.sheet-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}
.sheet-footer {
  padding: 10px;
  border-top: 1px solid #333;
  text-align: center;
}
.btn {
  background: #6a00ff;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* ======= STREAMER PAGE (V7 REWORK) ======= */
.streamer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.streamer-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--glow);
  transition: .25s;
}
.streamer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(199,112,255,.4);
}

.streamer-card a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.streamer-avatar-large {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--title2);
  object-fit: cover;
}

.streamer-info h3 {
  margin: 0;
  font-size: 15px;
  color: var(--title2);
  text-shadow: 0 0 6px var(--title2);
}
.streamer-info p {
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 5px;
}

.badge {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}
.badge-live {
  background: #3aff93;
  color: #000;
  box-shadow: 0 0 10px #3aff93aa;
}
.badge-offline {
  background: #b05cff;
  color: #fff;
  opacity: .7;
}

.admin-streamer-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.neon-btn {
  background: linear-gradient(90deg,#2b2233,#40264c);
  border: 1px solid var(--title2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(210,156,255,.3);
  transition: .25s;
}
.neon-btn:hover {
  box-shadow: 0 0 20px rgba(210,156,255,.6);
  transform: scale(1.05);
}

/* ==========================================================
   STREAMER PAGE – Full Grid (Anbindung an streamer.php)
   ========================================================== */

.streamer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.streamer-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--glow);
  transition: 0.25s;
}
.streamer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(199, 112, 255, 0.4);
}

.streamer-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.streamer-avatar-large {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--title2);
  object-fit: cover;
}

.streamer-info h3 {
  margin: 0;
  font-size: 15px;
  color: var(--title2);
  text-shadow: 0 0 6px var(--title2);
}
.streamer-info p {
  font-size: 12px;
  color: var(--muted);
  margin: 3px 0 5px;
}

.badge {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-live {
  background: #3aff93;
  color: #000;
  box-shadow: 0 0 10px #3aff93aa;
}
.badge-offline {
  background: #b05cff;
  color: #fff;
  opacity: 0.7;
}

.admin-streamer-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.neon-btn {
  background: linear-gradient(90deg, #2b2233, #40264c);
  border: 1px solid var(--title2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(210, 156, 255, 0.3);
  transition: 0.25s;
}
.neon-btn:hover {
  box-shadow: 0 0 20px rgba(210, 156, 255, 0.6);
  transform: scale(1.05);
}