/* ═══════════════════════════════════════════════════════
   SibLynXMusic — "The Neon Frequency"
   Immersive Electronic Music Label Experience
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500&display=swap");

/* ─── DESIGN TOKENS ─── */
:root {
  /* Core palette */
  --void: #02040A;
  --deep: #050816;
  --surface: #0a1020;
  --surface-light: #0f1730;

  /* Neon accents */
  --cyan: #00F0FF;
  --cyan-dim: rgba(0, 240, 255, 0.15);
  --cyan-glow: rgba(0, 240, 255, 0.35);
  --mint: #00FFA3;
  --mint-dim: rgba(0, 255, 163, 0.12);
  --purple: #8A2BE2;
  --purple-dim: rgba(138, 43, 226, 0.15);
  --purple-glow: rgba(138, 43, 226, 0.35);
  --magenta: #E040FB;
  --magenta-dim: rgba(224, 64, 251, 0.12);
  --orange: #FF6B00;
  --orange-dim: rgba(255, 107, 0, 0.15);
  --orange-glow: rgba(255, 107, 0, 0.35);

  /* Text */
  --text-1: #F0F4FF;
  --text-2: #8B9DC3;
  --text-3: #4A5578;

  /* Borders */
  --border: rgba(0, 240, 255, 0.12);
  --border-hover: rgba(0, 240, 255, 0.3);

  /* Radii */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow-cyan: 0 0 40px rgba(0, 240, 255, 0.2), 0 0 80px rgba(0, 240, 255, 0.08);
  --shadow-glow-purple: 0 0 40px rgba(138, 43, 226, 0.2), 0 0 80px rgba(138, 43, 226, 0.08);
  --shadow-glow-orange: 0 0 40px rgba(255, 107, 0, 0.2), 0 0 80px rgba(255, 107, 0, 0.08);

  /* Layout */
  --container: 1240px;
  --header-h: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  min-width: 320px;
  background: var(--void);
  color: var(--text-1);
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; color: inherit; font: inherit; }

.hidden { display: none !important; }

/* ─── CONTAINER ─── */
.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   ENTRY SCREEN
   ═══════════════════════════════════════════════════════ */
.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}
.entry-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.entry-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.entry-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: entryFadeIn 1.5s var(--ease-out) both;
}
@keyframes entryFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.entry-logo-wrap {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.15));
  animation: entryPulse 3s ease-in-out infinite;
}
@keyframes entryPulse {
  0%, 100% { filter: drop-shadow(0 0 40px var(--cyan-glow)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.15)); }
  50% { filter: drop-shadow(0 0 60px var(--cyan-glow)) drop-shadow(0 0 120px rgba(0, 240, 255, 0.25)); }
}
.entry-logo {
  width: 100%;
  height: auto;
}
.entry-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-1);
  text-shadow: 0 0 30px var(--cyan-glow);
}
.entry-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.entry-buttons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.entry-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.entry-btn:hover::before { opacity: 1; }
.entry-btn-sound {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.15));
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(0, 240, 255, 0.05);
}
.entry-btn-sound:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.35), rgba(138, 43, 226, 0.25));
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.3), inset 0 0 40px rgba(0, 240, 255, 0.08);
  transform: translateY(-3px);
}
.entry-btn-silent {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-2);
}
.entry-btn-silent:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-1);
  transform: translateY(-3px);
}
.entry-btn-icon { display: flex; align-items: center; }

/* ═══════════════════════════════════════════════════════
   SITE WRAPPER & AMBIENT
   ═══════════════════════════════════════════════════════ */
.site-wrapper {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1s var(--ease) 0.3s;
}
.site-wrapper.visible { opacity: 1; }

.ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   MINI-PLAYER — Full floating audio player
   ═══════════════════════════════════════════════════════ */
.mini-player {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--r-md);
  background: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  max-width: 420px;
  width: max-content;
}
.mini-player.visible {
  opacity: 1;
  transform: translateY(0);
}
.mini-player:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}

/* Play/Pause button */
.mp-play-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--cyan-dim);
  display: grid;
  place-items: center;
  color: var(--cyan);
  transition: all 0.3s var(--ease);
}
.mp-play-btn:hover {
  background: rgba(0, 240, 255, 0.25);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* Track info */
.mp-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.mp-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: clamp(100px, 18vw, 160px);
}
.mp-artist {
  font-size: 0.7rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: clamp(100px, 18vw, 160px);
}

/* Progress area */
.mp-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 80px;
  flex: 1;
}
.mp-progress {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mp-progress:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
}
.mp-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
  transition: width 0.1s linear;
}
.mp-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

/* Mute button */
.mp-mute-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.3s var(--ease);
}
.mp-mute-btn:hover {
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
}
.mute-icon { display: flex; align-items: center; }

/* Paused state — dim the progress bar gradient slightly */
.mini-player.paused .mp-progress-bar {
  opacity: 0.5;
}
.mini-player.paused .mp-play-btn {
  background: rgba(0, 240, 255, 0.06);
}

/* Now-playing bars animation (on mini-player) */
.mini-player .mp-play-btn::after {
  content: '';
  display: none;
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 4, 10, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
  transition: background 0.3s var(--ease);
}
.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
}
.brand img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 16px var(--cyan-glow));
  transition: filter 0.3s var(--ease);
}
.brand:hover img {
  filter: drop-shadow(0 0 24px var(--cyan-glow));
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.03em;
  transition: all 0.25s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text-1);
  background: rgba(0, 240, 255, 0.06);
}
.site-nav a.is-active {
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--border);
}

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(10, 16, 32, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION STYLES — reduced padding
   ═══════════════════════════════════════════════════════ */
section { padding: 80px 0; position: relative; }

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-heading h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
  animation: heroFloat1 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.18), transparent 70%);
  animation: heroFloat2 10s ease-in-out infinite;
}
.hero-glow-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 163, 0.08), transparent 70%);
  animation: heroFloat3 12s ease-in-out infinite;
}
@keyframes heroFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes heroFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes heroFloat3 { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.15); } }

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { z-index: 2; }
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  margin: 20px 0 0;
}
.hero-title-line {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.hero-title-accent {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--text-1);
  text-shadow: 0 0 40px var(--cyan-glow), 0 0 80px rgba(138, 43, 226, 0.15);
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  margin: 28px 0 0;
  font-size: 1.12rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}
.hero-visual {
  display: grid;
  place-items: center;
  z-index: 1;
}
.hero-logo-orb {
  position: relative;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08), transparent 70%);
  animation: orbPulse 4s ease-in-out infinite;
  transition: box-shadow 0.5s var(--ease), filter 0.5s var(--ease);
}
.hero-logo-orb::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.15);
  animation: orbRing 6s linear infinite;
}
.hero-logo-orb::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(138, 43, 226, 0.1);
  animation: orbRing 8s linear infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0, 240, 255, 0.1), 0 0 120px rgba(0, 240, 255, 0.05); }
  50% { box-shadow: 0 0 80px rgba(0, 240, 255, 0.2), 0 0 160px rgba(0, 240, 255, 0.08); }
}
@keyframes orbRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── HERO MUSIC-REACTIVE ─── */
.hero-logo-orb.playing {
  animation: orbPulsePlaying 1.2s ease-in-out infinite;
}
.hero-logo-orb.playing::before {
  border-color: rgba(0, 240, 255, 0.4);
  animation: orbRing 3s linear infinite;
}
.hero-logo-orb.playing::after {
  border-color: rgba(138, 43, 226, 0.3);
  animation: orbRing 4s linear infinite reverse;
}
@keyframes orbPulsePlaying {
  0%, 100% {
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.25), 0 0 160px rgba(138, 43, 226, 0.12);
    filter: brightness(1);
  }
  25% {
    box-shadow: 0 0 100px rgba(0, 240, 255, 0.35), 0 0 200px rgba(138, 43, 226, 0.18);
    filter: brightness(1.1);
  }
  50% {
    box-shadow: 0 0 120px rgba(0, 240, 255, 0.4), 0 0 240px rgba(138, 43, 226, 0.2);
    filter: brightness(1.15);
  }
  75% {
    box-shadow: 0 0 90px rgba(224, 64, 251, 0.3), 0 0 180px rgba(0, 240, 255, 0.15);
    filter: brightness(1.05);
  }
}

.hero-logo-img {
  width: 88%;
  height: auto;
  filter: drop-shadow(0 0 30px var(--cyan-glow));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }
.btn-primary {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(138, 43, 226, 0.12));
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(138, 43, 226, 0.2));
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}
.btn-glow { box-shadow: var(--shadow-glow-cyan); }
.btn-glow:hover { box-shadow: 0 0 60px rgba(0, 240, 255, 0.3), 0 0 120px rgba(0, 240, 255, 0.1); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
  transform: translateY(-2px);
}
.btn-bounce {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.08));
  border-color: rgba(255, 107, 0, 0.35);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
}
.btn-bounce:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.15));
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════
   ARTIST SECTION
   ═══════════════════════════════════════════════════════ */
.artists-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.04), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(138, 43, 226, 0.04), transparent 50%),
    var(--void);
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.artist-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--void));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s var(--ease);
  position: relative;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}
.artist-card--siblynx:hover {
  box-shadow: var(--shadow-card), var(--shadow-glow-cyan);
}
.artist-card--bounce:hover {
  box-shadow: var(--shadow-card), var(--shadow-glow-orange);
}
.artist-card-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.artist-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.artist-card:hover .artist-card-visual img {
  transform: scale(1.05);
  filter: brightness(0.7);
}
.artist-card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 10, 0.3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.artist-card:hover .artist-card-overlay { opacity: 1; }
.play-btn {
  color: var(--text-1);
  transition: all 0.3s var(--ease);
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.play-btn:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.6));
}
.artist-card--bounce .play-btn {
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4));
}
.artist-card--bounce .play-btn:hover {
  filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.6));
}
.artist-card-info {
  padding: 28px;
}
.artist-card-info h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.artist-card--siblynx .artist-card-info h3 {
  text-shadow: 0 0 20px var(--cyan-glow);
}
.artist-card--bounce .artist-card-info h3 {
  text-shadow: 0 0 20px var(--orange-glow);
}
.artist-genre {
  font-size: 0.85rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.artist-tagline {
  font-size: 0.95rem;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 20px;
}
.artist-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   MUSIC PLAYER SECTION — "The Neon Console"
   ═══════════════════════════════════════════════════════ */
.player-section {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 240, 255, 0.05), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(138, 43, 226, 0.05), transparent 50%),
    var(--void);
}

/* Console container */
.player-console {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.8), rgba(5, 8, 22, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 80px rgba(0, 240, 255, 0.06);
  position: relative;
}
.player-console::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), var(--magenta), transparent);
  z-index: 2;
}

/* ─── Visualizer Panel (Left) ─── */
.player-viz-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(0, 240, 255, 0.04), transparent 70%);
  border-right: 1px solid var(--border);
}

.player-viz-container {
  position: relative;
  width: clamp(220px, 22vw, 320px);
  height: clamp(220px, 22vw, 320px);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}
.player-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.player-viz-logo {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 20px var(--cyan-glow));
  opacity: 0.85;
  transition: all 0.5s var(--ease);
  animation: vizLogoFloat 4s ease-in-out infinite;
}
.player-viz-logo.playing {
  opacity: 1;
  filter: drop-shadow(0 0 30px var(--cyan-glow)) drop-shadow(0 0 60px rgba(138, 43, 226, 0.3));
}
@keyframes vizLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.03); }
}

/* Now Playing info */
.player-now-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.player-np-label {
  font-family: "Orbitron", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  opacity: 0.7;
}
.player-track-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--text-1);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  text-align: center;
  line-height: 1.3;
}
.player-track-artist {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
}

/* ─── Track List Panel (Right) ─── */
.player-list-panel {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  max-height: 460px;
}
.player-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.06);
}
.player-list-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-2);
}
.player-track-count {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
}

/* Scrollable tracklist */
.player-tracklist {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
  scroll-behavior: smooth;
}
.player-tracklist::-webkit-scrollbar {
  width: 4px;
}
.player-tracklist::-webkit-scrollbar-track {
  background: transparent;
}
.player-tracklist::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.15);
  border-radius: 2px;
}
.player-tracklist::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 240, 255, 0.3);
}

/* Track item */
.player-track-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  border: 1px solid transparent;
}
.player-track-item:hover {
  background: rgba(0, 240, 255, 0.04);
  border-color: rgba(0, 240, 255, 0.08);
}
.player-track-item.is-active {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

/* Track number / playing indicator */
.player-track-num {
  width: 28px;
  min-width: 28px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
.player-track-item.is-active .player-track-num {
  color: var(--cyan);
}

/* Playing bars animation */
.player-track-bars {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  width: 28px;
  min-width: 28px;
  justify-content: center;
}
.player-track-item.is-active.is-playing .player-track-num { display: none; }
.player-track-item.is-active.is-playing .player-track-bars { display: flex; }

.player-track-bars span {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: var(--cyan);
  animation: barPulse 0.8s ease-in-out infinite;
}
.player-track-bars span:nth-child(1) { height: 60%; animation-delay: 0s; }
.player-track-bars span:nth-child(2) { height: 100%; animation-delay: 0.15s; }
.player-track-bars span:nth-child(3) { height: 40%; animation-delay: 0.3s; }
.player-track-bars span:nth-child(4) { height: 80%; animation-delay: 0.45s; }

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Track info in list */
.player-track-meta {
  flex: 1;
  min-width: 0;
}
.player-track-meta-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  transition: color 0.25s var(--ease);
}
.player-track-item.is-active .player-track-meta-title {
  color: var(--cyan);
}
.player-track-meta-artist {
  font-size: 0.72rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-top: 2px;
}

.player-track-duration {
  font-size: 0.72rem;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  min-width: 36px;
  text-align: right;
}

/* Loading state */
.player-tracklist-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--text-3);
  font-size: 0.85rem;
}
.player-loading-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 240, 255, 0.1);
  border-top-color: var(--cyan);
  animation: spinLoader 0.8s linear infinite;
}
@keyframes spinLoader {
  to { transform: rotate(360deg); }
}

/* ─── Player Controls Bar ─── */
.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-top: 16px;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, rgba(10, 16, 32, 0.8), rgba(5, 8, 22, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.player-controls-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.player-controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-ctrl-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.25s var(--ease);
}
.player-ctrl-btn:hover {
  color: var(--text-1);
  background: rgba(0, 240, 255, 0.06);
}
.player-ctrl-btn.is-active {
  color: var(--cyan);
}

/* Main play button */
.player-ctrl-play {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(138, 43, 226, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.player-ctrl-play:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(138, 43, 226, 0.15));
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  transform: scale(1.05);
  color: var(--cyan);
}

/* Progress bar */
.player-progress-area {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.player-time {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
}
.player-time:last-child { text-align: right; }

.player-progress {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.player-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.1s linear;
  position: relative;
}
.player-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  pointer-events: none;
}
.player-progress:hover .player-progress-thumb {
  opacity: 1;
}

/* Volume slider */
.player-vol-slider-wrap {
  width: 90px;
}
.player-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
}
.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}
.player-vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.player-vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: none;
  box-shadow: 0 0 8px var(--cyan-glow);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   INSIDE THE SIGNAL (BIOGRAPHIES)
   ═══════════════════════════════════════════════════════ */
.signal-section {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 240, 255, 0.03), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 0, 0.03), transparent 50%),
    var(--void);
}
.bio-block {
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(10, 16, 32, 0.6), rgba(2, 4, 10, 0.8));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.bio-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.bio-block--siblynx::before {
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
}
.bio-block--bounce::before {
  background: linear-gradient(90deg, transparent, var(--orange), #FF3D00, transparent);
}
.bio-block:last-child { margin-bottom: 0; }
.bio-header {
  margin-bottom: 32px;
}
.bio-header h3 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.bio-block--siblynx .bio-header h3 {
  text-shadow: 0 0 30px var(--cyan-glow);
}
.bio-block--bounce .bio-header h3 {
  text-shadow: 0 0 30px var(--orange-glow);
}
.bio-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.bio-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 20px;
}
.bio-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   STREAMING LINKS SECTION
   ═══════════════════════════════════════════════════════ */
.links-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0, 240, 255, 0.04), transparent 50%),
    var(--void);
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), var(--void));
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s var(--ease);
}
.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow-cyan);
}
.link-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan-dim);
  display: grid;
  place-items: center;
  color: var(--cyan);
  transition: all 0.3s var(--ease);
}
.link-card:hover .link-card-icon {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px var(--cyan-glow);
}
.link-card-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
}
.link-card-status {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.contact-section {
  padding-top: 64px;
  padding-bottom: 72px;
}
.contact-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.btn-email {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--void);
  background: var(--cyan);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 0 16px var(--cyan-glow);
}
.btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--cyan-glow), 0 0 60px rgba(0, 240, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════
   FOOTER — Upgraded 3-column layout
   ═══════════════════════════════════════════════════════ */
.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid rgba(0, 240, 255, 0.06);
  background: linear-gradient(180deg, var(--void), #010208);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.footer-brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px var(--cyan-glow));
  opacity: 0.7;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-3);
  font-style: italic;
}
.footer-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-3);
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover {
  color: var(--cyan);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  color: var(--cyan);
  border-color: var(--border-hover);
  background: var(--cyan-dim);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-top {
  font-size: 0.8rem;
  color: var(--cyan);
  transition: opacity 0.3s var(--ease);
}
.footer-top:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   LABEL RADIO
   ═══════════════════════════════════════════════════════ */
.label-radio-section {
  padding-top: 24px;
  padding-bottom: 56px;
}

.label-radio-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.label-radio-module {
  margin-top: 14px;
  min-width: min(980px, 100%);
  max-width: 1180px;
  border-radius: 26px;
  background: #07111f;
  border: 1px solid rgba(39, 215, 255, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 10px 26px rgba(39, 215, 255, 0.1);
  padding: 24px;
}

.label-radio-content {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 28px;
}

.label-radio-now,
.label-radio-list-panel {
  background: rgba(13, 24, 40, 0.9);
  border: 1px solid rgba(39, 215, 255, 0.2);
  border-radius: 18px;
}

.label-radio-now {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.label-radio-list-panel {
  min-height: 100%;
  padding: 20px 20px 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.label-radio-live-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.label-radio-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b57;
  box-shadow: 0 0 12px rgba(255, 59, 87, 0.8);
}

.label-radio-live-text {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #ff6d81;
}

.label-radio-section {
  --radio-progress: 0;
  --core-rotation: 0deg;
  --eq-intensity: 0.45;
}

.label-radio-now-main {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 14px;
}

.label-radio-visualizer {
  width: 96px;
  position: relative;
}

.radio-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  position: relative;
  opacity: 0.82;
  transform: scale(1);
  transition: opacity 220ms ease, box-shadow 220ms ease;
  background:
    radial-gradient(circle at 35% 32%, rgba(39, 215, 255, 0.38), rgba(5, 18, 35, 0.96) 60%),
    radial-gradient(circle at 50% 56%, rgba(2, 14, 29, 0.95), rgba(1, 8, 17, 0.98));
  border: 1px solid rgba(39, 215, 255, 0.55);
  box-shadow: inset 0 0 22px rgba(39, 215, 255, 0.38), 0 0 24px rgba(39, 215, 255, 0.28);
}

.radio-core::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from var(--core-rotation), rgba(39, 215, 255, 0.56), transparent 38%, transparent 80%, rgba(39, 215, 255, 0.46));
  mask: radial-gradient(circle, transparent 66%, #000 67%);
  pointer-events: none;
}

.label-radio-section.is-playing .radio-core {
  opacity: 0.96;
}

.label-radio-section.is-muted .radio-core {
  opacity: 0.7;
  box-shadow: inset 0 0 14px rgba(39, 215, 255, 0.18), 0 0 12px rgba(39, 215, 255, 0.16);
}

.label-radio-now-copy {
  min-width: 0;
  position: relative;
  max-width: 440px;
  padding-bottom: 22px;
}

.label-radio-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  color: #eef5ff;
}

.label-radio-subtitle {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
  color: #8292af;
}


.label-radio-links {
  margin-top: 14px;
}

.label-radio-links-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8292af;
  margin-bottom: 10px;
}

.label-radio-links-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.label-radio-link-chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(39, 215, 255, 0.32);
  background: rgba(9, 24, 40, 0.62);
  color: #d9e9ff;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, color 180ms ease;
}

.label-radio-link-chip:hover {
  border-color: rgba(39, 215, 255, 0.72);
  box-shadow: 0 0 12px rgba(39, 215, 255, 0.2);
  color: #eef7ff;
  transform: translateY(-1px);
}

.label-radio-link-chip:focus-visible {
  outline: 2px solid #27d7ff;
  outline-offset: 2px;
  border-color: rgba(39, 215, 255, 0.82);
}
.radio-eq-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  max-width: 100%;
  opacity: calc(0.45 + (var(--eq-intensity) * 0.35));
  filter: brightness(calc(0.88 + (var(--eq-intensity) * 0.18)));
  transition: opacity 180ms ease;
  pointer-events: none;
}

.eq-bar {
  width: 4px;
  height: 12px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #27d7ff 0%, #0ca9c6 100%);
  opacity: 0.45;
}

.eq-bar:nth-child(4n + 1) { height: 10px; }
.eq-bar:nth-child(4n + 2) { height: 11px; }
.eq-bar:nth-child(4n + 3) { height: 13px; }
.eq-bar:nth-child(4n + 4) { height: 14px; }

.label-radio-section.is-paused .eq-bar,
.label-radio-section:not(.is-playing) .eq-bar {
  opacity: 0.45;
}

@keyframes eqPulseA { 0%,100%{height:10px;} 45%{height:38px;} 70%{height:18px;} }
@keyframes eqPulseB { 0%,100%{height:12px;} 30%{height:26px;} 60%{height:42px;} }
@keyframes eqPulseC { 0%,100%{height:14px;} 25%{height:34px;} 55%{height:16px;} }
@keyframes eqPulseD { 0%,100%{height:11px;} 40%{height:28px;} 75%{height:40px;} }
@keyframes eqPulseE { 0%,100%{height:13px;} 35%{height:20px;} 65%{height:36px;} }
@keyframes eqPulseF { 0%,100%{height:10px;} 32%{height:22px;} 58%{height:30px;} }



@media (prefers-reduced-motion: no-preference) {
  .label-radio-section.is-playing .radio-core {
    animation: radioCorePulse 2200ms ease-in-out infinite;
  }

  .label-radio-section.is-playing .eq-bar:nth-child(6n + 1) { animation: eqPulseA 900ms ease-in-out infinite; }
  .label-radio-section.is-playing .eq-bar:nth-child(6n + 2) { animation: eqPulseB 1280ms ease-in-out infinite; }
  .label-radio-section.is-playing .eq-bar:nth-child(6n + 3) { animation: eqPulseC 760ms ease-in-out infinite; }
  .label-radio-section.is-playing .eq-bar:nth-child(6n + 4) { animation: eqPulseD 1120ms ease-in-out infinite; }
  .label-radio-section.is-playing .eq-bar:nth-child(6n + 5) { animation: eqPulseE 1400ms ease-in-out infinite; }
  .label-radio-section.is-playing .eq-bar:nth-child(6n + 6) { animation: eqPulseF 700ms ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  .radio-core,
  .eq-bar {
    animation: none !important;
  }

  .eq-bar {
    height: 14px;
    opacity: 0.55;
  }
}

@keyframes radioCorePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
.label-radio-list-panel h3 {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfeaff;
  margin-bottom: 2px;
}

.label-radio-list {
  max-height: 296px;
  min-height: 296px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}

.label-radio-track {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(39, 215, 255, 0.16);
  background: rgba(8, 20, 38, 0.85);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e4eefc;
  font-size: 17px;
}

.label-radio-track-icon {
  color: #27d7ff;
  opacity: 0;
  min-width: 14px;
  text-align: right;
  transition: opacity 0.2s ease;
}

.label-radio-track-icon.is-live {
  letter-spacing: -1px;
}

.label-radio-track-icon.is-paused {
  font-size: 1rem;
}

.label-radio-track.is-active {
  border-color: rgba(39, 215, 255, 0.72);
  background: rgba(21, 42, 74, 0.95);
  box-shadow: inset 0 0 0 1px rgba(39, 215, 255, 0.2);
}

.label-radio-track.is-active .label-radio-track-icon {
  opacity: 1;
}

.label-radio-progress-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
  color: #9eb0cd;
  font-size: 0.8rem;
  border-top: 1px solid rgba(39, 215, 255, 0.16);
  padding-top: 14px;
}

#label-radio-seek {
  width: 100%;
  accent-color: #27d7ff;
}

.label-radio-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.label-radio-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(39, 215, 255, 0.26);
  background: rgba(9, 24, 40, 0.85);
  color: #d9e9ff;
}

#label-radio-play {
  width: 56px;
  height: 56px;
  border-color: rgba(39, 215, 255, 0.58);
  box-shadow: 0 0 14px rgba(39, 215, 255, 0.25);
}

.label-radio-controls button.is-on {
  color: #27d7ff;
  border-color: rgba(39, 215, 255, 0.72);
}

.label-radio-controls button:focus-visible,
.label-radio-track:focus-visible,
#label-radio-seek:focus-visible {
  outline: 2px solid #27d7ff;
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .label-radio-wrap {
    width: min(1180px, calc(100% - 40px));
  }

  .label-radio-module {
    min-width: 100%;
    padding: 18px;
  }

  .label-radio-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-radio-list-panel {
    min-height: 0;
  }

  .label-radio-list {
    min-height: 232px;
    max-height: 260px;
  }

  .radio-eq-strip {
    max-width: 160px;
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .label-radio-section {
    padding-top: 16px;
    padding-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .label-radio-now-main {
    grid-template-columns: 72px 1fr;
  }

  .label-radio-visualizer,
  .radio-core {
    width: 72px;
    height: 72px;
  }

  .radio-eq-strip {
    max-width: 120px;
    gap: 3px;
  }

  .label-radio-links-row {
    row-gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-orb { width: 200px; height: 200px; }
  .artist-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .player-console { grid-template-columns: 1fr; }
  .player-viz-panel { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .player-list-panel { max-height: 320px; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: rgba(5, 8, 22, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s var(--ease);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mini-player {
    left: 16px;
    right: 16px;
    max-width: none;
    width: auto;
  }
}

@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  section { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 48px 0; }
  .player-progress-area { order: 3; flex-basis: 100%; }
  .player-ctrl-play { width: 44px; height: 44px; min-width: 44px; }
  .player-vol-slider-wrap { width: 60px; }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-block { padding: 28px; }
  .entry-buttons { flex-direction: column; align-items: center; }
  .entry-btn { width: 100%; max-width: 280px; justify-content: center; }
  .mini-player { bottom: 12px; left: 12px; right: 12px; padding: 8px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
