/* ==========================================================================
   DIE FAULEN SÄCKE — v8 — Bold Neon-Noir Design
   ========================================================================== */

:root {
  --bg: #08080f;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --surface-glass: rgba(20, 20, 35, 0.6);
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.1);
  --text: #a0a0b8;
  --text-muted: #5c5c72;
  --text-bright: #ededf5;
  /* Neon-Akzente */
  --neon-blue: #4d7cff;
  --neon-purple: #a855f7;
  --neon-cyan: #22d3ee;
  --neon-pink: #f472b6;
  --gradient-accent: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  --gradient-glow: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-purple));
  --shadow: rgba(0, 0, 0, 0.4);
  --sidebar-w: 72px;
  --sidebar-w-open: 220px;
  --topbar-h: 56px;
  --r: 14px;
  --r-sm: 10px;
  --font-h: 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
  --font: -apple-system, 'Segoe UI', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   LIGHT MODE
   ========================================================================== */
[data-theme="light"] {
  --bg: #f0f0ed;
  --surface: rgba(255, 255, 255, 0.6);
  --surface-hover: rgba(255, 255, 255, 0.85);
  --surface-glass: rgba(255, 255, 255, 0.5);
  --border: rgba(0, 0, 0, 0.07);
  --border-hover: rgba(0, 0, 0, 0.14);
  --text: #3a3a4a;
  --text-muted: #6b6b80;
  --text-bright: #1a1a2a;
  --neon-blue: #3b5edd;
  --neon-purple: #8b3fd6;
  --neon-cyan: #0891b2;
  --neon-pink: #c026a3;
  --shadow: rgba(0, 0, 0, 0.08);
  --surface-active: rgba(59, 94, 221, 0.08);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.8;
  font-size: 1.35rem;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  height: 100vh; height: 100dvh;
  background: var(--bg);
  transition: background 0.5s, color 0.4s;
}

/* Animierter Hintergrund — Dark Mode */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(77, 124, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 25%, rgba(168, 85, 247, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 60% 70%, rgba(34, 211, 238, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(244, 114, 182, 0.04) 0%, transparent 70%);
  animation: meshDrift 20s ease-in-out infinite alternate;
  transition: background 0.5s;
}

/* Animierter Hintergrund — Light Mode (warme Pastellflecken) */
[data-theme="light"] body::before {
  background:
    radial-gradient(ellipse 55% 50% at 15% 15%, rgba(59, 94, 221, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 85% 20%, rgba(139, 63, 214, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 55% 65%, rgba(8, 145, 178, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 10% 80%, rgba(192, 38, 163, 0.04) 0%, transparent 60%);
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, 1%) scale(1.02); }
  100% { transform: translate(1%, -1%) scale(1); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--neon-cyan); }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gradient-accent); color: #fff;
  padding: 0.5rem 1rem; z-index: 300; border-radius: 0 0 8px 8px; font-weight: 700;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--neon-blue); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   SIDEBAR — Schmal mit Icons, expandiert bei Hover
   ========================================================================== */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 1.2rem 0 0.8rem;
  z-index: 100;
  transition: width 0.35s var(--ease-out);
  overflow: hidden;
}
.sidebar:hover { width: var(--sidebar-w-open); }

.sidebar-brand {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px; text-decoration: none;
  padding: 0.3rem 0 1.2rem;
  min-height: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.8rem;
}

.sidebar-menu { list-style: none; flex: 1; padding: 0 0.5rem; overflow-y: auto; }

.sidebar-link {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 0.85rem;
  color: var(--text-muted); font-size: 1.05rem; font-weight: 500;
  border-radius: var(--r-sm);
  margin-bottom: 0.15rem;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.sidebar-link svg { flex-shrink: 0; min-width: 20px; opacity: 0.5; transition: opacity 0.2s, color 0.2s; }
.sidebar-link span { opacity: 0; transition: opacity 0.25s 0.05s; }
.sidebar:hover .sidebar-link span { opacity: 1; }

.sidebar-link:hover { color: var(--text-bright); background: var(--surface-hover); }
.sidebar-link:hover svg { opacity: 1; }

.sidebar-link.active {
  color: var(--neon-blue);
  background: rgba(77, 124, 255, 0.08);
}
.sidebar-link.active svg { opacity: 1; color: var(--neon-blue); }

.sidebar-footer {
  padding: 0.6rem 0.5rem 0; border-top: 1px solid var(--border);
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap;
}
.sidebar-legal {
  font-size: 0.85rem; color: var(--text-muted); text-decoration: none;
  opacity: 0; transition: opacity 0.2s;
}
.sidebar:hover .sidebar-legal { opacity: 1; }
.sidebar-legal:hover { color: var(--text); }

/* ==========================================================================
   TOPBAR (Mobile)
   ========================================================================== */
.topbar {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-h); z-index: 101;
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  align-items: center; padding: 0 1rem; gap: 0.8rem;
}
.topbar-title {
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.topbar-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.topbar-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 1px; transition: 0.25s var(--ease);
}
.topbar-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topbar-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   HAUPTBEREICH
   ========================================================================== */
.main-area {
  margin-left: var(--sidebar-w);
  height: 100vh; height: 100dvh;
  overflow: hidden; position: relative;
  transition: margin-left 0.35s var(--ease-out);
}

.page {
  position: absolute; inset: 0; overflow-y: auto;
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.page--active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.page-inner { max-width: 960px; margin: 0 auto; padding: 2.5rem 2.5rem 4rem; }
.page-inner--narrow { max-width: 700px; }
.page-inner--wide { max-width: 1040px; }

.page-header { margin-bottom: 2rem; }
.page-label {
  display: inline-block; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 4px; font-weight: 700; margin-bottom: 0.3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-bright); line-height: 1.05;
}
.page-intro {
  color: var(--text-muted); font-size: 1.25rem; max-width: 650px; margin-bottom: 1.8rem;
}

/* ==========================================================================
   HOME — Cinematic Hero mit Intro-Animation
   ========================================================================== */
#page-home { display: flex; flex-direction: column; }

.home-hero {
  position: relative; min-height: 42vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; flex-shrink: 0;
}

/* Hintergrundbild — zoomt beim Laden rein */
.home-hero-bg { position: absolute; inset: 0; }
.home-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
  animation: bgReveal 2s var(--ease-out) both, slowDrift 30s 2s ease-in-out infinite alternate;
}
@keyframes bgReveal {
  from { transform: scale(1.15); opacity: 0; filter: saturate(0) brightness(0.3); }
  to { transform: scale(1); opacity: 1; filter: saturate(0.7) brightness(0.8); }
}
@keyframes slowDrift { from { transform: scale(1); } to { transform: scale(1.04); } }

/* Overlay — fadet ein */
.home-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(77, 124, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(8,8,15,0.5) 0%, rgba(8,8,15,0.15) 35%, rgba(8,8,15,0.5) 70%, var(--bg) 100%);
  z-index: 1;
  animation: overlayFade 1.5s 0.3s var(--ease-out) both;
}
@keyframes overlayFade { from { opacity: 0; } to { opacity: 1; } }

/* Hero-Text */
.home-hero-content {
  position: relative; z-index: 3; padding: 2rem;
}

/* Text-Animation nach Intro (CSS übernimmt wenn Canvas weg ist) */
.anim-hero {
  opacity: 0;
  animation: heroTextIn 0.6s var(--ease-out) both;
}
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.3s; }
.anim-d3 { animation-delay: 0.5s; }

@keyframes heroTextIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.home-tagline {
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 6px;
  color: var(--text-bright);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.home-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 4px; line-height: 0.9; color: #fff;
  margin: 0.4rem 0;
}
.home-slogan {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  background: var(--gradient-glow);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic; letter-spacing: 1px;
}

/* ==========================================================================
   FLIEGENDE INSTRUMENTE — choreographierte Intro-Animation
   Jedes Instrument fliegt aus einer anderen Richtung herein, dreht sich,
   und landet an seiner Endposition als Dekoration im Hero.
   ========================================================================== */
.flying-instruments {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}

.instrument {
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  will-change: transform, opacity;
}

/* Nach der Animation schweben die Instrumente leicht */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(var(--end-rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(calc(var(--end-rot, 0deg) + 2deg)); }
}

/* --- E-Gitarre: fliegt von weit links herein, dreht sich --- */
.inst-guitar {
  width: 100px; top: 15%; left: 8%;
  --end-rot: -15deg;
  animation: flyGuitar 1.4s 0.3s var(--ease-out) both, floatGentle 6s 2.5s ease-in-out infinite;
}
@keyframes flyGuitar {
  from { transform: translate(-300px, 100px) rotate(-90deg) scale(0.3); opacity: 0; }
  70% { opacity: 0.12; }
  to { transform: translate(0, 0) rotate(-15deg) scale(1); opacity: 1; }
}

/* --- Schlagzeug: fliegt von rechts, leicht von unten --- */
.inst-drums {
  width: 120px; top: 20%; right: 6%;
  --end-rot: 5deg;
  animation: flyDrums 1.5s 0.5s var(--ease-out) both, floatGentle 7s 2.8s ease-in-out infinite;
}
@keyframes flyDrums {
  from { transform: translate(350px, 80px) rotate(30deg) scale(0.3); opacity: 0; }
  70% { opacity: 0.1; }
  to { transform: translate(0, 0) rotate(5deg) scale(1); opacity: 1; }
}

/* --- Mikrofon: fällt von oben herunter --- */
.inst-mic {
  width: 50px; top: 5%; left: 50%; margin-left: -25px;
  --end-rot: 0deg;
  animation: flyMic 1.3s 0.7s var(--ease-spring) both, floatGentle 5s 2.6s ease-in-out infinite;
}
@keyframes flyMic {
  from { transform: translateY(-250px) rotate(180deg) scale(0.4); opacity: 0; }
  60% { opacity: 0.1; }
  to { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
}

/* --- Bass: fliegt von unten links --- */
.inst-bass {
  width: 85px; bottom: 8%; left: 12%;
  --end-rot: 20deg;
  animation: flyBass 1.5s 0.4s var(--ease-out) both, floatGentle 8s 2.7s ease-in-out infinite;
}
@keyframes flyBass {
  from { transform: translate(-200px, 300px) rotate(60deg) scale(0.3); opacity: 0; }
  70% { opacity: 0.08; }
  to { transform: translate(0, 0) rotate(20deg) scale(1); opacity: 1; }
}

/* --- Noten: fliegen einzeln aus verschiedenen Richtungen --- */
.inst-note1 {
  width: 30px; top: 30%; right: 20%;
  animation: flyNote1 1.2s 1.0s var(--ease-out) both, floatGentle 4s 3s ease-in-out infinite;
}
@keyframes flyNote1 {
  from { transform: translate(150px, -100px) rotate(45deg) scale(0); opacity: 0; }
  to { transform: translate(0, 0) rotate(10deg) scale(1); opacity: 1; }
}

.inst-note2 {
  width: 35px; bottom: 15%; right: 25%;
  animation: flyNote2 1.3s 1.2s var(--ease-out) both, floatGentle 5s 3.2s ease-in-out infinite;
}
@keyframes flyNote2 {
  from { transform: translate(200px, 150px) rotate(-30deg) scale(0); opacity: 0; }
  to { transform: translate(0, 0) rotate(5deg) scale(1); opacity: 1; }
}

.inst-note3 {
  width: 22px; top: 55%; left: 20%;
  animation: flyNote3 1.1s 1.1s var(--ease-out) both, floatGentle 6s 3.1s ease-in-out infinite;
}
@keyframes flyNote3 {
  from { transform: translate(-120px, 80px) rotate(60deg) scale(0); opacity: 0; }
  to { transform: translate(0, 0) rotate(-8deg) scale(1); opacity: 1; }
}

/* --- Nav-Karten: kaskadiert von unten hoch mit Bounce --- */
.anim-card {
  opacity: 0;
  animation: cardFlyIn 0.7s var(--ease-spring) both;
}
.anim-c1 { animation-delay: 0.6s; }
.anim-c2 { animation-delay: 0.7s; }
.anim-c3 { animation-delay: 0.8s; }
.anim-c4 { animation-delay: 0.9s; }
.anim-c5 { animation-delay: 1.0s; }
.anim-c6 { animation-delay: 1.1s; }
.anim-c7 { animation-delay: 1.2s; }

@keyframes cardFlyIn {
  from { opacity: 0; transform: translateY(60px) scale(0.85) rotate(-2deg); }
  70% { transform: translateY(-4px) scale(1.02) rotate(0.5deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* Reduced motion — alles sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  .anim-hero, .anim-card, .instrument, .home-hero-bg img, .home-hero-overlay {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* --- Nav-Karten mit Gradient-Border --- */
.home-nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem; padding: 1.2rem 2rem 2rem;
  flex: 1; align-content: start;
}

.nav-card {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 0.5rem; padding: 1.3rem;
  background: var(--surface-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  color: var(--text); font-family: inherit; font-size: inherit;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
/* Gradient-Glow am oberen Rand bei Hover */
.nav-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-glow);
  opacity: 0; transition: opacity 0.3s;
}
.nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 124, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(77, 124, 255, 0.04);
}
.nav-card:hover::before { opacity: 1; }
.nav-card:active { transform: translateY(-2px); }
.nav-card svg { color: var(--neon-blue); transition: color 0.3s; }
.nav-card:hover svg { color: var(--neon-cyan); }
.nav-card-title { font-weight: 700; font-size: 1.15rem; color: var(--text-bright); }
.nav-card-sub { font-size: 1.1rem; color: var(--text-muted); line-height: 1.3; }

/* ==========================================================================
   ÜBER UNS
   ========================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
}
.about-text p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.85; }
.about-text strong { color: var(--text); }
.about-image img { border-radius: var(--r); box-shadow: 0 8px 30px var(--shadow); }

/* ==========================================================================
   DIE ANFÄNGE
   ========================================================================== */
.anfaenge-gallery {
  display: flex; flex-direction: column; gap: 2rem;
}
.anfaenge-item {
  background: var(--surface-glass);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.anfaenge-item img {
  width: 100%; display: block;
}
.anfaenge-caption {
  padding: 1rem 1.2rem;
  color: var(--text-muted); font-size: 1rem;
  font-style: italic; text-align: center;
}

/* ==========================================================================
   DIE BAND
   ========================================================================== */
.band-photo-wrap { max-width: 600px; margin: 0 auto; }
.band-photo-frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  box-shadow: 0 16px 50px var(--shadow);
}
.band-photo-frame img { width: 100%; display: block; }

.band-label {
  position: absolute;
  background: rgba(8, 8, 15, 0.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm); padding: 0.4rem 0.8rem; text-align: center;
}
.band-label-name { display: block; font-weight: 700; font-size: 1.05rem; color: var(--text-bright); }
.band-label-role {
  display: block; font-size: 0.85rem; margin-top: 0.05rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.band-label--tobias { bottom: 10%; left: 3%; }
.band-label--stefan { bottom: 10%; left: 50%; transform: translateX(-50%); }
.band-label--manfred { bottom: 10%; right: 3%; }

.band-note {
  margin-top: 1.8rem; color: var(--text-muted);
  text-align: center; font-style: italic; font-size: 1.2rem;
}

/* ==========================================================================
   MUSIK — Große Song-Karten mit Neon-Akzent
   ========================================================================== */
.song-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem; margin-bottom: 5.5rem;
}

.song-card {
  position: relative;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--surface-glass);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer; font-family: inherit; color: var(--text);
  text-align: left; overflow: hidden;
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
/* Akzent-Leiste links */
.song-card::after {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--gradient-accent);
  opacity: 0; transition: opacity 0.2s;
}
.song-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-hover);
  transform: translateY(-2px) translateX(2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.song-card:hover::after { opacity: 0.5; }

.song-card.active {
  background: rgba(77, 124, 255, 0.06);
  border-color: rgba(77, 124, 255, 0.2);
}
.song-card.active::after { opacity: 1; }

.song-card-num {
  font-family: var(--font-h);
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 3rem; text-align: center; line-height: 1;
  transition: 0.2s;
}
.song-card.active .song-card-num {
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.song-card.active.playing .song-card-num { display: none; }

.song-card-body { flex: 1; min-width: 0; }
.song-card .track-title {
  display: block; font-weight: 600; font-size: 1.2rem; color: var(--text-bright);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.2s;
}
.song-card.active .track-title { color: var(--neon-blue); }
.song-card .track-duration {
  display: block; font-size: 1.1rem; color: var(--text-muted); margin-top: 0.1rem;
}

/* Equalizer */
.song-card .track-eq {
  display: none; align-items: flex-end; gap: 3px;
  width: 3rem; height: 2rem; justify-content: center;
}
.song-card .track-eq span {
  display: block; width: 4px; border-radius: 2px;
  background: var(--gradient-accent);
}
.song-card.active.playing .track-eq { display: flex; }
.song-card.active.playing .track-eq span:nth-child(1) { animation: eq 0.5s ease infinite alternate; height: 30%; }
.song-card.active.playing .track-eq span:nth-child(2) { animation: eq 0.4s ease 0.1s infinite alternate; height: 75%; }
.song-card.active.playing .track-eq span:nth-child(3) { animation: eq 0.6s ease 0.15s infinite alternate; height: 50%; }
@keyframes eq { 0% { height: 12%; } 100% { height: 100%; } }

/* --- Player-Bar --- */
.player-bar {
  position: sticky; bottom: 0; left: 0; right: 0;
  background: rgba(8, 8, 15, 0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 0.7rem 2rem;
  margin: 0 -2.5rem;
}
/* Gradient-Leiste ganz oben am Player */
.player-bar::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--gradient-glow);
  opacity: 0.4;
}

.player-bar-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
}

.player-bar .now-playing { flex: 0 0 auto; min-width: 120px; }
.player-bar .now-playing-label {
  font-size: 1rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block; max-width: 180px;
}

.player-bar-controls { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.player-bar-progress { display: flex; align-items: center; gap: 0.5rem; flex: 1; min-width: 0; }

.btn-player {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; padding: 0.35rem; border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.btn-player:hover { background: var(--surface-hover); color: var(--text-bright); }

.btn-play {
  width: 40px; height: 40px;
  background: var(--gradient-accent) !important; color: #fff !important;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.btn-play:hover { transform: scale(1.08); box-shadow: 0 0 20px rgba(77, 124, 255, 0.2); }

.time-current, .time-total {
  font-size: 0.88rem; color: var(--text-muted);
  font-variant-numeric: tabular-nums; min-width: 2rem;
}
.time-total { text-align: right; }

.progress-container { flex: 1; cursor: pointer; padding: 0.35rem 0; }
.progress-bar {
  position: relative; width: 100%; height: 3px;
  background: rgba(255,255,255,0.05); border-radius: 2px;
}
.progress-fill {
  height: 100%; width: 0%; border-radius: 2px;
  background: var(--gradient-accent); transition: width 0.1s linear;
}
.progress-thumb {
  position: absolute; top: 50%; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--neon-blue);
  transform: translate(-50%, -50%) scale(0); transition: transform 0.15s;
  box-shadow: 0 0 8px rgba(77, 124, 255, 0.4);
}
.progress-container:hover .progress-thumb { transform: translate(-50%, -50%) scale(1); }

.volume-control { display: flex; align-items: center; gap: 0.3rem; flex-shrink: 0; }
.btn-volume {
  display: flex; background: none; border: none;
  color: var(--text-muted); cursor: pointer; padding: 0.2rem; transition: color 0.15s;
}
.btn-volume:hover { color: var(--text); }
.volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 70px; height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; outline: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 10px; height: 10px;
  background: var(--neon-blue); border-radius: 50%; cursor: pointer;
}
.volume-slider::-moz-range-thumb {
  width: 10px; height: 10px; background: var(--neon-blue); border-radius: 50%; border: none; cursor: pointer;
}

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.gallery-item {
  position: relative; border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; display: block; background: var(--bg);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s var(--ease-out), filter 0.3s;
  filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item::after {
  content: attr(data-caption);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.7rem; background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; font-size: 1.1rem; font-weight: 500;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: var(--r-sm);
  animation: lbIn 0.2s var(--ease-out);
}
@keyframes lbIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 1rem; text-align: center;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1.6rem; cursor: pointer; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: color 0.15s, background 0.15s;
}
.lightbox-close:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Lightbox Navigation-Pfeile */
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.06); border: none;
  color: rgba(255,255,255,0.5); cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color 0.15s, background 0.15s;
  z-index: 2;
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  color: #fff; background: rgba(255,255,255,0.12);
}

.lightbox-media {
  display: flex; align-items: center; justify-content: center;
  max-width: 90vw; max-height: 85vh;
}
.lightbox-media img, .lightbox-media video {
  max-width: 90vw; max-height: 85vh; border-radius: var(--r-sm);
  animation: lbIn 0.2s var(--ease-out);
}
.lightbox-media video {
  background: #000;
}
/* Altes img direkt in lightbox ausblenden — wir nutzen jetzt lightbox-media */
.lightbox > img { display: none; }

.lightbox-counter {
  position: absolute; top: 1.2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

/* Video-Play-Overlay in Galerie */
.gallery-item--video {
  position: relative;
}
.gallery-item--video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--r-sm);
}
.gallery-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.gallery-item--video:hover .gallery-play-icon {
  background: rgba(0,0,0,0.15);
}

/* Großes Video unter dem Grid */
.gallery-video-full {
  display: block;
  position: relative;
  margin-top: 0.7rem;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.gallery-video-full video {
  width: 100%;
  display: block;
  border-radius: var(--r-sm);
}

/* Light mode Lightbox-Pfeile */
[data-theme="light"] .lightbox-prev,
[data-theme="light"] .lightbox-next {
  background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.4);
}
[data-theme="light"] .lightbox-prev:hover,
[data-theme="light"] .lightbox-next:hover {
  color: #000; background: rgba(0,0,0,0.1);
}
[data-theme="light"] .lightbox-counter { color: rgba(0,0,0,0.35); }

/* ==========================================================================
   COVERS
   ========================================================================== */
.cover-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.4rem; list-style: none;
}
.cover-grid li {
  padding: 0.6rem 0.9rem; background: var(--surface);
  border-radius: var(--r-sm); border: 1px solid var(--border);
  font-weight: 500; font-size: 1.1rem;
  transition: all 0.2s; cursor: default;
}
.cover-grid li:hover {
  background: var(--surface-hover); border-color: rgba(77, 124, 255, 0.15);
  transform: translateY(-1px);
}

/* ==========================================================================
   LIVE
   ========================================================================== */
.upcoming {
  background: var(--surface-glass);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem; margin-bottom: 2rem; text-align: center;
}
.upcoming-title {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.upcoming-empty { color: var(--text-muted); font-style: italic; font-size: 1.1rem; }

.gigs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.gigs-image img { border-radius: var(--r); box-shadow: 0 8px 30px var(--shadow); }

.gigs-info h3 {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gigs-list { list-style: none; margin-bottom: 1.8rem; }
.gigs-list li {
  padding: 0.35rem 0 0.35rem 1.2rem; position: relative;
  color: var(--text-muted); font-size: 1.1rem; transition: color 0.15s;
}
.gigs-list li:hover { color: var(--text); }
.gigs-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--neon-blue);
}

.gigs-cta {
  background: var(--surface); padding: 1.2rem; border-radius: var(--r);
  border: 1px solid var(--border);
}
.gigs-cta p { color: var(--text-muted); margin-bottom: 0.8rem; font-size: 1.1rem; }

.btn {
  display: inline-block; padding: 0.65rem 1.5rem; font-size: 1.05rem; font-weight: 600;
  border-radius: var(--r-sm); border: none; cursor: pointer; text-decoration: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
}
.btn--accent {
  background: var(--gradient-accent); color: #fff; font-family: inherit;
}
.btn--accent:hover {
  color: #fff; transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(77, 124, 255, 0.25);
}

/* ==========================================================================
   PRESSE
   ========================================================================== */
.press-article {
  background: var(--surface-glass);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 1.5rem;
}
.press-image img { width: 100%; display: block; transition: filter 0.2s; }

/* Klickbares Pressebild */
.press-zoomable {
  position: relative; cursor: pointer;
}
.press-zoomable:hover img { filter: brightness(1.05); }

.press-zoom-hint {
  position: absolute; bottom: 0.8rem; right: 0.8rem;
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.press-zoomable:hover .press-zoom-hint { opacity: 1; }

[data-theme="light"] .press-zoom-hint {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   PRESSE-ZOOM-VIEWER — Vollbild mit Pan & Zoom
   ========================================================================== */
.press-viewer {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(0, 0, 0, 0.95);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.press-viewer.active { opacity: 1; visibility: visible; }

[data-theme="light"] .press-viewer {
  background: rgba(240, 240, 237, 0.97);
}

/* Toolbar oben */
.press-viewer-toolbar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

[data-theme="light"] .press-viewer-toolbar {
  background: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.press-viewer-btn {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer; border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem; font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.press-viewer-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

[data-theme="light"] .press-viewer-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
[data-theme="light"] .press-viewer-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
}

.press-viewer-close {
  margin-left: auto;
  font-size: 1.4rem;
  padding: 0.2rem 0.6rem;
}

.press-viewer-zoom-level {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  min-width: 3.5rem; text-align: center;
}
[data-theme="light"] .press-viewer-zoom-level {
  color: rgba(0, 0, 0, 0.4);
}

/* Canvas — scrollbar, enthält das gezoomte Bild */
.press-viewer-canvas {
  flex: 1; overflow: auto;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  cursor: grab;
}
.press-viewer-canvas:active { cursor: grabbing; }

.press-viewer-canvas img {
  max-width: none; max-height: none;
  transition: transform 0.15s ease;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}
.press-info { padding: 1.5rem; }
.press-source {
  display: inline-block; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 2px; font-weight: 700; margin-bottom: 0.3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.press-info h3 {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: var(--text-bright); margin-bottom: 0.5rem; line-height: 1.3;
}
.press-info p { color: var(--text-muted); line-height: 1.75; font-size: 1.2rem; }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
.contact-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.5rem; padding: 1.5rem 1rem;
  background: var(--surface-glass);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r); border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.2s;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-glow); opacity: 0; transition: opacity 0.2s;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: rgba(77, 124, 255, 0.12);
}
.contact-card:hover::before { opacity: 1; }

.contact-card svg { color: var(--neon-blue); transition: transform 0.2s; }
.contact-card:hover svg { transform: scale(1.08); }
.contact-card-label {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); font-weight: 600;
}
.contact-card-value { color: var(--text); font-weight: 500; font-size: 1.1rem; word-break: break-all; }

/* ==========================================================================
   THEME TOGGLE — Cooler Schiebeschalter
   ========================================================================== */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 0.6rem 0.8rem;
  margin: 0 auto 0.5rem;
}

.theme-toggle-track {
  position: relative;
  width: 52px; height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5px;
  transition: background 0.4s, border-color 0.4s;
}

/* Sonne (links) und Mond (rechts) */
.theme-icon-sun { color: var(--text-muted); transition: color 0.3s; z-index: 1; }
.theme-icon-moon { color: var(--text-muted); transition: color 0.3s; z-index: 1; }

/* Schiebe-Daumen */
.theme-toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  box-shadow: 0 0 10px rgba(77, 124, 255, 0.3);
  transition: left 0.4s var(--ease-spring), background 0.4s, box-shadow 0.4s;
}

/* Im Light-Mode: Daumen nach rechts, Sonne leuchtet */
[data-theme="light"] .theme-toggle-track {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}
[data-theme="light"] .theme-toggle-thumb {
  left: 27px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}
[data-theme="light"] .theme-icon-sun { color: #f59e0b; }
[data-theme="light"] .theme-icon-moon { color: var(--text-muted); }
.theme-icon-moon { color: var(--neon-blue); }

/* Mobile Toggle */
.theme-toggle--mobile {
  margin: 0 0 0 auto;
  padding: 0.3rem;
}

/* ==========================================================================
   LIGHT MODE — Komponent-Overrides
   Hartcodierte Dark-Farben müssen im Light-Mode überschrieben werden.
   ========================================================================== */
[data-theme="light"] .sidebar {
  background: rgba(240, 240, 237, 0.88);
}
[data-theme="light"] .sidebar-brand {
  /* Gradient bleibt, aber kräftiger */
  background: linear-gradient(135deg, #3b5edd, #8b3fd6);
  -webkit-background-clip: text; background-clip: text;
}
[data-theme="light"] .topbar {
  background: rgba(240, 240, 237, 0.92);
}
[data-theme="light"] .home-hero-overlay {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(59, 94, 221, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 63, 214, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.35) 70%, #f0f0ed 100%);
}
[data-theme="light"] .band-label {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .nav-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}
[data-theme="light"] .song-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}
[data-theme="light"] .player-bar {
  background: rgba(240, 240, 237, 0.9);
}
[data-theme="light"] .player-bar::before {
  opacity: 0.6;
}
[data-theme="light"] .audio-player {
  background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .press-article,
[data-theme="light"] .upcoming,
[data-theme="light"] .gigs-cta {
  background: rgba(255, 255, 255, 0.5);
}
[data-theme="light"] .contact-card {
  background: rgba(255, 255, 255, 0.55);
}
[data-theme="light"] .progress-bar {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .volume-slider {
  background: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .lightbox {
  background: rgba(255, 255, 255, 0.92);
}
[data-theme="light"] .lightbox img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .lightbox-close {
  color: rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .lightbox-close:hover {
  color: #000; background: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .lightbox-caption {
  color: rgba(0, 0, 0, 0.5);
}

/* --- Song-Nummern sichtbar machen --- */
[data-theme="light"] .song-card-num {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .song-card.active .song-card-num {
  background: linear-gradient(135deg, #3b5edd, #8b3fd6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Kontrast-Verbesserungen Light Mode --- */

/* Texte kräftiger */
[data-theme="light"] .about-text p,
[data-theme="light"] .gigs-cta p,
[data-theme="light"] .press-info p,
[data-theme="light"] .page-intro,
[data-theme="light"] .upcoming-empty,
[data-theme="light"] .band-note {
  color: #4a4a5c;
}

[data-theme="light"] .about-text strong {
  color: #1a1a2a;
}

/* Sidebar-Links besser lesbar */
[data-theme="light"] .sidebar-link {
  color: #5a5a70;
}
[data-theme="light"] .sidebar-link:hover {
  color: #1a1a2a;
  background: rgba(0, 0, 0, 0.05);
}
[data-theme="light"] .sidebar-link svg {
  opacity: 0.6;
}
[data-theme="light"] .sidebar-link.active {
  color: #3b5edd;
  background: rgba(59, 94, 221, 0.08);
}

/* Song-Card Texte */
[data-theme="light"] .song-card .track-title {
  color: #1a1a2a;
}
[data-theme="light"] .song-card.active .track-title {
  color: #3b5edd;
}
[data-theme="light"] .song-card .track-duration {
  color: #6b6b80;
}

/* Player-Bar Text */
[data-theme="light"] .now-playing-label {
  color: #4a4a5c;
}
[data-theme="light"] .time-current,
[data-theme="light"] .time-total {
  color: #6b6b80;
}
[data-theme="light"] .btn-player {
  color: #4a4a5c;
}
[data-theme="light"] .btn-player:hover {
  color: #1a1a2a;
  background: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .btn-volume {
  color: #6b6b80;
}

/* Cover-Grid besser lesbar */
[data-theme="light"] .cover-grid li {
  color: #2a2a3a;
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .cover-grid li:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(59, 94, 221, 0.2);
}

/* Spielorte */
[data-theme="light"] .gigs-list li {
  color: #4a4a5c;
}
[data-theme="light"] .gigs-list li:hover {
  color: #1a1a2a;
}
[data-theme="light"] .gigs-list li::before {
  background: #3b5edd;
}

/* Kontakt-Labels */
[data-theme="light"] .contact-card-label {
  color: #6b6b80;
}
[data-theme="light"] .contact-card-value {
  color: #2a2a3a;
}

/* Band-Labels auf Foto */
[data-theme="light"] .band-label-name {
  color: #1a1a2a;
}

/* Galerie-Captions */
[data-theme="light"] .gallery-item::after {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

/* Nav-Card Texte */
[data-theme="light"] .nav-card-title {
  color: #1a1a2a;
}
[data-theme="light"] .nav-card-sub {
  color: #5a5a70;
}
[data-theme="light"] .nav-card:hover {
  border-color: rgba(59, 94, 221, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Presse */
[data-theme="light"] .press-info h3 {
  color: #1a1a2a;
}

/* Footer */
[data-theme="light"] .sidebar-legal {
  color: #6b6b80;
}
[data-theme="light"] .sidebar-legal:hover {
  color: #2a2a3a;
}

/* ==========================================================================
   INTRO — Cinematic Neon-Visualizer
   ========================================================================== */

/* Overlay — fullscreen, über allem */
.intro-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: radial-gradient(ellipse at center, #050510 40%, #000 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.intro-overlay--exit {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* Subtile Scanlines (CRT-Retro-Effekt) */
.intro-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none; z-index: 1;
}

/* Canvas (Visualizer + Partikel) */
#intro-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#intro-canvas.intro-canvas--active { opacity: 1; }

/* --- Gate: Klick zum Starten --- */
.intro-gate {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  transition: opacity 0.5s, transform 0.5s;
}
.intro-gate--hidden {
  opacity: 0; transform: scale(1.5); pointer-events: none;
}

/* Pulsierende Neon-Ringe (groß und prominent) */
.intro-ring {
  position: absolute; top: 50%; left: 50%;
  width: 220px; height: 220px; margin: -110px 0 0 -110px;
  border: 2px solid #4d7cff; border-radius: 50%;
  animation: introPulseRing 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(77, 124, 255, 0.3), inset 0 0 30px rgba(77, 124, 255, 0.1);
}
.intro-ring--2 {
  width: 280px; height: 280px; margin: -140px 0 0 -140px;
  border-color: #a855f7; animation-delay: 0.6s;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.2), inset 0 0 25px rgba(168, 85, 247, 0.05);
}
.intro-ring--3 {
  width: 340px; height: 340px; margin: -170px 0 0 -170px;
  border-color: #22d3ee; border-width: 1px; animation-delay: 1.2s;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}
@keyframes introPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* "Klicken zum Starten" — zentriert in den Ringen */
.intro-start-text {
  position: relative; z-index: 1;
  color: #8888a4; font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  text-transform: uppercase; letter-spacing: 6px;
  font-weight: 600;
  animation: introFadePulse 2.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(77, 124, 255, 0.3);
}
@keyframes introFadePulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* --- Reveal: Text + Enter-Button --- */
.intro-reveal {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity 0.6s ease;
}
.intro-reveal--show { opacity: 1; pointer-events: auto; }

/* Tagline */
.intro-tagline {
  font-size: clamp(0.85rem, 2vw, 1.3rem);
  text-transform: uppercase; letter-spacing: 8px;
  color: #5c7caa;
  transform: translateY(20px); opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-tagline.intro-text--show {
  transform: translateY(0); opacity: 1;
}

/* Titel — zwei Zeilen */
.intro-title {
  text-align: center; line-height: 1.05; margin: 0.2em 0;
}
.intro-title-line {
  display: block;
  font-family: 'Trebuchet MS', system-ui, sans-serif;
  font-size: clamp(3.5rem, 13vw, 10rem);
  font-weight: 900; color: #fff;
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Einflug-Richtungen */
.intro-title-line[data-dir="left"]  { transform: translateX(-100vw) rotate(-4deg); }
.intro-title-line[data-dir="right"] { transform: translateX(100vw) rotate(4deg); }
.intro-title-line.intro-text--show {
  transform: translateX(0) rotate(0); opacity: 1;
  text-shadow:
    0 0 20px rgba(77, 124, 255, 0.35),
    0 0 60px rgba(77, 124, 255, 0.12),
    0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slogan */
.intro-slogan {
  font-size: clamp(0.85rem, 1.8vw, 1.25rem);
  color: #6e6e85; font-style: italic; letter-spacing: 3px;
  opacity: 0; transform: translateY(20px);
  transition: all 1s ease;
}
.intro-slogan.intro-text--show { opacity: 1; transform: translateY(0); }

/* Enter-Button */
.intro-enter {
  margin-top: 3rem;
  padding: 1rem 3rem;
  background: transparent;
  border: 2px solid #4d7cff;
  color: #fff; font-size: 1.1rem;
  letter-spacing: 4px; text-transform: uppercase;
  cursor: pointer; border-radius: 50px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s ease;
  pointer-events: none;
}
.intro-enter--show {
  opacity: 1; transform: translateY(0); pointer-events: auto;
  animation: introEnterGlow 2s ease-in-out infinite;
}
.intro-enter:hover {
  background: rgba(77, 124, 255, 0.15);
  box-shadow: 0 0 30px rgba(77, 124, 255, 0.3);
  transform: translateY(-2px);
}
@keyframes introEnterGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(77, 124, 255, 0.2); }
  50%      { box-shadow: 0 0 25px rgba(77, 124, 255, 0.4), 0 0 50px rgba(77, 124, 255, 0.1); }
}

/* Skip-Button */
.intro-skip {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 3;
  background: none; border: 1px solid rgba(255, 255, 255, 0.12);
  color: #5c5c72; font-size: 0.8rem;
  padding: 0.4rem 0.8rem; border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.intro-skip:hover { color: #a0a0b8; border-color: rgba(255, 255, 255, 0.25); }
.intro-skip kbd {
  background: rgba(255, 255, 255, 0.07);
  padding: 0.12rem 0.35rem; border-radius: 3px;
  font-family: inherit; font-size: 0.7rem;
}

/* CRT Power-On Flicker */
.intro-flicker { animation: introFlicker 0.6s linear; }
@keyframes introFlicker {
  0%   { filter: brightness(1); }
  5%   { filter: brightness(0); }
  10%  { filter: brightness(3); }
  15%  { filter: brightness(0.3); }
  20%  { filter: brightness(2); }
  30%  { filter: brightness(0.7); }
  40%  { filter: brightness(1.5); }
  50%  { filter: brightness(1); }
  100% { filter: brightness(1); }
}

/* Barrierefreiheit: Animationen reduzieren */
@media (prefers-reduced-motion: reduce) {
  .intro-ring, .intro-play-icon, .intro-start-text, .intro-enter--show {
    animation: none !important;
  }
  .intro-title-line, .intro-tagline, .intro-slogan, .intro-enter {
    transition-duration: 0.01s !important;
  }
  .intro-title-line[data-dir="left"],
  .intro-title-line[data-dir="right"] { transform: none; }
  .intro-flicker { animation: none !important; }
}

/* Intro auf Mobilgeräten */
@media (max-width: 600px) {
  .intro-ring { width: 150px; height: 150px; margin: -75px 0 0 -75px; }
  .intro-ring--2 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .intro-ring--3 { width: 250px; height: 250px; margin: -125px 0 0 -125px; }
  .intro-start-text { font-size: 0.8rem; letter-spacing: 4px; }
  .intro-enter { padding: 0.8rem 2rem; font-size: 0.95rem; }
  .intro-skip { bottom: 1rem; right: 1rem; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); width: var(--sidebar-w-open); }
  .sidebar.open { transform: translateX(0); }
  .sidebar .sidebar-link span { opacity: 1; }
  .sidebar .sidebar-legal { opacity: 1; }

  /* Instrumente kleiner auf Mobile */
  .inst-guitar { width: 60px; }
  .inst-drums { width: 75px; }
  .inst-mic { width: 35px; }
  .inst-bass { width: 55px; }
  .inst-note1, .inst-note2, .inst-note3 { display: none; }
  .topbar { display: flex; }
  .main-area { margin-left: 0; padding-top: var(--topbar-h); height: calc(100dvh - var(--topbar-h)); }

  .home-nav { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .gigs-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .contact-cards { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .song-grid { grid-template-columns: 1fr; }

  .player-bar { margin: 0 -2.5rem; }
  .player-bar-inner { flex-wrap: wrap; gap: 0.5rem; }
  .player-bar .now-playing { flex-basis: 100%; }
  .player-bar .now-playing-label { max-width: 100%; text-align: center; }
  .player-bar-progress { flex-basis: 100%; order: 10; }
  .volume-control { display: none; }
}

@media (max-width: 480px) {
  .home-nav { grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.8rem 1rem; }
  .nav-card { padding: 1rem 0.8rem; }
  .nav-card-sub { display: none; }
  .page-inner { padding: 1.8rem 1rem 3rem; }
  .cover-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .player-bar { margin: 0 -1rem; padding: 0.6rem 0.8rem; }
  .band-label { padding: 0.25rem 0.5rem; }
  .band-label-name { font-size: 0.68rem; }
  .band-label-role { font-size: 0.55rem; }
}
