:root {
  --bg-1: #140b2e;
  --bg-2: #0a1730;
  --panel: #1b1440;
  --panel-2: #17132f;
  --border: rgba(150, 130, 240, 0.18);
  --text: #ece9f9;
  --muted: #a79fcf;
  --accent: #8b6cf5;
  --accent2: #4f8cff;
  --void: #c04dff;
  --void-2: #ff4fd0;
  --win: #34d399;
  --loss: #f76c8a;
  --gold: #d4af6a;
}
* { box-sizing: border-box; }
html { background: var(--bg-1); }
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 100%) fixed;
  color: var(--text);
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  position: relative;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 16px 56px; position: relative; z-index: 1; }

/* Void-Glow: ambiente, unscharfe Farbflecken im Hintergrund - referenziert die violett/
   magenta/blaue Void-Palette (Vel'Koz, Kai'Sa, Kha'Zix, ...), damit die Seite nicht mehr
   so steril wirkt. Fixed + niedrige Opacity, damit es nie vom Inhalt ablenkt. */
.void-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.void-glow-1 { top: -180px; left: -160px; width: 480px; height: 480px; background: var(--void); opacity: 0.20; }
.void-glow-2 { top: 30%; right: -220px; width: 520px; height: 520px; background: var(--accent2); opacity: 0.16; }
.void-glow-3 { bottom: -220px; left: 20%; width: 460px; height: 460px; background: var(--void-2); opacity: 0.13; }

/* Site-Header: auf jeder Seite gleich, immer klar erkennbar wo man ist */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 16px 10px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.site-header .mark {
  width: 30px; height: auto;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 6px rgba(192, 77, 255, 0.65));
}
@keyframes mark-spin { to { transform: rotate(360deg); } }

/* Void-Orb: Malzahars Hand (aus seinem Standard-Splash-Art freigestellt), die über einer
   lila Void-Kugel liegt - als großes Logo im Hero, mit einem weichen rotierenden
   Schweif-Glow im Hintergrund. */
.void-orb {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.void-orb::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--void), var(--void-2), var(--accent2), var(--void));
  filter: blur(28px);
  opacity: 0.45;
  animation: mark-spin 10s linear infinite;
  z-index: 0;
}
.void-orb img {
  position: relative;
  z-index: 1;
  width: 100%; height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(192, 77, 255, 0.5));
}
.site-header .wordmark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, var(--text) 30%, var(--void) 140%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Kleine Ring-Bullet vor Section-Überschriften statt reinem Fließtext */
h2.section-title { display: flex; align-items: center; gap: 10px; }
h2.section-title::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: conic-gradient(var(--void), var(--accent2));
  flex-shrink: 0;
}

/* Panel + Back-Link - von mehreren Seiten geteilt (Match-Detail, Champion-Datenbank) */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(10, 6, 30, 0.35);
}
.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.back-link:hover { color: var(--text); }
