/* ═══════════════════════════════════════════════════
   SCARALA.DE — Gemeinsames Stylesheet
   Gilt für: index.html, impressum.html, datenschutz.html
   ═══════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────── */
@font-face { font-family: 'Compacta BT'; src: url('fonts/CompactaBT.woff2') format('woff2'), url('fonts/CompactaBT.ttf') format('truetype'); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bebas Neue'; src: url('fonts/BebasNeue-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/JetBrainsMono-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('fonts/JetBrainsMono-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }

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

:root {
  --bg: #080C14;
  --bg2: #0D1220;
  --bg3: #111827;
  --cyan: #00D4FF;
  --magenta: #FF2D78;
  --text: #B8CDE6;
  --muted: #6B7A99;
  --subtle: #1A2235;
  --card: #0F1623;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Logo ──────────────────────────────────────────── */
.scarala-logo {
  font-family: 'Compacta BT', 'Bebas Neue', sans-serif;
  display: inline-block;
  transform-origin: left center;
  letter-spacing: 0.02em;
}
.logo-s { color: #800000; }
.logo-r { color: var(--cyan); }
.logo-carala { color: #B8CDE6; }

/* ── Navigation ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  overflow: visible;
  display: block;
}
.nav-logo span { color: inherit; }
.nav-logo .logo-s { color: #800000; }
.nav-logo .logo-carala { color: #B8CDE6; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-back {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--cyan); }

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--magenta);
  text-decoration: none;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--magenta);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  display:none;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Mobile Nav ────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 98;
  background: rgba(8,12,20,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--cyan); }

/* ── Live Banner ───────────────────────────────────── */
#live-banner {
  display: none;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.35);
  color: var(--magenta);
  padding: 0.6rem 2rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 99;
}
#live-banner .live-dot { display: inline-block; margin-right: 0.5rem; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.eq-canvas {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  opacity: 0.18;
  padding: 0 2rem;
}
.eq-bar {
  flex: 1;
  max-width: 18px;
  background: linear-gradient(to top, var(--cyan), var(--magenta));
  border-radius: 3px 3px 0 0;
  animation: eq var(--dur, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
}
@keyframes eq {
  from { height: var(--min-h, 8px); }
  to   { height: var(--max-h, 80px); }
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Compacta BT', 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: normal;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.hero-title .scarala-logo {
  display: inline-block;
  transform: scaleX(1.5);
  transform-origin: center center;
}
.hero-title .accent { color: var(--cyan); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.genre-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 2rem;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
  transition: all 0.2s;
}
.genre-tag:hover { background: rgba(0, 212, 255, 0.12); border-color: var(--cyan); }
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: #050810;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: #33DDFF; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-1px); }
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero.live-mode { min-height: 40vh; padding-top: 2rem; padding-bottom: 2rem; }
.hero.live-mode .eq-canvas { height: 100px; }
.hero.live-mode .scroll-hint { display: none; }

/* ── Sections (shared) ─────────────────────────────── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.2), transparent);
}

/* ── Channel Cards ─────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.channel-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent, var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.channel-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.channel-card:hover::before { transform: scaleX(1); }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.channel-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.channel-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; flex: 1; }
.channel-arrow {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.channel-card:hover .channel-arrow { color: var(--cyan); transform: translateX(4px); }

/* ── About ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  background: var(--subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(0, 212, 255, 0.15);
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.05);

  position: relative;
  overflow: hidden;
}
.about-visual-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.about-visual-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: rgba(0, 212, 255, 0.07);
  line-height: 1;
  margin:0px;
  padding-top:32px;
  position: absolute;
}
.about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.about-text p strong { color: var(--text); font-weight: 500; }
.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  line-height: 1;
  text-align:center;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  text-align:center;
}

/* ── Sets ──────────────────────────────────────────── */
.sets-section { background: var(--bg2); }
.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.set-card { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; }
.set-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.set-title { font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem; }
.set-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.set-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
  white-space: nowrap;
}
.set-waveform {
  height: 60px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.wf-bar {
  flex: 1;
  background: rgba(0, 212, 255, 0.25);
  border-radius: 1px;
  height: var(--h, 20px);
  transition: background 0.15s;
}
.set-waveform:hover .wf-bar { background: rgba(0, 212, 255, 0.45); }
.set-footer {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.set-duration { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--muted); }
.set-play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
}
.set-play-btn svg { width: 16px; height: 16px; }
.set-play-btn:hover { background: rgba(0, 212, 255, 0.3); }
.hearthis-cta {
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(0, 212, 255, 0.2);
  border-radius: 6px;
}
.hearthis-cta p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

/* ── Tech Setup ────────────────────────────────────── */
.tech-section { background: var(--bg); }
.tech-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.tech-category { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 6px; overflow: hidden; }
.tech-category-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tech-category-icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.tech-category-name { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text); }
.tech-items { padding: 0.5rem 0; }
.tech-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.tech-item:last-child { border-bottom: none; }
.tech-item:hover { background: rgba(255,255,255,0.03); }
.tech-item-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dot-color, var(--cyan)); flex-shrink: 0; }
.tech-item-name { font-size: 0.9rem; color: var(--text); }
.tech-item-detail { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.05em; text-align: right; }

/* ── Slider dots ───────────────────────────────────── */
.slide { position: relative; overflow: hidden; }
.slide-label {
  position: absolute;
  bottom: 2.8rem; /* über den Dots */
  left: 1rem;
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(184, 205, 230, 0.9);
  max-width: calc(100% - 8rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.sdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); border: none; cursor: pointer;
  padding: 0; transition: all 0.25s;
}
.sdot.active { background: var(--cyan); width: 22px; border-radius: 4px; }

/* ── CTA / Community ───────────────────────────────── */
.cta-section {
  background: var(--bg2);
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'SCARALA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22vw;
  color: rgba(0, 212, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(2.5rem, 6vw, 5rem); }
.cta-section .section-desc { margin: 0 auto 3rem; }
.social-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.social-link:hover { color: var(--text); border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

/* ── Footer ────────────────────────────────────────── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.12em; color: var(--muted); overflow: visible; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: rgba(107,122,153,0.5); letter-spacing: 0.05em; }

/* ── Legal pages ───────────────────────────────────── */
.page-wrap { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.page-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--text);
}
.legal-block {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}
.legal-block h2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-block p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.7; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block strong { color: var(--text); font-weight: 500; }
.legal-block a { color: var(--cyan); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
.legal-block ul { list-style: none; margin: 0.5rem 0 0.75rem; }
.legal-block ul li { color: var(--muted); font-size: 0.95rem; padding: 0.3rem 0 0.3rem 1.2rem; position: relative; }
.legal-block ul li::before { content: '–'; position: absolute; left: 0; color: var(--cyan); }
.highlight-box {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.highlight-box p { color: var(--text); font-size: 0.9rem; margin: 0; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* Rechte Nav-Seite kompakt: Switcher + Dot + Burger passen nebeneinander */
  nav > div:last-child { gap: 0.4rem; }
  .lang-switcher { padding: 2px; }
  .lang-btn { padding: 0.2rem 0.4rem; font-size: 0.6rem; }
  .live-badge { padding: 0.3rem 0.5rem; gap: 0; }
  .live-badge span:last-child { display: none; }

  /* Hero */
  .hero { padding: 5rem 1.25rem 4rem; min-height: 90vh; }
  .hero-title { font-size: clamp(4rem, 20vw, 7rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-tags { gap: 0.5rem; }
  .genre-tag { font-size: 0.65rem; padding: 0.35rem 0.75rem; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Sections */
  section { padding: 3.5rem 1.25rem; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-desc { font-size: 0.95rem; margin-bottom: 2rem; }
  .channels-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* About: Bild zeigen statt verstecken */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual {
    display: flex;
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
  }
  .about-visual-big {
    position: static;
    width: 100%;
    height: 100%;
    font-size: 0;
  }
  .about-visual-big img { width: 100%; height: 100%; object-fit: cover; }
  .about-visual-label { display: none; }

  /* Stats */
  .stat-row { gap: 1rem; flex-wrap: wrap; }
  .stat-number { font-size: 1.8rem; }

  /* Sets */
  .sets-grid { grid-template-columns: 1fr; }

  /* Setup intro 2-col → 1-col via Klasse */
  .setup-intro-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Tech */
  .tech-categories { grid-template-columns: 1fr; }
  #setup-slider { margin-bottom: 2rem; }

  /* CTA */
  .cta-section { padding: 5rem 1.25rem; }
  .cta-section::before { font-size: 35vw; }
  .social-links-grid { gap: 0.75rem; }
  .social-link { padding: 0.6rem 1rem; font-size: 0.8rem; }

  /* Footer */
  footer { padding: 1.5rem; flex-direction: column; text-align: center; align-items: center; }
  .footer-links { justify-content: center; gap: 1.25rem; }

  /* Misc */
  #live-banner { padding: 0.6rem 1rem; font-size: 0.65rem; }
  .hearthis-cta div { flex-direction: column; align-items: center; }
  .hearthis-cta .btn-ghost { width: 100%; max-width: 260px; justify-content: center; }
  .page-wrap { padding: 4rem 1.25rem 5rem; }
  .legal-block { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 22vw, 5.5rem); }
  nav { padding: 0.9rem 1rem; }
  .nav-logo { font-size: 1.4rem; }
}

/* ── Hero Hintergrundbild ──────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/light.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,12,20,0.3) 0%,
    rgba(8,12,20,0.1) 40%,
    rgba(8,12,20,0.75) 100%
  );
}

/* ── Sprachumschalter ──────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.lang-btn.active { background: var(--cyan); color: #050810; }
.lang-btn:hover:not(.active) { color: var(--text); }
