/* =============================================
   CIRCUIT BREAKER RECORDS
   Retro-Futuristic / Lo-Fi Sci-Fi
   ============================================= */

/* --- Custom Properties --- */
:root {
  --bg: #0a0e1a;
  --bg-light: #0f1424;
  --bg-card: #111729;
  --cyan: #00ffd5;
  --cyan-dim: rgba(0, 255, 213, 0.15);
  --cyan-glow: rgba(0, 255, 213, 0.4);
  --amber: #ff6b2b;
  --amber-dim: rgba(255, 107, 43, 0.15);
  --amber-glow: rgba(255, 107, 43, 0.4);
  --text: #e0e0e0;
  --text-dim: #8892a4;
  --heading-font: 'Share Tech Mono', monospace;
  --body-font: 'Space Mono', monospace;
  --max-width: 1200px;
  --nav-height: 60px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--cyan-glow);
}

img { max-width: 100%; }

/* --- Scanlines Overlay --- */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}

/* --- Starfield --- */
.starfield {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 4s infinite ease-in-out;
}

.star-1  { top: 8%;  left: 12%; animation-delay: 0s; }
.star-2  { top: 15%; left: 85%; animation-delay: 0.5s; }
.star-3  { top: 25%; left: 45%; animation-delay: 1s; }
.star-4  { top: 35%; left: 70%; animation-delay: 1.5s; }
.star-5  { top: 5%;  left: 55%; animation-delay: 2s; }
.star-6  { top: 45%; left: 20%; animation-delay: 0.3s; }
.star-7  { top: 55%; left: 90%; animation-delay: 0.8s; }
.star-8  { top: 65%; left: 35%; animation-delay: 1.3s; }
.star-9  { top: 75%; left: 60%; animation-delay: 1.8s; }
.star-10 { top: 85%; left: 15%; animation-delay: 2.3s; }
.star-11 { top: 10%; left: 30%; animation-delay: 0.7s; width: 1px; height: 1px; }
.star-12 { top: 20%; left: 75%; animation-delay: 1.2s; width: 1px; height: 1px; }
.star-13 { top: 30%; left: 10%; animation-delay: 1.7s; width: 1px; height: 1px; }
.star-14 { top: 40%; left: 50%; animation-delay: 2.2s; width: 1px; height: 1px; }
.star-15 { top: 50%; left: 80%; animation-delay: 0.2s; width: 1px; height: 1px; }
.star-16 { top: 60%; left: 5%;  animation-delay: 0.9s; width: 3px; height: 3px; }
.star-17 { top: 70%; left: 42%; animation-delay: 1.4s; width: 1px; height: 1px; }
.star-18 { top: 80%; left: 68%; animation-delay: 1.9s; width: 1px; height: 1px; }
.star-19 { top: 90%; left: 25%; animation-delay: 2.4s; width: 1px; height: 1px; }
.star-20 { top: 3%;  left: 95%; animation-delay: 0.4s; width: 1px; height: 1px; }
.star-21 { top: 12%; left: 62%; animation-delay: 2.1s; }
.star-22 { top: 22%; left: 3%;  animation-delay: 0.6s; }
.star-23 { top: 38%; left: 88%; animation-delay: 1.1s; }
.star-24 { top: 48%; left: 38%; animation-delay: 1.6s; width: 1px; height: 1px; }
.star-25 { top: 58%; left: 52%; animation-delay: 2.0s; width: 1px; height: 1px; }
.star-26 { top: 68%; left: 78%; animation-delay: 0.1s; }
.star-27 { top: 78%; left: 8%;  animation-delay: 0.85s; width: 1px; height: 1px; }
.star-28 { top: 88%; left: 48%; animation-delay: 1.35s; }
.star-29 { top: 95%; left: 72%; animation-delay: 1.85s; width: 1px; height: 1px; }
.star-30 { top: 2%;  left: 40%; animation-delay: 2.35s; width: 3px; height: 3px; }

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.6; }
}

/* --- Navigation --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 213, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--heading-font);
  font-size: 20px;
  color: var(--cyan);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 12px var(--cyan-glow);
}

.nav-logo:hover {
  color: var(--cyan);
}

.nav-icon {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan-glow);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
}

.hero-illustration {
  margin: 0 auto 30px;
  max-width: 200px;
}

.svg-robot-headphones {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px var(--cyan-glow));
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.title-circuit {
  display: block;
  color: var(--cyan);
  text-shadow:
    0 0 20px var(--cyan-glow),
    0 0 40px rgba(0, 255, 213, 0.2);
}

.title-breaker {
  display: block;
  color: var(--amber);
  text-shadow:
    0 0 20px var(--amber-glow),
    0 0 40px rgba(255, 107, 43, 0.2);
}

.title-records {
  display: block;
  color: var(--text);
  font-size: 0.4em;
  letter-spacing: 12px;
  text-transform: uppercase;
  opacity: 0.7;
}

.hero-tagline {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: var(--cyan);
  margin-bottom: 28px;
  letter-spacing: 1px;
  min-height: 1.7em;
}

.hero-quote {
  font-style: italic;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.8;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.icon-inline {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  opacity: 0.7;
}

/* --- LEDs --- */
.led {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.led-on {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan), 0 0 12px var(--cyan-glow);
  animation: led-pulse 2s infinite;
}

.led-small {
  width: 6px;
  height: 6px;
}

@keyframes led-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Blink animations for SVGs --- */
.blink-led {
  animation: blink 1.5s infinite;
}

.blink-led-slow {
  animation: blink 3s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Floating music notes */
.float-note {
  animation: floatUp 3s infinite ease-in-out;
}
.float-note-2 {
  animation: floatUp 3s infinite ease-in-out 1s;
}
.float-note-3 {
  animation: floatUp 3s infinite ease-in-out 2s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-8px); opacity: 0.8; }
}

/* VU needle animation */
.vu-needle {
  transform-origin: bottom center;
  animation: vuSweep 2s infinite ease-in-out;
}

@keyframes vuSweep {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

/* --- Circuit Dividers --- */
.circuit-divider {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.divider-svg {
  width: 100%;
  height: 30px;
}

/* --- Sections --- */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

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

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 48px;
  text-shadow: 0 0 20px rgba(0, 255, 213, 0.15);
}

.section-label {
  display: block;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 3px;
  margin-bottom: 8px;
  opacity: 0.7;
}

/* --- Artist Cards --- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.artist-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.12);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.artist-card:hover {
  border-color: rgba(0, 255, 213, 0.35);
  box-shadow: 0 0 20px rgba(0, 255, 213, 0.08), inset 0 0 30px rgba(0, 255, 213, 0.02);
  transform: translateY(-2px);
}

/* Card corners — tech/sci-fi detail */
.card-corner {
  position: absolute;
  width: 12px;
  height: 12px;
}

.card-corner-tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.card-corner-tr {
  top: -1px; right: -1px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.card-corner-bl {
  bottom: -1px; left: -1px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.card-corner-br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.artist-card-illustration {
  margin-bottom: 16px;
}

.artist-card-illustration svg {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.artist-designation {
  display: block;
  font-family: var(--heading-font);
  font-size: 10px;
  color: var(--amber);
  letter-spacing: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.artist-name {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.artist-desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}

.artist-link {
  font-family: var(--heading-font);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--amber);
}

.artist-link:hover {
  color: #ffaa77;
  text-shadow: 0 0 8px var(--amber-glow);
}

/* --- Release Cards --- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.release-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.release-card:hover {
  border-color: rgba(0, 255, 213, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.06);
  transform: translateY(-2px);
}

.release-art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.release-info {
  padding: 14px 16px 18px;
}

.release-info h3 {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.release-artist {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.release-note {
  font-size: 11px;
  color: var(--amber);
  margin-bottom: 8px;
  font-style: italic;
}

.release-link {
  font-family: var(--heading-font);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--cyan);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.release-link:hover {
  opacity: 1;
}

/* --- Song Club --- */
.songclub-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.songclub-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 32px;
}

/* VU Bars */
.vu-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.vu-bar {
  width: 8px;
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  animation: vuBar 1.2s infinite ease-in-out;
  box-shadow: 0 0 6px var(--cyan-glow);
}

.vu-bar:nth-child(1)  { animation-delay: 0s;    height: 20px; }
.vu-bar:nth-child(2)  { animation-delay: 0.1s;  height: 30px; }
.vu-bar:nth-child(3)  { animation-delay: 0.2s;  height: 22px; }
.vu-bar:nth-child(4)  { animation-delay: 0.3s;  height: 38px; }
.vu-bar:nth-child(5)  { animation-delay: 0.15s; height: 28px; }
.vu-bar:nth-child(6)  { animation-delay: 0.25s; height: 44px; }
.vu-bar:nth-child(7)  { animation-delay: 0.35s; height: 32px; }
.vu-bar:nth-child(8)  { animation-delay: 0.05s; height: 26px; }
.vu-bar:nth-child(9)  { animation-delay: 0.2s;  height: 36px; }
.vu-bar:nth-child(10) { animation-delay: 0.3s;  height: 18px; }
.vu-bar:nth-child(11) { animation-delay: 0.1s;  height: 24px; }
.vu-bar:nth-child(12) { animation-delay: 0.25s; height: 14px; }

/* Color gradient on VU bars — green to amber to red */
.vu-bar:nth-child(n+8) {
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber-glow);
}

.vu-bar:nth-child(n+11) {
  background: #ff3333;
  box-shadow: 0 0 6px rgba(255, 51, 51, 0.4);
}

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

.svg-satellite {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 10px var(--cyan-glow));
}

.songclub-subtitle {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.volume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.volume-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.1);
  border-radius: 3px;
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.volume-card:hover {
  border-color: rgba(0, 255, 213, 0.3);
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.06);
}

.volume-number {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
  line-height: 1;
  margin-bottom: 6px;
}

.volume-label {
  font-family: var(--heading-font);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.songclub-extras {
  color: var(--text-dim);
  font-size: 13px;
}

.songclub-extras em {
  color: var(--text);
}

/* --- About --- */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-quote {
  font-style: italic;
  color: var(--text-dim);
  border-left: 3px solid var(--amber);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-contact a {
  color: var(--amber);
}

.about-contact a:hover {
  color: #ffaa77;
  text-shadow: 0 0 8px var(--amber-glow);
}

.svg-reel {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 10px var(--cyan-glow));
}

/* --- Mailing List / Signup --- */
.signup {
  padding-bottom: 100px;
}

.signup-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.signup-text {
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 15px;
}

.control-panel {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.2);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}

.control-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 255, 213, 0.04);
  border-bottom: 1px solid rgba(0, 255, 213, 0.1);
}

.control-panel-label {
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2px;
}

.control-panel-body {
  padding: 20px 16px;
}

.control-label {
  display: block;
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.input-row {
  display: flex;
  gap: 8px;
}

.control-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 213, 0.2);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--cyan);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.control-input::placeholder {
  color: var(--text-dim);
  opacity: 0.5;
}

.control-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow), inset 0 0 10px rgba(0, 255, 213, 0.05);
}

.control-button {
  background: rgba(0, 255, 213, 0.1);
  border: 1px solid var(--cyan);
  border-radius: 3px;
  padding: 10px 20px;
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--cyan);
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.control-button:hover {
  background: rgba(0, 255, 213, 0.2);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.control-panel-footer {
  padding: 8px 16px;
  border-top: 1px solid rgba(0, 255, 213, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.control-readout {
  font-family: var(--heading-font);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
  animation: cursorBlink 1s infinite step-end;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  text-align: center;
}

.footer-circuit {
  margin-bottom: 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-links {
  margin-bottom: 16px;
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-links a {
  color: var(--text-dim);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-sep {
  color: var(--text-dim);
  opacity: 0.4;
  margin: 0 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.6;
  margin-bottom: 4px;
}

.footer-tagline {
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 2px;
  opacity: 0.5;
}

/* =============================================
   ARTIST PAGE STYLES
   ============================================= */

/* --- Clickable Artist Cards (main page) --- */
.artist-card {
  cursor: pointer;
}

.artist-card .artist-link {
  position: static;
}

.artist-card .artist-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* --- Artist Hero --- */
.artist-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.artist-hero-content {
  max-width: 800px;
}

.artist-hero-illustration {
  margin: 0 auto 24px;
  max-width: 180px;
}

.artist-hero-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px var(--cyan-glow));
}

.artist-hero-name {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0, 255, 213, 0.2);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.artist-hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.artist-hero .status-indicator {
  margin-bottom: 24px;
}

/* --- External Link Buttons (pill style) --- */
.artist-external-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heading-font);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--cyan);
  border: 1px solid rgba(0, 255, 213, 0.3);
  border-radius: 20px;
  padding: 6px 16px;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.pill-link:hover {
  background: rgba(0, 255, 213, 0.1);
  box-shadow: 0 0 12px var(--cyan-glow);
  color: #fff;
}

.pill-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* --- LED States --- */
.led-amber {
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber), 0 0 12px var(--amber-glow);
  animation: led-pulse-amber 2s infinite;
}

@keyframes led-pulse-amber {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.led-off {
  background: var(--text-dim);
  box-shadow: none;
  opacity: 0.4;
}

/* --- Artist Bio Section --- */
.artist-bio {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.artist-bio p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text);
}

/* --- Music Embed Section --- */
.music-embed {
  max-width: 700px;
  margin: 0 auto 24px;
}

.music-embed iframe {
  width: 100%;
  border: 0;
}

.music-links {
  text-align: center;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* --- Video Grid (fallback / no-JS) --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.1);
  border-radius: 3px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Video Navigator (single player + controls) --- */
.video-navigator {
  max-width: 800px;
  margin: 0 auto;
}

.video-navigator .video-wrapper {
  border: 2px solid rgba(0, 255, 213, 0.25);
  border-radius: 6px;
  background: var(--bg-card);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.06), inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.video-nav-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.video-nav-btn {
  background: rgba(0, 255, 213, 0.1);
  border: 1px solid var(--cyan);
  border-radius: 3px;
  padding: 8px 18px;
  font-family: var(--heading-font);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.video-nav-btn:hover {
  background: rgba(0, 255, 213, 0.2);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.video-nav-counter {
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  min-width: 100px;
  text-align: center;
}

.video-nav-title {
  text-align: center;
  margin-top: 10px;
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--text);
  letter-spacing: 1px;
}

/* --- Merch Grid --- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.1);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.merch-card:hover {
  border-color: rgba(0, 255, 213, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.06);
}

.merch-card h3 {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.merch-card p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

/* --- Tour Date List --- */
.tour-list {
  max-width: 700px;
  margin: 0 auto;
}

.tour-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 255, 213, 0.08);
}

.tour-date {
  font-family: var(--heading-font);
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-right: 20px;
}

.tour-venue {
  font-size: 14px;
  color: var(--text);
  text-align: right;
}

.tour-empty {
  text-align: center;
  padding: 32px 0;
}

.tour-empty .led {
  display: inline-block;
  margin-right: 8px;
}

.tour-empty p {
  color: var(--text-dim);
  font-family: var(--heading-font);
  font-size: 13px;
  letter-spacing: 2px;
}

/* --- Artist Section Spacing --- */
.artist-section {
  padding: 60px 0;
}

/* --- Featured Video (Now Screening) --- */
.screening-room {
  max-width: 800px;
  margin: 0 auto;
}

.monitor-frame {
  border: 2px solid rgba(0, 255, 213, 0.25);
  border-radius: 6px;
  padding: 6px;
  background: var(--bg-card);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.06), inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.monitor-frame .video-wrapper {
  border: none;
  border-radius: 3px;
}

.screening-info {
  text-align: center;
  margin-top: 16px;
}

.screening-title {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--text);
  letter-spacing: 1px;
}

.screening-artist {
  font-family: var(--heading-font);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- Circuit Breaker Radio --- */
.radio-section .control-panel {
  max-width: 600px;
  margin: 0 auto;
}

.radio-frequency {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--cyan-glow);
  margin-bottom: 16px;
  min-height: 1.5em;
  text-align: center;
}

.radio-embed {
  margin-bottom: 16px;
}

.radio-embed iframe {
  width: 100%;
  border: 0;
}

.radio-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.radio-controls .control-button {
  min-width: 80px;
  text-align: center;
}

.radio-readout {
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-align: center;
}

.radio-spotify {
  text-align: center;
  margin-top: 16px;
  font-family: var(--heading-font);
  font-size: 11px;
  letter-spacing: 1px;
}

/* --- Discography Grid (Artist Pages) --- */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.discography-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 213, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.discography-card:hover {
  border-color: rgba(0, 255, 213, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 213, 0.06);
  transform: translateY(-2px);
  color: #fff;
}

.discography-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0, 255, 213, 0.1);
}

.discography-title {
  display: block;
  font-family: var(--heading-font);
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.5px;
  padding: 8px 8px 2px;
  line-height: 1.3;
}

.discography-year {
  display: block;
  font-family: var(--heading-font);
  font-size: 10px;
  color: var(--text-dim);
  padding: 0 8px 8px;
  letter-spacing: 1px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 255, 213, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-illustration {
    max-width: 160px;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

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

  .discography-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }

  .songclub-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .songclub-illustration {
    order: -1;
  }

  .svg-satellite {
    max-width: 200px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-illustration {
    order: -1;
    text-align: center;
  }

  .svg-reel {
    max-width: 180px;
  }

  .volume-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .input-row {
    flex-direction: column;
  }

  .artist-hero-illustration {
    max-width: 140px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .tour-item {
    flex-direction: column;
    gap: 4px;
  }

  .tour-venue {
    text-align: left;
  }

  .radio-controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 2px;
  }

  .title-records {
    letter-spacing: 6px;
  }

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

  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .release-info h3 {
    font-size: 12px;
  }

  .release-artist {
    font-size: 11px;
  }

  .section {
    padding: 60px 0;
  }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
