/* ============================================================
   ACTIVATED RECORDS - LIQUID GLASS 2026
   Modern glassmorphism with green shimmer accents
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep: #050508;
  --bg-surface: #0a0a0f;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: 20px;
  --glass-blur-heavy: 40px;

  --green-primary: #6CFF00;
  --green-dim: #56cc00;
  --green-glow: rgba(108, 255, 0, 0.15);
  --green-glow-strong: rgba(108, 255, 0, 0.3);
  --green-shimmer: linear-gradient(135deg, rgba(108, 255, 0, 0.08), transparent 40%, rgba(108, 255, 0, 0.05) 70%, transparent);

  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.6);
  --text-muted: rgba(240, 240, 245, 0.35);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --side-nav-collapsed: 5px;
  --side-nav-expanded: 220px;

  --container-max: 1200px;
  --section-padding: 120px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-primary);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 255, 106, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 255, 106, 0.4); }

/* ---------- Ambient Background ---------- */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.ambient-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-primary), transparent 70%);
  top: -200px;
  left: -200px;
  animation: orbFloat1 25s ease-in-out infinite;
}
.ambient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00ccff, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: orbFloat2 30s ease-in-out infinite;
  opacity: 0.06;
}
.ambient-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green-primary), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 20s ease-in-out infinite;
  opacity: 0.04;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(80px, 120px); }
  66% { transform: translate(-60px, 80px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-100px, -80px); }
  66% { transform: translate(60px, -120px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}

/* ---------- Glass Panel Base ---------- */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-shimmer);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.glass-panel:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
}
.glass-panel:hover::before { opacity: 1; }

.glass-panel-lg { border-radius: var(--radius-xl); }

/* ---------- Green Shimmer Text ---------- */
.green-shimmer-text {
  background: linear-gradient(90deg, var(--green-primary), #80ff40, var(--green-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LASER NAVIGATION — Leiste LINKS, 5 AV-Symbole RECHTS DANEBEN
   ============================================================ */
.laser-nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 52px;
  z-index: 1000;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Durchgehende vertikale Leiste — ganz links */
.laser-nav-rail {
  position: absolute;
  left: 6px;
  top: 12%;
  bottom: 12%;
  width: 4px;
  background: rgba(108, 255, 0, 0.08);
  border-radius: 2px;
  pointer-events: none;
}

/* Aktiver Beam — gleitet auf der Leiste */
.laser-beam {
  position: absolute;
  left: -2px;
  width: 8px;
  height: 50px;
  background: #6CFF00;
  border-radius: 4px;
  box-shadow:
    0 0 8px rgba(108, 255, 0, 1),
    0 0 18px rgba(108, 255, 0, 0.7),
    0 0 40px rgba(108, 255, 0, 0.3),
    0 0 80px rgba(108, 255, 0, 0.1);
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  top: 0;
}

/* 5 AV-Symbole — RECHTS neben der Leiste */
.laser-nav-symbols {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 76%;
  gap: 0;
  position: absolute;
  left: 18px;
  top: 12%;
  bottom: 12%;
  pointer-events: auto;
}

.laser-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}
.laser-nav-link:hover {
  transform: scale(1.3);
}

/* Echtes AV-Symbol (PNG) */
.laser-av {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.15;
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

/* Aktive Section: Symbol leuchtet Neon-Grün auf */
.laser-nav-link.active .laser-av {
  opacity: 1;
  transform: scale(1.5);
  filter:
    brightness(0) saturate(100%)
    invert(83%) sepia(75%) saturate(1000%) hue-rotate(55deg) brightness(1.1)
    drop-shadow(0 0 4px rgba(108, 255, 0, 0.9))
    drop-shadow(0 0 12px rgba(108, 255, 0, 0.5))
    drop-shadow(0 0 24px rgba(108, 255, 0, 0.2));
}

.laser-nav-link:hover .laser-av {
  opacity: 0.5;
}
.laser-nav-link.active:hover .laser-av {
  opacity: 1;
}

/* === On-Light Modus (weiße Releases/Playlists-Section) — MASSIV SICHTBAR === */
.laser-nav.on-light .laser-nav-rail {
  width: 6px;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5), 0 0 20px rgba(108, 255, 0, 0.3);
}
.laser-nav.on-light .laser-beam {
  width: 10px;
  background: #6CFF00;
  box-shadow:
    0 0 15px #6CFF00,
    0 0 35px rgba(108, 255, 0, 0.9),
    0 0 70px rgba(108, 255, 0, 0.5),
    4px 4px 16px rgba(0, 0, 0, 0.4);
}
.laser-nav.on-light .laser-av {
  opacity: 1;
  filter: brightness(0);
}
.laser-nav.on-light .laser-nav-link.active .laser-av {
  opacity: 1;
  filter:
    brightness(0) saturate(100%)
    invert(83%) sepia(75%) saturate(1000%) hue-rotate(55deg) brightness(1.1)
    drop-shadow(0 0 6px rgba(108, 255, 0, 1))
    drop-shadow(0 0 16px rgba(108, 255, 0, 0.6))
    drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.5));
}
.laser-nav.on-light .laser-nav-link:hover .laser-av {
  opacity: 0.6;
}

/* Mobile: Nav ausblenden (Tablet 768-1024px: bleibt sichtbar per Tablet-Breakpoint unten) */
@media (max-width: 767px) {
  .laser-nav { display: none; }
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  top: 0;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}
/* (hero video removed — logo uses CSS focus-in animation) */

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

/* 3D Logo - focus-in from blur + periodic glitch */
/* Animation only starts when JS adds .animate class (after splash) */
.hero-3d-logo {
  max-width: min(700px, 80vw);
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  filter: blur(20px) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1));
}
.hero-3d-logo.animate {
  animation: logo-focus-in 3s ease-out 0.5s forwards;
}
@keyframes logo-focus-in {
  0% { opacity: 0; transform: scale(0.85); filter: blur(20px) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
  100% { opacity: 1; transform: scale(1); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
}
.hero-3d-logo.glitch-active {
  animation: logo-glitch 0.5s steps(1) forwards !important;
}
@keyframes logo-glitch {
  0%   { transform: scale(1); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
  5%   { transform: translate(-6px, 2px) skewX(-3deg); filter: blur(0) drop-shadow(5px 0 0 rgba(0, 255, 106, 0.8)) drop-shadow(-5px 0 0 rgba(255, 0, 80, 0.6)); }
  10%  { transform: translate(4px, -3px) skewX(2deg); filter: blur(1px) drop-shadow(-4px 0 0 rgba(0, 255, 106, 0.7)) drop-shadow(4px 0 0 rgba(0, 150, 255, 0.5)); }
  15%  { transform: translate(0, 4px) scaleX(1.03); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
  20%  { transform: translate(-3px, -2px) skewX(-2deg); filter: blur(2px) drop-shadow(6px 0 0 rgba(255, 0, 80, 0.7)) drop-shadow(-6px 0 0 rgba(0, 255, 106, 0.7)); }
  25%  { transform: translate(5px, 1px) skewX(3deg); filter: blur(0) drop-shadow(-3px 0 0 rgba(0, 150, 255, 0.6)); }
  30%  { transform: translate(-2px, 0) scaleX(0.97); filter: blur(1px) drop-shadow(4px 0 0 rgba(0, 255, 106, 0.9)); }
  35%  { transform: translate(3px, -1px); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
  40%  { transform: translate(-1px, 1px); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); }
  100% { transform: scale(1); filter: blur(0) drop-shadow(0 0 40px rgba(0, 255, 106, 0.1)); opacity: 1; }
}

/* Scroll indicator - fades in after logo focus-in completes */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.hero-scroll-indicator.animate {
  animation: fade-in 1.5s ease-in-out 4s forwards;
}
.hero-scroll-indicator.scrolled {
  opacity: 0 !important;
  animation: none !important;
  transition: opacity 0.3s ease;
}
@keyframes fade-in {
  to { opacity: 1; }
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--green-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* Static background behind video (visible after video fades out) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(0, 255, 106, 0.03) 0%, var(--bg-deep) 70%);
}

/* ============================================================
   START - ABOUT SECTION (3D Parallax Grid)
   ============================================================ */
.section { position: relative; z-index: 1; overflow: hidden; background: var(--bg-deep); }
.section-start { padding-bottom: 0; background: transparent; overflow: visible; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ============================================================
   3D PARALLAX GRID — ABOUT SECTION
   ============================================================ */

/* --- Section --- */
.depth-grid-section {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--bg-deep);
  overflow: hidden;
}

/* --- Section Fade-In from Hero (top gradient) --- */
.depth-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-deep), transparent);
  z-index: 3;
  pointer-events: none;
}

/* --- Grid Background Container --- */
.depth-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  perspective: 800px;
}

/* --- Canvas (3D perspective grid) --- */
.depth-grid-canvas {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  z-index: 0;
}

/* --- Grid Glow (radial brand glow over canvas) --- */
.depth-grid-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    ellipse at center,
    rgba(108, 255, 0, 0.05) 0%,
    rgba(108, 255, 0, 0.02) 40%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

/* --- Grid Creature (Babyzaggy Easter Egg) --- */
/* Sitzt tief im 3D-Grid auf Hoehe der konvergierenden Linien.
   Fluchtpunkt ist bei y=5% — Babyzaggy sitzt bei ~15%, wirkt
   perspektivisch entfernt: klein, leicht unscharf, abgedunkelt,
   auf der Grid-Ebene nach hinten gekippt. */
.grid-creature {
  position: absolute;
  z-index: 2;
  right: 26%;
  top: 13%;
  width: 52px;
  pointer-events: none;
  transform-origin: center bottom;
  transform: perspective(500px) rotateX(18deg) scaleY(0.92);
  animation: creature-float 7s ease-in-out infinite;
  filter:
    blur(0.4px)
    brightness(0.55)
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.8));
  opacity: 0.65;
}
/* Boden-Schatten: elliptischer Schlagschatten unter Babyzaggy */
.grid-creature::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.grid-creature img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  /* Leichter Gruen-Tint vom Grid-Licht */
  box-shadow: 0 0 12px rgba(108, 255, 0, 0.08);
}
@keyframes creature-float {
  0%, 100% { transform: perspective(500px) rotateX(18deg) scaleY(0.92) translateY(0); }
  50% { transform: perspective(500px) rotateX(18deg) scaleY(0.92) translateY(-3px); }
}
@media (max-width: 768px) {
  .grid-creature { display: none; }
}

/* --- Container (inherits from global .container) --- */
.depth-grid-section .container {
  position: relative;
  z-index: 2;
}

/* --- Glass Panel (extends .glass-panel from Design System) --- */
.depth-grid-panel {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border),
    0 0 80px rgba(108, 255, 0, 0.03);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}
.depth-grid-panel:hover {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--glass-border-hover),
    0 0 100px rgba(108, 255, 0, 0.05);
}

/* --- Content Layout --- */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

/* --- Title Image --- */
.section-title-img {
  display: block;
  max-width: min(480px, 100%);
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(108, 255, 0, 0.25))
          drop-shadow(0 0 60px rgba(108, 255, 0, 0.1));
}

/* --- Text --- */
.about-text p {
  font-family: var(--font-primary);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1em 0;
}
.about-text p:last-of-type {
  margin-bottom: 0;
}

/* --- Slogan --- */
.about-slogan {
  color: var(--green-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1.5em;
  text-shadow:
    0 0 20px rgba(108, 255, 0, 0.4),
    0 0 40px rgba(108, 255, 0, 0.15);
}

/* --- Action Buttons --- */
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid rgba(108, 255, 0, 0.2);
  background: rgba(108, 255, 0, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--text-primary);
  cursor: pointer;
  transition:
    border-color 0.3s ease,
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease;
}
.about-action-btn i {
  color: var(--green-primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-action-btn span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.about-action-btn:hover {
  border-color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(108, 255, 0, 0.15),
    0 0 40px rgba(108, 255, 0, 0.08),
    inset 0 0 20px rgba(108, 255, 0, 0.03);
}

/* --- Image --- */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}
.about-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Reveal Animation --- */
.depth-grid-panel.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.depth-grid-panel.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Green Shimmer Text (Slogan) --- */
.green-shimmer-text {
  background: linear-gradient(
    110deg,
    var(--green-primary) 0%,
    #a0ff60 45%,
    #ffffff 50%,
    #a0ff60 55%,
    var(--green-primary) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-green 4s ease-in-out infinite;
}
@keyframes shimmer-green {
  0%, 100% { background-position: 100% center; }
  50% { background-position: 0% center; }
}

/* ---------- Marquee Ticker (Garrix-Style, fullwidth, white outline) ---------- */
.marquee-ticker {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 2.5rem;
  margin-top: -160px;
  position: relative;
  z-index: 2;
}
.marquee-row {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  line-height: 1.1;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee-scroll 18s linear infinite;
}
.marquee-rtl .marquee-track {
  animation: marquee-scroll-rtl 18s linear infinite;
}
.marquee-slow .marquee-track {
  animation-duration: 30s;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  padding: 0 2rem;
  line-height: 1.15;
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}
.marquee-track span:hover {
  color: rgba(255, 255, 255, 0.9);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* (Old bento-about grid removed — replaced by 3D Parallax Grid depth-grid-section) */

/* ============================================================
   RELEASES SECTION
   ============================================================ */
.section-releases { padding: var(--section-padding) 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-subtitle { color: var(--text-secondary); }

/* Featured Release */
.featured-release {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 32px;
  margin-bottom: 60px;
}
.featured-release-cover {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.featured-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.featured-release:hover .featured-release-cover img { transform: scale(1.05); }
.featured-release-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.featured-release-play i {
  font-size: 40px;
  color: var(--green-primary);
  filter: drop-shadow(0 0 10px var(--green-glow-strong));
}
.featured-release:hover .featured-release-play { opacity: 1; }

.featured-release-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.featured-release-tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--green-primary);
  font-weight: 700;
}
.featured-release-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.featured-release-artist {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.featured-release-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}
.stream-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.stream-btn-spotify:hover { color: #1db954; border-color: rgba(29, 185, 84, 0.3); }
.stream-btn-apple:hover { color: #fc3c44; border-color: rgba(252, 60, 68, 0.3); }
.stream-btn-soundcloud:hover { color: #ff5500; border-color: rgba(255, 85, 0, 0.3); }
.stream-btn-youtube:hover { color: #ff0000; border-color: rgba(255, 0, 0, 0.3); }

/* Release Grid */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.release-card {
  padding: 12px;
  transition: transform var(--transition-spring), box-shadow var(--transition-smooth);
}
.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 255, 106, 0.06);
}
.release-card-cover {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.release-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.release-card:hover .release-card-cover img { transform: scale(1.08); }
.release-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-size: 32px;
  color: #1db954;
}
.release-card:hover .release-card-overlay { opacity: 1; }
.release-card-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.release-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Playlists */
.playlists-section { margin-bottom: 60px; }
.playlists-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

/* Playlists Grid (new layout with names) */
.playlists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.playlist-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: transform var(--transition-spring);
}
.playlist-item:hover { transform: translateY(-6px); }
.playlist-item-cover {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: box-shadow var(--transition-smooth);
}
.playlist-item:hover .playlist-item-cover {
  box-shadow: 0 8px 32px rgba(0, 255, 106, 0.15), 0 4px 20px rgba(0, 0, 0, 0.5);
}
.playlist-item-cover img { width: 100%; height: 100%; object-fit: cover; }
.playlist-item-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.playlist-item:hover .playlist-item-glass { opacity: 1; }
.playlist-item-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.playlist-item-play i {
  font-size: 36px;
  color: #1db954;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.playlist-item:hover .playlist-item-play { opacity: 1; }
.playlist-item-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.playlist-item:hover .playlist-item-name { color: var(--green-primary); }

/* Streaming Platforms */
.streaming-platforms {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.streaming-platform {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: transform var(--transition-spring), box-shadow var(--transition-smooth), color var(--transition-smooth);
}
.streaming-platform i {
  font-size: 1.6rem;
  transition: color var(--transition-smooth);
}
.streaming-platform:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 106, 0.08);
  color: #fff;
}
/* Streaming-Platform hover colors (inline SVGs via fill) */
.streaming-platform:hover .rsc-spotify svg,
.rsc-gate.rsc-spotify:hover svg { fill: #1db954; }
.streaming-platform:hover .rsc-apple svg,
.rsc-gate.rsc-apple:hover svg { fill: #fc3c44; }
.streaming-platform:hover .rsc-yt svg,
.rsc-gate.rsc-yt:hover svg { fill: #ff0000; }

/* ============================================================
   DEMO SECTION
   ============================================================ */
.section-demo {
  padding: var(--section-padding) 0;
  padding-bottom: 120px;
  overflow: visible;
  margin-top: -100vh;
  position: relative;
  z-index: 0;
}
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: start;
  overflow: visible;
}

/* Demo Info Panel */
.demo-info { padding: 32px; position: relative; overflow: visible; }
.demo-info-inner { display: flex; flex-direction: column; gap: 20px; }

/* FLUFFY on Rope hanging below info panel */
.fluffy-rope-wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  z-index: 5;
  pointer-events: none;
}
.fluffy-rope {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}
.demo-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.demo-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.demo-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.demo-checklist li i { color: var(--green-primary); font-size: 12px; }
.demo-info-note {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 106, 0.04);
  border: 1px solid rgba(0, 255, 106, 0.08);
}
.demo-info-note i { color: var(--green-primary); margin-top: 3px; }
.demo-info-note p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Demo Form */
.demo-form-wrap { padding: 40px; position: relative; }
.demo-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
}
.req { color: var(--green-primary); }

.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="url"],
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
}
.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(0, 255, 106, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 255, 106, 0.06);
  background: rgba(255, 255, 255, 0.05);
}
.demo-form textarea { min-height: 80px; resize: vertical; }
.demo-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.demo-form select option { background: #111; color: var(--text-primary); }

.char-counter {
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
}

/* File Upload */
.file-upload-zone {
  position: relative;
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.file-upload-zone:hover,
.file-upload-zone.dragover {
  border-color: var(--green-primary);
  background: rgba(0, 255, 106, 0.03);
}
.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.file-upload-content i { font-size: 24px; color: var(--green-primary); }
.file-upload-content span { font-size: 0.85rem; color: var(--text-secondary); }
.file-upload-content small { font-size: 0.75rem; color: var(--text-muted); }

.file-upload-selected {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.file-upload-selected i { color: var(--green-primary); font-size: 18px; }
.file-upload-selected span { font-size: 0.85rem; color: var(--text-primary); }
.file-remove {
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px;
  transition: color var(--transition-fast);
}
.file-remove:hover { color: #ff4444; }

/* Checkboxes */
.form-checks { display: flex; flex-direction: column; gap: 12px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.form-check input[type="checkbox"] { position: absolute; opacity: 0; cursor: pointer; }
.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-fast);
}
.form-check input:checked ~ .checkmark {
  background: var(--green-primary);
  border-color: var(--green-primary);
}
.checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check input:checked ~ .checkmark::after { display: block; }
.form-check a { color: var(--green-primary); text-decoration: underline; }

/* Submit Button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--green-primary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-submit:hover::before { transform: translateX(100%); }
.btn-submit:hover {
  box-shadow: 0 0 30px var(--green-glow-strong);
  transform: translateY(-2px);
}
.btn-submit:active { transform: translateY(0); }

/* Form Success */
.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 5;
}
.form-success.visible { opacity: 1; visibility: visible; }
.form-success-inner { text-align: center; padding: 40px; }
.success-icon {
  font-size: 48px;
  color: var(--green-primary);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px var(--green-glow-strong));
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-success p { color: var(--text-secondary); }

/* ============================================================
   SECTION DIVIDERS & PARALLAX STRIPS
   ============================================================ */
.section-divider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Parallax background strip */
.parallax-strip {
  height: 280px;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  filter: grayscale(100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.parallax-strip-1 {
  /* booking-slide-1.jpg entfernt — Datei existiert nicht */
}
/* ── Film Grain Overlay on video containers ── */
.parallax-strip-video::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 4;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-crawl 0.08s steps(1) infinite;
}

@keyframes grain-crawl {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 10%); }
  50% { transform: translate(10%, 0); }
  60% { transform: translate(-10%, -5%); }
  70% { transform: translate(5%, 5%); }
  80% { transform: translate(0, -10%); }
  90% { transform: translate(-5%, 5%); }
  100% { transform: translate(0, 0); }
}

.parallax-strip-video {
  background-image: none !important;
  overflow: hidden;
  filter: none !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.parallax-strip-video + .divider-logo-wrap {
  display: none;
}
.parallax-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
  filter: brightness(0.85) contrast(1.15);
}
.parallax-strip-2 {
  /* booking-slide-2.jpg entfernt — Datei existiert nicht */
  background-position: center 30%;
}
.parallax-strip-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(5, 5, 8, 0.35) 12%, transparent 30%, transparent 70%, rgba(5, 5, 8, 0.35) 88%, var(--bg-deep) 100%),
    linear-gradient(90deg, rgba(5, 5, 8, 0.5) 0%, transparent 10%, transparent 90%, rgba(5, 5, 8, 0.5) 100%);
  box-shadow: inset 0 30px 40px -15px rgba(5, 5, 8, 0.7),
              inset 0 -30px 40px -15px rgba(5, 5, 8, 0.7);
}

/* Large centered AV logo watermark on parallax */
.divider-logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-logo {
  width: min(400px, 60vw);
  height: auto;
  opacity: 0.15;
  filter: brightness(0) invert(1);
}

/* Fixed AV Background Symbol (like Agency) */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 40px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
.hero-bg img {
  width: 80%;
  max-width: 850px;
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(6px);
  animation: avSymbolFadeIn 2s ease-out 0.5s forwards;
}
.hero-bg picture {
  display: contents;
}
@keyframes avSymbolFadeIn {
  from { opacity: 0; }
  to { opacity: 0.15; }
}

/* === EFFEKT 1: Pulsierender Neon-Glow hinter dem AV-Symbol === */
/* Sitzt auf ::after von .hero-bg — Symbol selbst bleibt unverändert */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle,
    rgba(108, 255, 0, 0.08) 0%,
    rgba(108, 255, 0, 0.04) 35%,
    transparent 70%
  );
  filter: blur(40px);
  animation: hero-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  /* Stellt sicher dass Glow hinter dem img-Element bleibt */
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.9; transform: translate(-50%, -50%) scale(1.18); }
}

/* Reduced Motion: Glow statisch statt animiert */
@media (prefers-reduced-motion: reduce) {
  .hero-bg::after { animation: none; opacity: 0.6; }
}

/* Alter Ambient-Separator entfernt — Grid uebernimmt */
.section-demo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 106, 0.2), transparent);
  box-shadow: 0 0 30px rgba(0, 255, 106, 0.08);
}

/* === EFFEKT 2: Cursor Spotlight — folgt der Maus auf dunklen Sections ===
   Aktiv via body.cursor-active (JS setzt Klasse wenn Cursor über dark sections)
   position: fixed damit kein overflow:hidden-Clipping des Parent-Elements greift.
   Nur auf Nicht-Touch-Geräten sinnvoll — JS setzt Klasse entsprechend. */
body.cursor-active::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    600px circle at var(--cursor-x, 50%) var(--cursor-y, 50%),
    rgba(108, 255, 0, 0.035) 0%,
    transparent 70%
  );
}

/* Reduced Motion: kein Spotlight */
@media (prefers-reduced-motion: reduce) {
  body.cursor-active::after { display: none; }
}

/* Floating particles / subtle background texture for sections */
.section-releases {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 255, 106, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 200, 255, 0.015) 0%, transparent 40%);
}
.section-demo {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 255, 106, 0.025) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 200, 255, 0.01) 0%, transparent 40%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: none;
  background: #000;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent-primary) 50%, transparent 95%);
  opacity: 0.7;
}
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: radial-gradient(ellipse 80% 100% at center top, rgba(0, 255, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 40px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
/* Network Logo mit Trennbalken */
.footer-brand { text-align: center; width: 100%; margin-bottom: 0; }
.footer-network-logo { display: block; }
.footer-network-logo img {
  width: 100%;
  max-width: 571px;
  height: auto;
  opacity: 0.95;
  transition: opacity var(--transition-fast), filter var(--transition-fast);
  margin: 0 auto;
  display: block;
}
.footer-network-logo:hover img {
  opacity: 1;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 102, 0.4)) drop-shadow(0 0 25px rgba(0, 255, 102, 0.15));
}
/* Division Logos */
.footer-divisions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
  margin-bottom: 28px;
}
.footer-division-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-division-logo img {
  height: 60px;
  width: auto;
  transition: filter var(--transition-fast);
}
.footer-division-logo:hover img {
  filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.5)) drop-shadow(0 0 20px rgba(0, 255, 102, 0.2));
}
.division-hover-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-primary);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
  pointer-events: none;
}
.footer-division-logo:hover .division-hover-label {
  opacity: 1;
}
/* Social Icons - Circle Style */
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  color: var(--green-primary);
  border-color: rgba(0, 255, 102, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.25), inset 0 0 8px rgba(0, 255, 102, 0.08);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}
/* Legal Links */
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}
.footer-links a:hover {
  color: var(--green-primary);
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.35), 0 0 20px rgba(0, 255, 102, 0.15);
}
/* Copyright */
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  margin: 0;
}

/* ============================================================
   SPLASH OVERLAY (Language + Cookie Consent)
   ============================================================ */
.splash-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash-overlay.hiding {
  opacity: 0;
  visibility: hidden;
}
body.splash-active { overflow: hidden; }

.splash-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 420px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.splash-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-shimmer);
  pointer-events: none;
  opacity: 0.5;
}

.splash-logo { margin-bottom: 32px; display: flex; justify-content: center; }
.splash-logo img { width: 180px; height: auto; display: block; filter: drop-shadow(0 0 20px rgba(0, 255, 106, 0.15)); }

/* Step 1: Language */
.splash-step { transition: opacity 0.3s ease, transform 0.3s ease; }
.splash-step.done { opacity: 0; height: 0; overflow: hidden; transform: translateY(-10px); pointer-events: none; margin: 0; padding: 0; }

.splash-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.splash-lang-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.splash-lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.splash-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border-hover);
}
.splash-lang-btn.selected {
  border-color: var(--green-primary);
  background: rgba(0, 255, 106, 0.08);
  box-shadow: 0 0 16px var(--green-glow);
}
.splash-lang-flag { width: 28px; height: 20px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }

/* Step 2: Cookie Consent */
.splash-step-cookie {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.splash-step-cookie.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 600px;
  margin-top: 8px;
}

.splash-cookie-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.splash-cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.splash-cookie-link {
  font-size: 0.75rem;
  color: var(--green-primary);
  text-decoration: underline;
  margin-bottom: 18px;
  display: inline-block;
}

.splash-cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.splash-cookie-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}
.splash-accept {
  background: var(--green-primary);
  color: var(--bg-deep);
  border: none;
}
.splash-accept:hover { box-shadow: 0 0 20px var(--green-glow); transform: translateY(-1px); }
.splash-essential {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
}
.splash-essential:hover { background: rgba(255, 255, 255, 0.1); }
.splash-manage {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  padding: 8px 16px;
}
.splash-manage:hover { color: var(--text-secondary); border-color: rgba(255, 255, 255, 0.25); }

/* Splash Cookie Settings (Category Toggles) */
.splash-cookie-settings {
  display: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.splash-cookie-settings.show { display: block; }
.splash-cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.splash-cookie-cat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.splash-cookie-cat-status {
  font-size: 0.7rem;
  color: var(--green-primary);
}
/* Splash Toggle Switch */
.splash-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.splash-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.splash-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all var(--transition-fast);
}
.splash-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition-fast);
}
.splash-toggle input:checked + .splash-toggle-slider {
  background: var(--green-primary);
}
.splash-toggle input:checked + .splash-toggle-slider::before {
  transform: translateX(18px);
}
.splash-save {
  margin-top: 10px;
  background: var(--green-primary);
  color: var(--bg-deep);
  border: none;
  width: 100%;
}
.splash-save:hover { box-shadow: 0 0 20px var(--green-glow); }

/* ============================================================
   LANGUAGE TOGGLE (Nav) — National Flags
   ============================================================ */
.side-nav-lang {
  display: flex;
  gap: 6px;
  padding: 8px 16px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease 0.05s;
}
.side-nav:hover .side-nav-lang,
.side-nav.expanded .side-nav-lang {
  opacity: 1;
  pointer-events: auto;
}
.lang-flag {
  width: 22px;
  height: 16px;
  display: block;
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
  opacity: 0.5;
}
.lang-btn:hover { color: var(--text-primary); opacity: 0.8; }
.lang-btn.active {
  color: var(--green-primary);
  border-color: rgba(0, 255, 106, 0.3);
  background: rgba(0, 255, 106, 0.08);
  opacity: 1;
}

.mobile-lang-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 0 4px;
}
.mobile-lang-toggle .lang-btn {
  padding: 4px 6px;
}
.mobile-lang-toggle .lang-flag {
  width: 20px;
  height: 14px;
}

/* ============================================================
   NEWSLETTER POPUP (Release Radar)
   ============================================================ */
.nl-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.nl-popup.visible {
  opacity: 1;
  visibility: visible;
}

/* Fluffy + Glass wrapper */
.nl-popup-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
}
.nl-fluffy {
  width: 180px;
  height: auto;
  margin-right: -20px;
  margin-bottom: -10px;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(0, 255, 106, 0.3));
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.5s ease 0.2s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}
.nl-popup.visible .nl-fluffy {
  opacity: 1;
  transform: translateY(0);
}

.nl-popup-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 400px;
  width: calc(100% - 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nl-popup.visible .nl-popup-glass {
  transform: scale(1) translateY(0);
}
.nl-popup-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-shimmer);
  pointer-events: none;
  opacity: 0.5;
}

.nl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
  font-size: 13px;
}
.nl-close:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.1); }

.nl-icon {
  font-size: 2.2rem;
  color: var(--green-primary);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--green-glow));
}

.nl-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.nl-subtitle {
  font-size: 0.85rem;
  color: var(--green-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.nl-cta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.nl-form {
  display: flex;
  gap: 8px;
}
.nl-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}
.nl-form input[type="email"]:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 8px var(--green-glow);
}
.nl-form input[type="email"]::placeholder { color: var(--text-muted); }
.nl-form button {
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--green-primary);
  color: var(--bg-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nl-form button:hover { box-shadow: 0 0 20px var(--green-glow); transform: translateY(-1px); }

.nl-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.nl-success-icon {
  font-size: 2.5rem;
  color: var(--green-primary);
  filter: drop-shadow(0 0 12px var(--green-glow));
}
.nl-success p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-3px);
}

/* ============================================================
   ZOOM PORTAL — AV Symbol Scroll-Driven Zoom Transition
   Schwarzer Fullscreen → AV Symbol zoomt → weisse Releases Section
   ============================================================ */

/* --- Scroll Container (5 Scroll-Turns: 3 Zoom + 2 Fade) --- */
.zoom-portal {
  position: relative;
  height: calc(100vh + 450px);
  z-index: 2;
  background: #000;
}

.zoom-portal-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.zoom-portal-reveal {
  position: absolute;
  inset: 0;
  background: #ffffff;
  -webkit-mask-image: url('../assets/images/brand/av-symbol-white.png');
  mask-image: url('../assets/images/brand/av-symbol-white.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 60px;
  mask-size: 60px;
  will-change: -webkit-mask-size, mask-size;
}

/* --- Heading im Zoom-Portal-Reveal (sichtbar wenn Maske gross genug) --- */
.zoom-portal-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 0.85;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ============================================================
   RELEASES SECTION — GARRIX-STYLE STICKY STACK ON WHITE
   Clean white background, bold typography, cover artworks
   that stack on top of each other via position:sticky.
   ============================================================ */

/* --- Section Base: Pure White, hochgezogen hinter Portal --- */
.section-releases {
  background: #ffffff !important;
  background-image: none !important;
  color: #000;
  padding: 0 !important;
  overflow: hidden;
  position: relative;
  margin-top: -100vh;
  padding-top: 40px !important;
}

/* ===== POLYGON-NETZ HINTERGRUND — Echtes Asset aus Baumaterialien ===== */
/* Das Netz erstreckt sich über die gesamte Releases-Section UND                */
/* ragt via negativem bottom-Wert in die Playlists-Section hinein,              */
/* sodass ein durchgehendes visuelles Band über den gesamten weißen Bereich     */
/* entsteht. Rotation per CSS-Variable --poly-rotate gibt 3D-Wirkung.           */
/* ===== GITTERNETZ — Schwarzes Raster, 75% Deckkraft, Parallax ===== */
.releases-gridnet {
  position: absolute !important; /* Override .section-releases > * { position: relative } */
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.95;
  transform: perspective(800px) rotateX(5deg);
  transform-origin: center center;
  will-change: background-position;
}

/* ===== 7 Rotierende AV-Symbole — Positionen nach Kevins Zeichnung ===== */
.av-bg-symbol {
  position: absolute !important; /* Override .section-releases > * { position: relative } */
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
  will-change: transform;
}

/* Asymmetrisch, wahllos verteilt — keine Symmetrie */

/* Symbol 1 */
.av-bg-1 { width: 190px; top: 1%; left: 4%; right: auto !important; }

/* Symbol 2 */
.av-bg-2 { width: 230px; top: 6%; right: 8%; left: auto !important; }

/* Symbol 3 */
.av-bg-3 { width: 110px; top: 15%; left: 30%; right: auto !important; }

/* Symbol 4 */
.av-bg-4 { width: 260px; top: 22%; right: 1%; left: auto !important; }

/* Symbol 5 */
.av-bg-5 { width: 140px; top: 33%; left: 1%; right: auto !important; }

/* Symbol 6 */
.av-bg-6 { width: 95px; top: 40%; left: 55%; right: auto !important; }

/* Symbol 7 */
.av-bg-7 { width: 210px; top: 47%; right: 6%; left: auto !important; }

/* Symbol 8 */
.av-bg-8 { width: 75px; top: 53%; left: 20%; right: auto !important; }

/* Symbol 9 */
.av-bg-9 { width: 180px; top: 60%; right: 15%; left: auto !important; }

/* Symbol 10 */
.av-bg-10 { width: 270px; top: 65%; left: -3%; right: auto !important; }

/* Symbol 11 */
.av-bg-11 { width: 100px; top: 75%; right: 30%; left: auto !important; }

/* Symbol 12 */
.av-bg-12 { width: 160px; top: 82%; left: 40%; right: auto !important; }

/* Altes ::before nicht mehr benötigt */
.section-releases::before {
  display: none;
}

/* Neon-Gruen Horizont-Glow ueber dem Grid */
.section-releases::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 25%;
  height: 4px;
  background: linear-gradient(90deg, transparent 10%, rgba(108, 255, 0, 0.3) 30%, rgba(108, 255, 0, 0.3) 70%, transparent 90%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

/* Alle direkten Kinder ueber dem Grid */
.section-releases > * {
  position: relative;
  z-index: 1;
}

/* ===== PLAYLIST SECTION — Vinyl-Backdrop + durchgehendes Polygon-Netz ===== */
/* overflow: visible damit das nach oben ragende Polygon-Netz der                */
/* Releases-Section nicht abgeschnitten wird.                                    */
.section-playlists {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.section-playlists > * {
  position: relative;
  z-index: 1;
}

/* Rotierendes Vinyl als atmosphärisches Hintergrund-Element */
.section-playlists::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../assets/images/brand/vinyl-bg.webp') center / contain no-repeat;
  opacity: 0.04;
  animation: vinyl-bg-spin 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes vinyl-bg-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Übergang Weiß → Dunkel am unteren Rand (für Demo-Section) */
.section-playlists::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0d0d12);
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   RELEASES HERO: ACTIVATED Mega-Headline
   ============================================================ */
.releases-mega-title {
  text-align: center;
  margin: -40px 0 0;
  padding: 0 48px 0;
  line-height: 0.85;
}
/* Logo-Bild statt Text — nur ACTIVATED Schriftzug, RECORDS abschneiden */
.releases-logo-img {
  width: clamp(300px, 55vw, 800px);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   RELEASES MARQUEES: Genre-Keywords + AV Symbole
   ============================================================ */
.releases-marquees {
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
}

.rel-marquee-row {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  line-height: 1.1;
}
.rel-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: rel-marquee-ltr 35s linear infinite;
}
.rel-marquee-rtl .rel-marquee-track {
  animation: rel-marquee-rtl 35s linear infinite;
}
.rel-marquee-slow .rel-marquee-track {
  animation-duration: 45s;
}

.rel-marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.7);
  padding: 0 1rem;
  line-height: 1.2;
  transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
  cursor: default;
}

/* Marquee Hover: NUR gehoverte Wort wird gefüllt */
.rel-marquee-track span:hover {
  color: rgba(0, 0, 0, 0.9);
  -webkit-text-stroke: 0px transparent;
}

/* AV Symbol zwischen den Woertern */
.rel-marquee-av {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.5;
  flex-shrink: 0;
  margin: 0 0.5rem;
}

@keyframes rel-marquee-ltr {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes rel-marquee-rtl {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================================
   GATE-BOX: ACTIVATE ALL TUNES (Liquid Glass ueber Marquee)
   ============================================================ */
.releases-gate-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 20px 56px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 2px solid #6CFF00;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(108, 255, 0, 0.3), 0 0 25px rgba(108, 255, 0, 0.1);
  overflow: visible;
}
/* Laser-Strahlen links und rechts — Dreiecks-Form: 20px breit am Start, spitz am Ende, 360px lang */
.releases-gate-box::before,
.releases-gate-box::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(108, 255, 0, 0.8)) drop-shadow(0 0 16px rgba(108, 255, 0, 0.4));
  transform: translateY(-50%);
}
.releases-gate-box::before {
  right: 100%;
  margin-right: 4px;
  border-right: 360px solid #6CFF00;
}
.releases-gate-box::after {
  left: 100%;
  margin-left: 4px;
  border-left: 360px solid #6CFF00;
}
.releases-gate-box span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: #000;
  text-transform: uppercase;
  transition: color 0.35s ease;
}
.releases-gate-box:hover {
  background: #6CFF00;
  border-color: #6CFF00;
  box-shadow: 0 0 20px rgba(108, 255, 0, 0.7), 0 0 50px rgba(108, 255, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%) translateY(-2px);
}
.releases-gate-box:hover span {
  color: #000;
}
.releases-gate-box:hover::before,
.releases-gate-box:hover::after {
  opacity: 1;
}

/* --- Old header (removed, keep selector for safety) --- */
.releases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 80px 64px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 40px;
}
.releases-header-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.releases-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.05;
}
.releases-view-all {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}
.releases-view-all:hover { opacity: 0.6; }
.releases-header-right {
  max-width: 320px;
  padding-top: 8px;
}
.releases-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}

/* --- Sticky Stack Wrapper: 3 Spalten + Trennlinien --- */
.releases-stack-wrapper {
  padding: 0 48px;
}
.releases-stack-inner {
  display: flex;
  justify-content: center;
  gap: 0;
}

/* --- Spalten --- */
.releases-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
}

/* --- Vertikale Trennlinie (Garrix-Style) --- */
.releases-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 32px 0;
  flex-shrink: 0;
}

/* --- Release Card: Glass Panel — Equal-size Grid Cells --- */
.release-stack-card {
  position: sticky;
  width: 100%;
  max-width: none;
  margin-bottom: 50px;
  top: 20px;
  z-index: 10;
  align-self: start;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;   /* Cover + Footer gleichmäßig */
}
.release-stack-card:last-child { margin-bottom: 50px; }
.release-stack-card:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

/* --- Streaming Gate Icons (zentriert oben im Panel) --- */
.rsc-gates {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 6px;
}
.rsc-gate {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}
.rsc-gate:hover { transform: scale(1.2); opacity: 1; }
.rsc-yt { color: #ff0000; }
.rsc-apple { color: #000; }
.rsc-spotify { color: #1db954; }

/* rsc-header entfernt — nur noch Cover + Footer */

/* --- Cover Image --- */
.rsc-cover {
  width: 100%;
  aspect-ratio: 1 / 1;     /* exakt quadratisch */
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;           /* Cover schrumpft nicht */
}
.rsc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.release-stack-card:hover .rsc-cover img {
  transform: scale(1.04);
}

/* --- Footer: Titel+Artist links, Streaming Icons rechts --- */
.rsc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px 4px;
  gap: 10px;
  min-height: 64px;         /* feste Mindesthöhe — alle Cards enden gleich */
  margin-top: auto;         /* Footer immer unten in der flex-column Card */
}
.rsc-meta {
  flex: 1;
  min-width: 0;
}
.rsc-footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsc-footer p {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rsc-footer .rsc-gates {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

/* ===== Releases 3×2 Dynamic Grid ===== */
.releases-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* beide Spalten EXAKT gleich breit */
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ===== Release Card Cover ===== */
.rsc-cover { position: relative; }

/* ===== Release-Cards Container — Glasmorphism Panel über dem Polygon-Netz ===== */
/* HINWEIS: Zweite .releases-grid-2col Deklaration — ergänzt nur visuelles Styling,
   Grid-Layout-Properties sind oben definiert und werden NICHT überschrieben */
/* 4 Visuelle Effekte: Layer1 Inner-Top-Light | Layer2 Noise-Textur | Layer3 Glow-Pulse | Layer4 Shimmer-Sweep */
.releases-grid-2col {
  /* Layout bleibt: display:grid, grid-template-columns etc. sind im ersten Block */

  /* LAYER 1: Inner-Top-Light — Lichteinfall von oben für 3D-Tiefe */
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.3) 0%,
      rgba(255,255,255,0.08) 12%,
      transparent 25%
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.03) 0%,
      transparent 15%
    ),
    rgba(255,255,255,0.55);

  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);

  /* LAYER 3: Glow-Pulse Border — atmet rhythmisch */
  /* FIX: border-color und box-shadow NUR in den Keyframes — kein statischer Wert,
     der die Animation überschreibt. animation steht als LETZTES Property im Block. */
  border: 2px solid transparent;
  border-radius: 20px;

  position: relative;
  z-index: 1;
  padding: 32px;
  overflow: hidden; /* für Shimmer-Sweep */

  /* animation MUSS das letzte Property sein — kein nachfolgendes box-shadow/border überschreibt es */
  animation: panelGlowPulse 3.5s ease-in-out infinite;
}

/* LAYER 3: Glow-Pulse Animation */
@keyframes panelGlowPulse {
  0%, 100% {
    border-color: rgba(108, 255, 0, 0.4);
    box-shadow:
      0 0 15px rgba(108, 255, 0, 0.1),
      0 0 35px rgba(108, 255, 0, 0.04),
      0 12px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 2px 8px rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  }
  50% {
    border-color: rgba(108, 255, 0, 0.75);
    box-shadow:
      0 0 25px rgba(108, 255, 0, 0.25),
      0 0 60px rgba(108, 255, 0, 0.1),
      0 0 100px rgba(108, 255, 0, 0.04),
      0 12px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 2px 8px rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  }
}

/* LAYER 2: Noise-Textur für Premium-Glasgefühl */
.releases-grid-2col::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* LAYER 4: Shimmer-Sweep — Lichtstrahl gleitet über Panel */
/* FIX: z-index: 20 — muss über .release-stack-card (z-index: 10) liegen,
   sonst wird der Shimmer von den Karten verdeckt */
.releases-grid-2col::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 80%
  );
  transform: skewX(-15deg);
  animation: shimmerSweep 8s ease-in-out infinite;
  animation-delay: 3s;
  pointer-events: none;
  z-index: 20;
}

@keyframes shimmerSweep {
  0%   { left: -100%; opacity: 0; }
  8%   { opacity: 1; }
  45%  { left: 150%; opacity: 1; }
  50%  { opacity: 0; }
  100% { left: 150%; opacity: 0; }
}

/* ===== Energie-Divider zwischen Releases und Playlists — MEGA Neon Laser-Cut ===== */
.section-energy-divider {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 2;
}

/* Haupt-Energielinie — breit, leuchtend, dominant */
.energy-line {
  position: absolute;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg,
    transparent 2%,
    rgba(108, 255, 0, 0.6) 15%,
    #6CFF00 35%,
    #80ff33 50%,
    #6CFF00 65%,
    rgba(108, 255, 0, 0.6) 85%,
    transparent 98%
  );
  border-radius: 3px;
  box-shadow:
    0 0 15px rgba(108, 255, 0, 0.5),
    0 0 40px rgba(108, 255, 0, 0.3),
    0 0 80px rgba(108, 255, 0, 0.15);
}

/* Vertikale Energie-Impulse die nach oben und unten ausstrahlen */
.energy-line::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  bottom: -40px;
  background:
    /* Vertikale Neon-Striche nach oben */
    linear-gradient(0deg, transparent 40%, rgba(108, 255, 0, 0.08) 45%, rgba(108, 255, 0, 0.15) 48%, rgba(108, 255, 0, 0.15) 52%, rgba(108, 255, 0, 0.08) 55%, transparent 60%),
    /* Breiter Glow-Halo */
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(108, 255, 0, 0.12) 0%, transparent 70%);
  filter: blur(4px);
  animation: energy-pulse 2.5s ease-in-out infinite;
}

/* Lichtpunkt der ueber die Linie fegt */
.energy-line::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 100%;
  top: 0;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(108, 255, 0, 0.6) 30%,
    transparent 70%
  );
  box-shadow: 0 0 20px rgba(108, 255, 0, 0.8);
  border-radius: 50%;
  animation: energy-sweep 2.5s ease-in-out infinite;
}

@keyframes energy-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes energy-sweep {
  0% { left: -160px; opacity: 0; }
  5% { opacity: 1; }
  48% { left: calc(100% + 160px); opacity: 1; }
  50% { left: calc(100% + 160px); opacity: 0; }
  51% { left: -160px; opacity: 0; }
  100% { left: -160px; opacity: 0; }
}

/* ===== Playlist Section ===== */
.playlist-section {
  padding: 20px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.playlist-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-align: center;
  color: #000;
  margin: 0 0 32px;
}
.playlist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  margin-top: 350px;
}
.playlist-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
}
.playlist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.playlist-card:hover {
  transform: translateY(-6px);
}
.playlist-card:hover img {
  transform: scale(1.06);
}
.playlist-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* 5 verschiedene Farben pro Playlist-Card */
.playlist-card--classics {
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}
.playlist-card--classics:hover {
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}
.playlist-card--euphoric {
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.2);
}
.playlist-card--euphoric:hover {
  box-shadow: 0 8px 30px rgba(0, 150, 255, 0.4);
}
.playlist-card--hardrave {
  box-shadow: 0 4px 20px rgba(108, 255, 0, 0.2);
}
.playlist-card--hardrave:hover {
  box-shadow: 0 8px 30px rgba(108, 255, 0, 0.4);
}
.playlist-card--raw {
  box-shadow: 0 4px 20px rgba(255, 0, 60, 0.2);
}
.playlist-card--raw:hover {
  box-shadow: 0 8px 30px rgba(255, 0, 60, 0.4);
}
.playlist-card--uptempo {
  box-shadow: 0 4px 20px rgba(255, 0, 144, 0.2);
}
.playlist-card--uptempo:hover {
  box-shadow: 0 8px 30px rgba(255, 0, 144, 0.4);
}

/* ===== Laser-Nav on-light: Duplikat entfernt — Master-Block oben bei Zeile ~284 ===== */

/* ===== Zoom Sequence (Playlist Scroll-Hijack) ===== */
.zoom-sequence {
  position: relative;
  height: 350vh; /* Grid (100vh) + Spin/Crossfade/Portal (150vh) + Auslauf (100vh) */
  background: var(--bg-deep); /* Verhindert weisse/leere Gaps am Ende der Sequence */
  z-index: 2; /* Über .section-demo (z-index:0) damit Demo durchscheint wenn transparent */
}

.zoom-sequence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 100vw; /* Bug 4: verhindert Überlauf auf Mobile */
  overflow: hidden; /* Bug 1: kein Durchscheinen des Seiten-Hintergrunds */
  background: #ffffff;
  background-clip: padding-box; /* Bug 1: saubere Hintergrund-Abdeckung */
  isolation: isolate; /* Bug 1: blockiert ambient-bg Durchscheinen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Heading + Grid innerhalb Sticky: zentriert, transitions per JS */
.zoom-sequence-sticky .playlist-heading {
  will-change: opacity, transform;
  transition: none; /* JS steuert alles */
  opacity: 1; /* Initial sichtbar — JS uebernimmt beim Scrollen */
}

.zoom-sequence-sticky .playlist-grid {
  will-change: opacity, transform;
  transition: none;
  margin-top: 0; /* Override des normalen 350px margin */
  opacity: 1; /* Initial sichtbar — JS uebernimmt beim Scrollen */
}

/* AV-Symbol Overlay: Zentral positioniert für Portal-Durchflug */
.zoom-av-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  overflow: hidden;
}

.zoom-av-overlay .zoom-av-symbol {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 0;
  will-change: transform, opacity;
}

/* AV-Klone: JS-erzeugte Overlay-Bilder pro Card-Position */
.av-clone {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  object-fit: contain;
  z-index: 55;
}

/* Mobile/Tablet: Zoom-Animation deaktiviert — statisches Grid */
@media (max-width: 1024px) {
  .zoom-av-overlay,
  .av-clone { display: none; }
}

/* Reduced Motion: Zoom deaktivieren, nur faden */
@media (prefers-reduced-motion: reduce) {
  .zoom-sequence {
    height: auto;
  }
  .zoom-sequence-sticky {
    position: relative;
    height: auto;
    padding: 40px 0 80px;
  }
  .zoom-av-overlay,
  .av-clone {
    display: none;
  }
}

/* ============================================================
   RELEASES SECTION — RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .releases-header {
    flex-direction: column;
    padding: 60px 32px 40px;
    gap: 16px;
  }
  .releases-header-right { max-width: none; }
  .releases-stack-wrapper { padding: 0 24px; }
  .releases-column { padding: 24px 16px; }
  /* max-width: 300px entfernt — würde eine Grid-Spalte schmaler machen als die andere */
}

@media (max-width: 767px) {
  .releases-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .releases-stack-inner {
    flex-direction: column;
    align-items: center;
  }
  .releases-divider {
    width: 60%;
    height: 1px;
    margin: 0 auto;
  }
  .releases-column {
    width: 100%;
    max-width: 400px;
    padding: 24px 0;
  }

  /* === FIX #7: Release Cards — Mobile Layout (colors handled by MOBILE/TABLET REWORK block) === */
  .release-stack-card {
    max-width: 100%;
    top: 0;
    margin-bottom: 0;
    padding: 10px;
    /* background/border/box-shadow overridden by dark theme in REWORK block */
  }
  .rsc-cover {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
  }
  .rsc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: auto;
    padding: 10px 2px 4px;
  }
  .rsc-meta {
    width: 100%;
  }
  .rsc-footer h4 {
    font-size: 16px;
    /* color overridden by dark theme in REWORK block */
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.25;
    letter-spacing: 1px;
  }
  .rsc-footer p {
    font-size: 13px;
    /* color overridden by dark theme in REWORK block */
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  /* Streaming Icons: tappbar (min 40px), colors in REWORK block */
  .rsc-footer .rsc-gates {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .rsc-gate {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 8px;
    /* background/color overridden by dark theme in REWORK block */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .releases-header { padding: 40px 20px 30px; }
  .releases-stack-wrapper { padding: 0 16px; }
  .releases-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 14px;
  }

  /* FIX #8: Playlist Section — handled by MOBILE/TABLET REWORK block at end of file */
}

@media (max-width: 479px) {
  .release-stack-card { top: 0; margin-bottom: 0; padding: 8px; }
  .release-stack-info h4 { font-size: 15px; }
  .release-stack-info { padding: 14px; }
  .releases-grid-2col { gap: 12px 10px; }
  /* colors overridden by dark theme in REWORK block */
  .rsc-gate { width: 36px; height: 36px; font-size: 18px; }
}

/* ============================================================
   DESKTOP WIDE (1200px+) — Playlist-Grid skaliert mit
   ============================================================ */
@media (min-width: 1200px) {
  .playlist-grid {
    max-width: 1400px !important;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  .side-nav { display: none; }

  /* Zoom Portal — handled by MOBILE/TABLET REWORK block */
  .section-releases .container { padding-left: 24px; padding-right: 24px; }

  /* Depth Grid About — Tablet */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-visual { order: -1; }
  .depth-grid-panel { padding: 32px; }
  .depth-grid-glow { width: 600px; height: 600px; }

  .featured-release {
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 24px;
  }
  .featured-release-title { font-size: 1.8rem; }

  .release-grid { grid-template-columns: repeat(3, 1fr); }
  .marquee-track span { font-size: clamp(1.4rem, 3.5vw, 2.5rem); }

  .demo-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .demo-info { z-index: 2; max-width: 520px; margin: 0 auto; }
  .demo-info .fluffy-rope-wrap { display: none; }

  .section-demo { padding-bottom: 40px; }
  .footer { padding-bottom: 0; }
  .footer-inner { padding: 20px 20px 5px; gap: 14px; }
  .footer-network-logo img { max-width: 361px; }
  .footer-divisions { gap: 24px; flex-wrap: nowrap; justify-content: center; margin-top: 24px; }
  .footer-division-logo img { height: 50px; width: auto; }
  .division-hover-label { display: none; }
  .footer-social { gap: 10px; flex-wrap: nowrap; justify-content: center; }
  .footer-social a { width: 36px; height: 36px; font-size: 14px; }
  .footer-links { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .footer-links a { font-size: 11px; letter-spacing: 1.5px; }
  .back-to-top { bottom: 80px; }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }

  .hero-3d-logo { max-width: min(400px, 60vw); }

  /* Zoom Portal — handled by MOBILE/TABLET REWORK block */
  .section-releases .container { border-left: none; border-right: none; }

  /* Depth Grid About — Mobile */
  .depth-grid-panel { padding: 24px; }
  .section-title-img { max-width: min(90vw, 100%); }
  .about-image-wrap { max-width: 300px; }
  .about-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 40px;
  }
  .about-action-btn {
    flex: 1;
    justify-content: center;
    width: auto;
    padding: 10px 12px;
    font-size: 0.8rem;
    min-height: 40px;
    gap: 6px;
  }
  .marquee-ticker {
    margin-top: 20px;
    padding-bottom: 2rem;
  }
  .marquee-track span {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
  }
  .depth-grid-glow { width: 400px; height: 400px; filter: blur(60px); }

  .featured-release {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-release-cover { max-width: 280px; margin: 0 auto; }
  .featured-release-links { justify-content: center; }
  .featured-release-title { font-size: 1.5rem; }

  .release-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .release-card { padding: 6px; }

  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }

  .demo-form-wrap { padding: 24px; }
  .demo-info { padding: 24px; z-index: 2; }
  .demo-layout { gap: 50px; }
  /* fluffy-rope-wrap hidden via 1024px breakpoint for demo section */

  .playlists-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    justify-content: center;
    padding: 0 8px;
  }
  .playlists-grid .playlist-item {
    flex: none;
    max-width: none;
  }

  .streaming-platforms { flex-direction: row; flex-wrap: nowrap; gap: 10px; }
  .streaming-platform { padding: 12px 16px; font-size: 0.8rem; gap: 8px; }
  .streaming-platform i { font-size: 1.3rem; }
  .playlist-item-play i { font-size: 28px; }

  /* Parallax strips: simulated parallax for mobile (iOS doesn't support background-attachment:fixed) */
  .parallax-strip {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    height: 200px;
    overflow: hidden;
  }

  /* Splash + Newsletter responsive */
  .splash-glass { padding: 36px 28px; }
  .splash-logo img { width: 140px; }
  .splash-lang-btn { padding: 12px 20px; font-size: 0.85rem; }
  .nl-form { flex-direction: column; }
  .nl-popup-glass { padding: 32px 24px; }
  .nl-popup-wrapper { flex-direction: row; align-items: flex-end; max-width: calc(100% - 24px); }
  .nl-fluffy { width: 80px; margin-right: -14px; margin-bottom: -6px; flex-shrink: 0; transform: translateY(10px); }
  .nl-popup.visible .nl-fluffy { transform: translateY(0); }
  .nl-popup-glass { padding: 28px 20px; max-width: none; width: 100%; }

  .footer-network-logo img { max-width: 80vw; }
  .footer-division-logo img { height: 44px; width: auto; }
  .footer-divisions { gap: 20px; margin-top: 20px; flex-wrap: nowrap; }
  .footer-social { gap: 8px; flex-wrap: nowrap; justify-content: center; }
  .footer-social a { width: 34px; height: 34px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-3d-logo { max-width: 90vw; }

  .release-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* Zoom Portal — handled by MOBILE/TABLET REWORK block */

  /* Depth Grid About — Small */
  .depth-grid-panel { padding: 20px; }
  /* FIX: initDepthGrid() skips <480px → revealObserver never fires → panel stays opacity:0 */
  .depth-grid-panel.reveal {
    opacity: 1;
    transform: translateY(0);
  }
  .section-title-img { max-width: min(95vw, 100%); }
  .about-text p { font-size: 0.9rem; }
  .about-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 32px;
  }
  .about-action-btn {
    flex: 1;
    justify-content: center;
    width: auto;
    padding: 8px 10px;
    font-size: 0.75rem;
    min-height: 40px;
    gap: 5px;
  }
  .depth-grid-canvas { display: none; }

  .playlists-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 0 6px;
  }
  .playlists-grid .playlist-item {
    flex: none;
    max-width: none;
  }

  .parallax-strip { height: 180px; background-size: 120% auto; }
  .divider-logo { width: min(250px, 50vw); }

  .streaming-platforms { flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; }
  .streaming-platform { padding: 14px 18px; font-size: 0.75rem; gap: 6px; }
  .streaming-platform i { font-size: 1.6rem; }
  .streaming-platform span { display: none; }

  .btn-submit { width: 100%; justify-content: center; }

  .marquee-track span { font-size: clamp(1.8rem, 5.5vw, 2.8rem); font-weight: 900; -webkit-text-stroke: 1.5px rgba(255,255,255,0.9); }
  .marquee-ticker { margin-top: 16px; padding-bottom: 1.5rem; }

  .splash-glass { padding: 28px 20px; }
  .splash-logo img { width: 120px; }
  .splash-lang-btn { padding: 10px 16px; font-size: 0.8rem; }

  .nl-popup-wrapper { flex-direction: row; align-items: flex-end; max-width: calc(100% - 16px); }
  .nl-fluffy { width: 120px; margin-right: -12px; margin-bottom: -8px; flex-shrink: 0; z-index: 3; transform: translateY(10px); }
  .nl-popup.visible .nl-fluffy { transform: translateY(0); }
  .nl-popup-glass { padding: 18px 12px; max-width: none; width: 100%; }
  .nl-popup-glass .nl-title { font-size: 1rem; }
  .nl-popup-glass .nl-sub { font-size: 0.7rem; }
  .nl-popup-glass input { font-size: 1rem; padding: 10px 12px; min-height: 44px; }
  .nl-popup-glass .btn-submit { font-size: 0.875rem; padding: 10px 16px; min-height: 44px; }
  /* fluffy-rope-wrap hidden via 1024px breakpoint for demo section */
  .footer-network-logo img { max-width: 95vw; }
  .footer-division-logo img { height: 40px; width: auto; }
  .footer-divisions { gap: 16px; margin-top: 10px; margin-bottom: 10px; flex-wrap: nowrap; }
  .footer-social { gap: 6px; flex-wrap: nowrap; justify-content: center; }
  .footer-social a { width: 36px; height: 36px; font-size: 13px; }
  .lang-flag-btn { padding: 0.4rem; min-height: 36px; min-width: 36px; }
  /* Cookie Shield inline mit Flags */
  .lang-switcher { display: flex; align-items: center; gap: 6px; padding: 0.35rem 0.5rem; }
  .cookie-shield { padding: 0.3rem; min-width: 36px; min-height: 36px; }
  .cookie-shield svg { width: 1.1rem; height: 1.1rem; }
}

/* Ultra-Small Devices (iPhone SE, 320-374px) */
@media (max-width: 374px) {
  :root {
    --section-padding: 40px;
  }
  .container {
    padding: 0 16px;
  }
  .hero-3d-logo {
    max-width: 85vw;
  }
  .depth-grid-panel {
    padding: 16px;
  }
  .marquee-track span {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    font-weight: 900;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.9);
  }
  .marquee-ticker {
    margin-top: 12px;
    padding-bottom: 1rem;
  }
  .nl-popup-wrapper {
    max-width: calc(100% - 12px);
  }
  .nl-fluffy {
    width: 90px;
  }
  .footer-divisions {
    gap: 12px;
  }
  .footer-division-logo img {
    height: 36px;
  }
}

/* ============================================================
   TABLET BREAKPOINT (768px – 1024px) — Nah am Desktop
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  /* --- Laser-Nav: SICHTBAR auf Tablet, etwas schmaler --- */
  .laser-nav {
    display: flex !important;
    width: 40px;
  }

  /* --- Laser-Nav: on-light DEAKTIVIEREN (Releases/Playlists sind jetzt dark) --- */
  .laser-nav.on-light .laser-nav-rail {
    width: 4px;
    background: rgba(108, 255, 0, 0.08);
    box-shadow: none;
  }
  .laser-nav.on-light .laser-beam {
    width: 8px;
    background: #6CFF00;
    box-shadow:
      0 0 8px rgba(108, 255, 0, 1),
      0 0 18px rgba(108, 255, 0, 0.7),
      0 0 40px rgba(108, 255, 0, 0.3);
  }
  .laser-nav.on-light .laser-av {
    opacity: 0.15;
    filter: none;
  }
  .laser-nav.on-light .laser-nav-link.active .laser-av {
    opacity: 1;
    filter:
      brightness(0) saturate(100%)
      invert(83%) sepia(75%) saturate(1000%) hue-rotate(55deg) brightness(1.1)
      drop-shadow(0 0 4px rgba(108, 255, 0, 0.9))
      drop-shadow(0 0 12px rgba(108, 255, 0, 0.5));
  }

  /* --- Playlist-Grid: 5 Spalten beibehalten, kompakterer Gap --- */
  .playlist-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }

  /* --- Releases Grid: 2 Spalten mit angepasstem Gap --- */
  .releases-grid-2col {
    /* max-width: 700px entfernt — würde Grid-Zellen asymmetrisch machen */
    gap: 20px;
  }

  /* --- FIX #11: Marquee-Ticker — positive margin, nicht unter CTA-Buttons --- */
  .marquee-ticker {
    margin-top: 20px;
    padding-bottom: 1.5rem;
  }

  /* FIX #12: Zoom-Sequence + Playlists — handled by MOBILE/TABLET REWORK block at end of file */
}

/* ============================================================
   MOBILE TOUCH-TARGETS (max-width: 767px)
   Alle interaktiven Elemente mind. 44x44px (WCAG 2.5.5)
   ============================================================ */
@media (max-width: 767px) {

  /* --- Release Cards: Footer vertikal stapeln auf Mobile --- */
  .rsc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-height: auto;
    padding: 8px 4px 4px;
  }
  .rsc-meta {
    width: 100%;
  }
  .rsc-footer h4 {
    font-size: 14px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.2;
  }
  .rsc-footer p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .rsc-footer .rsc-gates {
    width: 100%;
    justify-content: flex-start;
  }
  .rsc-gate {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* --- FIX 1b: Footer-Links — mind. 12px + ausreichend Padding --- */
  .footer-links a {
    font-size: 12px;
    padding: 8px 4px;
    display: inline-block;
  }

  /* --- FIX 1c: AGB-Checkboxen — 22x22px fuer sicheres Touch-Target --- */
  .checkmark {
    width: 22px;
    height: 22px;
    top: 0;
  }
  .form-check {
    padding-left: 34px;
    min-height: 44px;
    align-items: center;
  }
  .checkmark::after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
  }

  /* --- FIX 1d: Footer Social Icons — mind. 44x44px --- */
  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* FIX 3: Zoom-Portal und Releases margin-top — handled by MOBILE/TABLET REWORK block at end of file */
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ==================== LANGUAGE SWITCHER (top-right) ==================== */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.lang-flag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.25s ease;
}
.lang-flag-btn:hover {
  opacity: 0.8;
}
.lang-flag-btn.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.3);
}
.lang-flag-btn svg {
  display: block;
  border-radius: 2px;
}

/* ==================== COOKIE SHIELD (inside lang-switcher) ==================== */
.cookie-shield {
  color: rgba(161, 161, 170, 0.7);
  transition: all 0.3s;
  background: none;
  border: none;
  padding: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-shield:hover {
  color: var(--primary);
}
.cookie-shield svg {
  width: 1rem;
  height: 1rem;
}

/* ---------- On-Light: Dunkle Variante fuer weissen Hintergrund ---------- */
.cookie-shield.on-light {
  color: rgba(0, 0, 0, 0.5);
}
.cookie-shield.on-light:hover {
  color: rgba(0, 0, 0, 0.8);
}
.lang-switcher.on-light {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}
.lang-flag-btn.on-light.active {
  border-color: rgba(0, 0, 0, 0.3);
}

/* --- On-Light DEAKTIVIEREN auf Mobile/Tablet (Releases ist jetzt dark) --- */
@media (max-width: 1024px) {
  .cookie-shield.on-light {
    color: rgba(161, 161, 170, 0.7);
  }
  .cookie-shield.on-light:hover {
    color: var(--green-primary);
  }
  .lang-switcher.on-light {
    background: rgba(5, 5, 8, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
  }
  .lang-flag-btn.on-light.active {
    border-color: rgba(108, 255, 0, 0.3);
  }
}

/* ---------- Accessibility: Skip-to-Content ---------- */
/* Screen-Reader Only (unsichtbar, aber zugänglich) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--green-primary);
  color: #000;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
}

/* ---------- Accessibility: Focus-Visible ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green-primary);
  outline-offset: 2px;
}

/* ==================== COOKIE BANNER — Network-Style (unified) ==================== */

/* Banner Overlay */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cookie-banner.visible {
  opacity: 1;
}
.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cookie-banner__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s ease;
}
.cookie-banner.visible .cookie-banner__panel {
  transform: translateY(0) scale(1);
}
@media (min-width: 768px) {
  .cookie-banner__panel { padding: 2rem; }
}

/* Description */
.cookie-banner__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .cookie-banner__desc { font-size: 0.8125rem; }
}

/* Categories */
.cookie-banner__categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Buttons */
.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.cookie-btn {
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: var(--font-display);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-btn { font-size: 0.6875rem; }
}
.cookie-btn--outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.cookie-btn--outline:hover {
  border-color: var(--green-glow-strong);
  color: var(--text-primary);
}
.cookie-btn--primary {
  background: rgba(108, 255, 0, 0.15);
  border: 1px solid rgba(108, 255, 0, 0.4);
  color: var(--green-primary);
}
.cookie-btn--primary:hover {
  background: rgba(108, 255, 0, 0.25);
  box-shadow: 0 0 20px rgba(108, 255, 0, 0.2);
}

/* Logo */
.cookie-banner__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.cookie-banner__logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .cookie-banner__logo-img { height: 3rem; }
}

/* Category Rows */
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.cookie-category__info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.cookie-category__name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.cookie-category__desc {
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Toggle Switch */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle__track {
  display: block;
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  position: relative;
  transition: background 0.3s;
}
.cookie-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.3s, background 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--green-glow-strong);
}
.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(16px);
  background: var(--green-primary);
}
.cookie-toggle input:disabled + .cookie-toggle__track {
  opacity: 0.5;
  cursor: default;
}
.cookie-toggle input:disabled:checked + .cookie-toggle__track {
  opacity: 0.7;
}

/* Banner Links */
.cookie-banner__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  margin-top: 0.75rem;
}
.cookie-banner__links a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s;
}
.cookie-banner__links a:hover,
.cookie-banner__link-btn:hover {
  color: var(--green-primary);
}
.cookie-banner__link-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}
.legal-sep {
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   RECORDS MOBILE/TABLET — COMPLETE REWRITE V2 (2026-03-27)
   Based on competitive research: Drumcode, Monstercat, Armada,
   Defqon.1, Spinnin, Revealed, Musical Freedom, Q-Dance,
   Anjunabeats, Hexagon, Protocol Recordings
   Desktop (>=1025px) is COMPLETELY UNTOUCHED.
   Philosophy: ONE dark background (#050508), spacing-only
   separation, artwork carries visual weight, no mobile effects.
   ============================================================ */

/* === UNIVERSAL (<=1024px) ================================= */
@media (max-width: 1024px) {

  /* --- 1. NUCLEAR RESET: Hide ALL desktop-only elements --- */
  .zoom-portal,
  .depth-grid-canvas,
  .depth-grid-glow,
  .grid-creature,
  .zoom-av-overlay,
  .av-clone,
  .releases-gridnet,
  .av-bg-symbol,
  .ambient-bg,
  .section-divider,
  .fluffy-rope-wrap,
  .laser-beam,
  .parallax-strip,
  .parallax-strip-overlay,
  .parallax-strip-video,
  .divider-logo-wrap {
    display: none !important;
  }

  /* --- 2. CONSISTENT DARK BACKGROUND --- */
  /* Research: Drumcode, Monstercat, Armada all use ONE solid dark bg */
  body,
  .hero,
  .section,
  .section-start,
  .depth-grid-section,
  .section-releases,
  .zoom-sequence,
  .zoom-sequence-sticky,
  .section-demo {
    background: #050508 !important;
    background-image: none !important;
  }

  .section,
  .section-start,
  .depth-grid-section,
  .section-releases,
  .section-demo {
    margin-top: 0 !important;
    overflow: visible !important;
  }

  .section-releases {
    color: #ffffff !important;
  }

  .hero::after {
    background: none !important;
  }

  /* Remove ALL pseudo-element gradients/decorations on sections */
  .section-releases::before,
  .section-releases::after,
  .section-divider::after,
  .zoom-sequence::before,
  .section-start::after,
  .section-demo::before,
  .depth-grid-section::before {
    display: none !important;
    content: none !important;
  }

  /* --- 3. ABOUT SECTION --- */
  /* Research: Monstercat = clean cards, Drumcode = generous spacing */

  .depth-grid-section {
    padding: 60px 0 !important;
  }

  .depth-grid-bg {
    display: none !important;
  }

  .depth-grid-panel {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 24px !important;
    margin: 0 16px !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
  }
  .depth-grid-panel:hover {
    box-shadow: none !important;
    transform: none !important;
  }
  .depth-grid-panel.reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-visual {
    order: -1 !important;
  }

  .about-image-wrap {
    max-width: 100% !important;
  }

  .about-image-wrap img {
    width: 100% !important;
    max-height: 250px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  .section-title-img {
    max-width: 280px !important;
    margin-bottom: 12px !important;
    filter: none !important; /* QA Fix #1: Remove green drop-shadow ghost on mobile */
  }

  .about-text p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }

  .about-slogan {
    font-size: 1.1rem !important;
  }

  .green-shimmer-text {
    font-size: 0.85rem !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important; /* QA Fix #7: Ensure standard property is also reset */
    -webkit-text-fill-color: #6CFF00 !important;
    color: #6CFF00 !important; /* QA Fix #7: Fallback for non-webkit browsers */
    animation: none !important;
  }

  .about-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 20px !important;
    flex-wrap: nowrap !important;
  }

  .about-action-btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 0.8rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(108, 255, 0, 0.25) !important;
    background: rgba(108, 255, 0, 0.03) !important;
    min-height: 44px !important;
    width: auto !important;
  }

  /* --- 4. MARQUEE STATS --- */
  /* Research: Drumcode style — bold, impactful, breathing room */
  .marquee-ticker {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
    padding: 0 !important;
  }

  .marquee-track span {
    font-size: clamp(2.2rem, 6vw, 3.5rem) !important;
    font-weight: 900 !important;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6) !important;
    color: transparent !important;
    letter-spacing: 0.02em !important;
  }

  /* --- 5. RELEASES SECTION --- */
  /* Research: Spinnin/Drumcode — clean grid, artwork carries design */
  .section-releases {
    padding: 48px 16px !important;
    overflow: visible !important;
    position: relative !important;
  }

  .section-releases > * {
    position: relative !important;
    z-index: 1 !important;
  }

  .releases-mega-title {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .releases-logo-img {
    filter: brightness(0) invert(1) !important;
    width: clamp(180px, 50vw, 300px) !important;
    opacity: 0.9 !important;
  }

  /* Genre marquees: readable, neon-green, modern */
  .rel-marquee-track span {
    font-size: clamp(1.1rem, 3.5vw, 1.6rem) !important;
    color: transparent !important;
    -webkit-text-stroke: 1.2px rgba(108, 255, 0, 0.5) !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
  }
  .rel-marquee-track span:hover {
    color: rgba(108, 255, 0, 0.8) !important;
    -webkit-text-stroke: 0px transparent !important;
  }

  .rel-marquee-av {
    display: none !important;
  }

  /* Releases marquee container: proper layout for gate-box */
  .releases-marquees {
    position: relative !important;
  }

  /* GATE-BOX: MUST be visible — position:static kills the absolute desktop positioning */
  .releases-gate-box {
    position: static !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 28px auto !important;
    padding: 16px 36px !important;
    border: 1px solid rgba(108, 255, 0, 0.4) !important;
    background: rgba(108, 255, 0, 0.06) !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.15em !important;
    max-width: 300px !important;
    width: fit-content !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 0 20px rgba(108, 255, 0, 0.08) !important;
    text-decoration: none !important;
    z-index: 5 !important;
  }
  .releases-gate-box span {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
  }
  .releases-gate-box:hover {
    background: #6CFF00 !important;
    border-color: #6CFF00 !important;
    transform: none !important;
  }
  .releases-gate-box:hover span {
    color: #000000 !important;
  }
  .releases-gate-box::before,
  .releases-gate-box::after {
    display: none !important;
  }

  /* Release Cards Grid */
  .releases-stack-wrapper {
    padding: 0 !important;
    margin-top: 24px !important;
  }

  .releases-grid-2col {
    display: grid !important;
    gap: 16px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    animation: none !important;
  }
  .releases-grid-2col::before,
  .releases-grid-2col::after {
    display: none !important;
  }

  /* Individual Release Card — Artwork-driven (Drumcode/Spinnin style) */
  .release-stack-card {
    position: relative !important;
    top: 0 !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: transform 0.2s ease !important;
  }

  .rsc-cover {
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }
  .rsc-cover img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .rsc-footer {
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    background: transparent !important;
    min-height: auto !important;
  }

  .rsc-meta h4 {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.3 !important;
  }

  .rsc-meta p {
    color: rgba(255, 255, 255, 0.65) !important; /* QA Fix #3: Was 0.45, now WCAG AA compliant (4.5:1+) */
    font-size: 0.8rem !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }

  .rsc-gates {
    display: flex !important;
    gap: 8px !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .rsc-gate {
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    font-size: 16px !important;
    transition: background 0.2s ease !important;
    min-width: 36px !important;
  }
  .rsc-spotify { color: #1DB954 !important; }
  .rsc-apple { color: #ffffff !important; }
  .rsc-yt { color: #FF0000 !important; }
  .rsc-deezer { color: #A238FF !important; }
  .rsc-soundcloud { color: #FF5500 !important; }

  /* Energy divider between releases and playlists */
  .section-energy-divider {
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
  }
  .energy-line {
    width: 40% !important;
    max-width: 200px !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(108, 255, 0, 0.25), transparent) !important;
    border-radius: 1px !important;
    box-shadow: none !important;
  }
  .energy-line::before,
  .energy-line::after {
    display: none !important;
  }

  /* --- 6. PLAYLISTS SECTION --- */
  /* Research: All labels — clean grid, dark bg, artwork-driven */
  .zoom-sequence {
    height: auto !important;
    position: relative !important;
    padding: 48px 16px !important;
  }

  .zoom-sequence-sticky {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
    isolation: auto !important;
    padding: 0 !important;
  }

  .zoom-sequence-sticky .playlist-heading {
    color: #ffffff !important;
    font-size: clamp(1.4rem, 4.5vw, 2.2rem) !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin-bottom: 32px !important;
    opacity: 1 !important;
    transform: none !important;
    text-shadow: none !important;
    line-height: 1.4 !important;
    padding: 0 !important;
  }

  .playlist-grid {
    display: grid !important;
    gap: 12px !important;
    justify-items: center !important;
    opacity: 1 !important;
    transform: none !important;
    max-width: 100% !important;
    pointer-events: auto !important;
  }

  .playlist-card {
    border-radius: 10px !important;
    overflow: hidden !important;
    transition: transform 0.2s ease !important;
    position: relative !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .playlist-card.mobile-revealed {
    opacity: 1 !important;
    transform: none !important;
  }
  .playlist-card img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
  }
  .playlist-label {
    font-size: 0.75rem !important; /* QA Fix #4: Was 0.65rem, improved readability */
    text-align: center !important;
    display: block !important;
    padding: 8px 0 !important; /* QA Fix #4: Was 6px */
    color: rgba(255, 255, 255, 0.75) !important; /* QA Fix #4: Was 0.6, better contrast */
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    background: none !important;
  }

  /* --- 7. DEMO SECTION --- */
  /* Research: Armada/Revealed — clean form, dark inputs, no decoration */
  .section-demo {
    padding: 48px 16px !important;
  }

  .section-demo .section-header {
    text-align: center !important;
    margin-bottom: 32px !important;
  }
  .section-header .section-title {
    color: #ffffff !important;
    text-align: center !important;
  }
  .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.5) !important;
    text-align: center !important;
  }

  .demo-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .demo-info,
  .demo-form-wrap {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 24px !important;
    box-shadow: none !important;
  }
  .demo-info {
    z-index: 2 !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    justify-self: center !important;
    width: 100% !important;
  }
  .demo-info h3 {
    color: #ffffff !important;
  }
  .demo-checklist li {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
  }
  .demo-checklist li i {
    color: #6CFF00 !important;
  }
  .demo-info-note {
    background: rgba(108, 255, 0, 0.04) !important;
    border: 1px solid rgba(108, 255, 0, 0.1) !important;
  }
  .demo-info-note i {
    color: #6CFF00 !important;
  }
  .demo-info-note p {
    color: rgba(255, 255, 255, 0.4) !important;
  }

  .demo-form .form-group label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 6px !important;
  }

  .demo-form .form-input,
  .demo-form .form-select,
  .demo-form .form-textarea,
  .demo-form input,
  .demo-form select,
  .demo-form textarea {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
  }
  .demo-form input:focus,
  .demo-form select:focus,
  .demo-form textarea:focus {
    border-color: #6CFF00 !important;
    box-shadow: 0 0 0 2px rgba(108, 255, 0, 0.12) !important;
    outline: none !important;
  }
  .demo-form input::placeholder,
  .demo-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
  }
  .demo-form select option {
    background: #111 !important;
    color: #ffffff !important;
  }

  .demo-form .form-row {
    grid-template-columns: 1fr !important;
  }
  .demo-form .form-row-3 {
    grid-template-columns: 1fr !important;
  }

  .file-upload-zone {
    border: 1px dashed rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    min-height: 44px !important;
  }
  .file-upload-zone:hover,
  .file-upload-zone.dragover {
    border-color: #6CFF00 !important;
    background: rgba(108, 255, 0, 0.03) !important;
  }
  .file-upload-content i {
    color: #6CFF00 !important;
  }
  .file-upload-content span {
    color: rgba(255, 255, 255, 0.6) !important;
  }
  .file-upload-content small {
    color: rgba(255, 255, 255, 0.3) !important;
  }

  .btn-submit {
    width: 100% !important;
    padding: 14px 24px !important;
    background: #6CFF00 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    min-height: 48px !important;
    cursor: pointer !important;
    justify-content: center !important;
  }

  .form-check {
    min-height: 44px !important;
    display: flex !important; /* QA Fix #5: Proper flex layout for touch targets */
    align-items: center !important;
    gap: 12px !important; /* QA Fix #5: Consistent spacing */
    padding: 8px 0 !important; /* QA Fix #5: Vertical breathing room */
    color: rgba(255, 255, 255, 0.6) !important;
  }
  .form-check a {
    color: #6CFF00 !important;
  }
  /* QA Fix #5: Expand clickable area around checkbox */
  .form-check label,
  .form-check {
    cursor: pointer !important;
  }
  .checkmark {
    width: 24px !important; /* QA Fix #5: Was 22px, larger touch target */
    height: 24px !important;
    border-radius: 6px !important;
    min-width: 24px !important; /* QA Fix #5: Was 22px */
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
  }

  .char-counter {
    color: rgba(255, 255, 255, 0.3) !important;
  }

  /* --- 8. LASER NAV: on-light reset (everything is dark now) --- */
  .laser-nav.on-light .laser-nav-rail {
    width: 4px !important;
    background: rgba(108, 255, 0, 0.08) !important;
    box-shadow: none !important;
  }
  .laser-nav.on-light .laser-beam {
    width: 8px !important;
    background: #6CFF00 !important;
    box-shadow: 0 0 8px rgba(108, 255, 0, 1), 0 0 18px rgba(108, 255, 0, 0.7), 0 0 40px rgba(108, 255, 0, 0.3) !important;
  }
  .laser-nav.on-light .laser-link img {
    filter: none !important;
  }
  .laser-nav.on-light .laser-av {
    opacity: 0.15 !important;
    filter: none !important;
  }
  .laser-nav.on-light .laser-nav-link.active .laser-av {
    opacity: 1 !important;
    filter: brightness(0) saturate(100%) invert(83%) sepia(75%) saturate(1000%) hue-rotate(55deg) brightness(1.1) drop-shadow(0 0 4px rgba(108, 255, 0, 0.9)) drop-shadow(0 0 12px rgba(108, 255, 0, 0.5)) !important;
  }
  .lang-switcher.on-light {
    background: rgba(5, 5, 8, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .lang-switcher.on-light .lang-flag-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  .lang-flag-btn.on-light.active {
    border-color: rgba(108, 255, 0, 0.3) !important;
  }
  .cookie-shield.on-light {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .cookie-shield.on-light:hover {
    color: var(--green-primary) !important;
  }

  /* --- 9. MISC TOUCH TARGETS & FOOTER --- */
  .uf-social-link {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
  }
  .back-to-top {
    width: 44px !important;
    height: 44px !important;
    bottom: 80px !important;
  }
  .side-nav {
    display: none !important;
  }
  .section-releases .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .footer {
    padding-bottom: 0 !important;
  }
  .footer-inner {
    padding: 20px 20px 5px !important;
    gap: 14px !important;
  }
  .footer-network-logo img {
    max-width: 361px !important;
  }
  .footer-divisions {
    gap: 24px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    margin-top: 24px !important;
  }
  .footer-division-logo img {
    height: 50px !important;
    width: auto !important;
  }
  .division-hover-label {
    display: none !important;
  }
  .footer-social {
    gap: 10px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .footer-social a {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  .footer-links {
    gap: 18px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .footer-links a {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
  }

  /* --- 10. REVEAL ANIMATIONS (scroll-triggered) --- */
  .section-releases .releases-mega-title,
  .section-releases .releases-marquees,
  .section-releases .releases-stack-wrapper {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  .section-releases .releases-mega-title.mobile-revealed,
  .section-releases .releases-marquees.mobile-revealed,
  .section-releases .releases-stack-wrapper.mobile-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .section-releases .releases-mega-title { transition-delay: 0s !important; }
  .section-releases .releases-marquees { transition-delay: 0.15s !important; }
  .section-releases .releases-stack-wrapper { transition-delay: 0.3s !important; }

} /* END @media (max-width: 1024px) — UNIVERSAL */


/* === MOBILE SPECIFIC (<=767px) ============================ */
@media (max-width: 767px) {

  /* Laser nav: hidden on mobile */
  .laser-nav {
    display: none !important;
  }

  /* Release grid: 2 columns */
  .releases-grid-2col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Playlist grid: flexbox wrap for 3+2 centering */
  .playlist-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }
  .playlist-card {
    width: calc(33.33% - 10px) !important;
    flex-shrink: 0 !important;
  }
  .playlist-card:nth-child(4),
  .playlist-card:nth-child(5) {
    width: calc(33.33% - 10px) !important;
  }

  /* Tighter section padding */
  .section-releases,
  .zoom-sequence,
  .section-demo {
    padding: 40px 16px !important;
  }
  .depth-grid-section {
    padding: 40px 0 !important;
  }

  /* About panel */
  .depth-grid-panel {
    margin: 0 12px !important;
    padding: 20px !important;
    border-radius: 14px !important;
  }

  /* About image smaller */
  .about-image-wrap img {
    max-height: 220px !important;
  }

  /* About actions bottom margin */
  .about-actions {
    margin-bottom: 32px !important;
  }

  /* Marquees breathing room */
  .marquee-ticker {
    margin-top: 36px !important;
    margin-bottom: 36px !important;
  }

  /* Marquee text smaller */
  .marquee-track span {
    font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
  }

  /* Hero logo smaller */
  .hero-3d-logo {
    max-width: min(400px, 70vw) !important;
  }

  /* Section start padding */
  .section-start {
    padding-bottom: 0 !important;
  }

  /* Releases title */
  .releases-mega-title {
    padding: 0 !important;
  }
  .releases-logo-img {
    width: clamp(180px, 55vw, 350px) !important;
  }
  .releases-marquees {
    padding-bottom: 20px !important;
  }
  .section-releases .container {
    border-left: none !important;
    border-right: none !important;
  }

  /* Gate-Box smaller */
  .releases-gate-box {
    padding: 10px 24px !important;
    font-size: 0.8rem !important;
  }

  /* Playlist heading mobile */
  .zoom-sequence-sticky .playlist-heading {
    font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
  }

  /* Demo Form: single column */
  .demo-form .form-row,
  .demo-form .form-row-3,
  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr !important;
  }
  .demo-form-wrap {
    padding: 20px !important;
  }
  .demo-info {
    padding: 20px !important;
  }

  /* Release card footer: vertical */
  .rsc-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .rsc-meta {
    width: 100% !important;
  }
  .rsc-footer h4,
  .rsc-meta h4 {
    font-size: 0.85rem !important;
    line-height: 1.25 !important;
  }
  .rsc-footer p,
  .rsc-meta p {
    font-size: 0.75rem !important;
  }
  .rsc-footer .rsc-gates {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  /* Splash / Newsletter responsive */
  .splash-glass { padding: 36px 28px !important; }
  .splash-logo img { width: 140px !important; }
  .splash-lang-btn { padding: 12px 20px !important; font-size: 0.85rem !important; }
  .nl-form { flex-direction: column !important; }
  .nl-popup-wrapper {
    flex-direction: row !important;
    align-items: flex-end !important;
    max-width: calc(100% - 24px) !important;
  }
  .nl-fluffy {
    width: 80px !important;
    margin-right: -14px !important;
    margin-bottom: -6px !important;
    flex-shrink: 0 !important;
  }
  .nl-popup-glass {
    padding: 28px 20px !important;
    max-width: none !important;
    width: 100% !important;
  }

  /* Footer responsive */
  .footer-network-logo img { max-width: 80vw !important; }
  .footer-division-logo img { height: 44px !important; }
  .footer-divisions { gap: 20px !important; margin-top: 20px !important; }
  .footer-social a { width: 44px !important; height: 44px !important; font-size: 18px !important; }

  /* Touch targets: WCAG 2.5.5 */
  .checkmark {
    top: 0 !important;
  }
  .form-check {
    padding-left: 34px !important;
  }
  .checkmark::after {
    left: 7px !important;
    top: 3px !important;
    width: 6px !important;
    height: 11px !important;
  }
  .footer-links a {
    font-size: 12px !important;
    padding: 8px 4px !important;
    display: inline-block !important;
  }

} /* END @media (max-width: 767px) — MOBILE */


/* === TABLET SPECIFIC (768-1024px) ========================= */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Laser nav: visible on tablet */
  .laser-nav {
    display: flex !important;
    width: 40px !important;
  }

  /* Release grid: 3 columns */
  .releases-grid-2col {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }

  /* Playlist grid: 5 columns */
  .playlist-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 14px !important;
  }

  /* Form rows: 2 columns */
  .demo-form .form-row,
  .form-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .demo-form .form-row-3,
  .form-row-3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* QA Fix #6: About section side-by-side on tablet (enough room at 768px+) */
  .about-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .about-visual {
    order: 0 !important; /* Photo back to natural order (right side) */
  }
  .about-image-wrap img {
    max-height: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Releases title */
  .releases-mega-title {
    padding: 0 48px !important;
  }

  /* Release card footer: horizontal on tablet */
  .rsc-footer h4,
  .rsc-meta h4 {
    font-size: 1rem !important;
  }
  .rsc-footer p,
  .rsc-meta p {
    font-size: 0.85rem !important;
  }
  .rsc-gate {
    font-size: 20px !important;
  }

  /* Zoom Sequence padding */
  .zoom-sequence {
    padding: 60px 16px !important;
  }

} /* END @media tablet */


/* === ULTRA-SMALL (<=479px) ================================ */
@media (max-width: 479px) {
  .hero-3d-logo {
    max-width: 85vw !important;
  }
  .depth-grid-panel {
    padding: 16px !important;
    margin: 0 8px !important;
  }
  .about-image-wrap img {
    max-height: 200px !important;
  }
  .section-title-img {
    max-width: 240px !important;
  }
  .about-action-btn {
    padding: 10px 12px !important;
    font-size: 0.75rem !important;
  }
  .marquee-track span {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
  }
  .marquee-ticker {
    margin-top: 16px !important;
    padding-bottom: 1rem !important;
  }
  .releases-grid-2col {
    gap: 10px !important;
  }
  .rsc-gate {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }
  .rsc-meta h4 { font-size: 0.8rem !important; }
  .rsc-meta p { font-size: 0.7rem !important; }
  .rsc-footer { padding: 8px !important; }

  .btn-submit {
    width: 100% !important;
  }

  .splash-glass { padding: 28px 20px !important; }
  .splash-logo img { width: 120px !important; }
  .splash-lang-btn { padding: 10px 16px !important; font-size: 0.8rem !important; }

  .nl-popup-wrapper {
    max-width: calc(100% - 16px) !important;
  }
  .nl-fluffy {
    width: 120px !important;
    margin-right: -12px !important;
  }
  .nl-popup-glass {
    padding: 18px 12px !important;
  }
  .nl-popup-glass .nl-title { font-size: 1rem !important; }
  .nl-popup-glass .nl-sub { font-size: 0.7rem !important; }
  .nl-popup-glass input { font-size: 1rem !important; padding: 10px 12px !important; min-height: 44px !important; }
  .nl-popup-glass .btn-submit { font-size: 0.875rem !important; padding: 10px 16px !important; min-height: 44px !important; }

  .footer-network-logo img { max-width: 95vw !important; }
  .footer-division-logo img { height: 40px !important; }
  .footer-divisions { gap: 16px !important; margin-top: 10px !important; margin-bottom: 10px !important; }
  .footer-social { gap: 6px !important; }
  .footer-social a { width: 36px !important; height: 36px !important; font-size: 13px !important; }

  .lang-flag-btn { padding: 0.4rem !important; min-height: 36px !important; min-width: 36px !important; }
  .lang-switcher { display: flex !important; align-items: center !important; gap: 6px !important; padding: 0.35rem 0.5rem !important; }
  .cookie-shield { padding: 0.3rem !important; min-width: 36px !important; min-height: 36px !important; }
  .cookie-shield svg { width: 1.1rem !important; height: 1.1rem !important; }

} /* END @media (max-width: 479px) — ULTRA-SMALL */


/* === EXTRA-SMALL (<=374px) ================================ */
@media (max-width: 374px) {
  :root {
    --section-padding: 40px !important;
  }
  .container {
    padding: 0 16px !important;
  }
  .depth-grid-panel { padding: 14px !important; margin: 0 6px !important; }
  .about-action-btn { font-size: 0.7rem !important; padding: 8px 10px !important; }
  .releases-gate-box { padding: 10px 20px !important; font-size: 0.75rem !important; }
  .hero-3d-logo { max-width: 85vw !important; }
  .marquee-track span {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }
  .nl-popup-wrapper {
    max-width: calc(100% - 12px) !important;
  }
  .nl-fluffy {
    width: 90px !important;
  }
  .footer-divisions {
    gap: 12px !important;
  }
  .footer-division-logo img {
    height: 36px !important;
  }
} /* END @media (max-width: 374px) — EXTRA-SMALL */
