/* ================================================================
   REVOLUTION RADIO — STEAMPUNK RETRO-TECH THEME
   Pure CSS — No build tools or Node.js required
   ================================================================ */

/* ============ CSS VARIABLES ============ */
:root {
  /* Core palette */
  --bg-darkest: #0a0604;
  --bg-dark: #1a0e05;
  --bg-medium: #2a1a0a;
  --bg-panel: #1e120a;

  /* Metals */
  --brass: #b8860b;
  --brass-light: #d4a017;
  --brass-dark: #8b6914;
  --copper: #b87333;
  --copper-dark: #8b5a2b;
  --gold: #ffd700;
  --gold-dim: #c5a000;
  --bronze: #cd7f32;
  --iron: #4a4a4a;
  --iron-dark: #2a2a2a;
  --rust: #8b4513;
  --rust-light: #a0522d;

  /* Extended metallics */
  --silver: #c0c0c0;
  --silver-light: #e0e0e0;
  --silver-dark: #808080;
  --rose-gold: #e8b4b8;
  --rose-gold-dark: #b76e79;
  --titanium: #6699cc;
  --titanium-light: #88bbee;
  --titanium-dark: #4477aa;
  --emerald-chrome: #50c878;
  --emerald-dark: #2e8b57;
  --violet-steel: #9370db;
  --violet-light: #b8a9e8;
  --violet-dark: #6a4fb5;
  --chrome-blue: #4fc3f7;
  --chrome-blue-dark: #2196f3;
  --platinum: #e5e4e2;

  /* Accents */
  --amber-glow: #ff8c00;
  --amber-soft: rgba(255, 140, 0, 0.3);
  --ember: #ff4500;
  --green-glow: #39ff14;
  --green-dim: #1a6b0a;
  --cream: #e8d5b7;
  --parchment: #d4c5a9;
  --parchment-dark: #b8a88a;

  /* Typography */
  --font-display: 'Cinzel Decorative', 'Georgia', serif;
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Playfair Display', 'Georgia', serif;
  --font-accent: 'MedievalSharp', cursive;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-darkest);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Rust texture overlay on entire page — with subtle color */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    ),
    radial-gradient(ellipse at 15% 20%, rgba(57,255,20,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 15%, rgba(255,140,0,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 50%, rgba(147,112,219,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(79,195,247,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(232,180,184,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0,188,212,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 30% 90%, rgba(88,101,242,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 10% 80%, rgba(80,200,120,0.04) 0%, transparent 35%),
    radial-gradient(ellipse at 90% 60%, rgba(183,110,121,0.05) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}

/* ============ STEAM PARTICLES ============ */
.steam-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.steam-particle {
  position: absolute;
  bottom: -20px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: steamRise linear infinite;
}

@keyframes steamRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(40px) scale(3);
    opacity: 0;
  }
}

/* ============ BACKGROUND GEARS ============ */
.bg-gears {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-gear {
  position: absolute;
  color: rgba(184, 134, 11, 0.04);
  filter: blur(1px);
}

.bg-gear-1 { width: 300px; top: 5%; left: -50px; animation: gearSpin 60s linear infinite; }
.bg-gear-2 { width: 200px; top: 3%; left: 180px; animation: gearSpinReverse 45s linear infinite; }
.bg-gear-3 { width: 400px; top: 30%; right: -100px; animation: gearSpin 80s linear infinite; }
.bg-gear-4 { width: 150px; top: 50%; left: 10%; animation: gearSpinReverse 35s linear infinite; }
.bg-gear-5 { width: 350px; bottom: 10%; left: 20%; animation: gearSpin 70s linear infinite; }
.bg-gear-6 { width: 120px; top: 15%; right: 15%; animation: gearSpinReverse 25s linear infinite; }
.bg-gear-7 { width: 100px; bottom: 30%; right: 5%; animation: gearSpin 30s linear infinite; }
.bg-gear-8 { width: 250px; bottom: -50px; right: 30%; animation: gearSpinReverse 55s linear infinite; }

@keyframes gearSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes gearSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ============ NAVIGATION ============ */
.steampunk-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,6,4,0.97) 0%, rgba(26,14,5,0.95) 100%);
  border-bottom: 2px solid var(--titanium-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8), inset 0 -1px 0 rgba(102,153,204,0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--silver-light) 0%, var(--chrome-blue) 25%, var(--silver) 50%, var(--rose-gold) 75%, var(--titanium-light) 100%);
  background-size: 200% 100%;
  animation: navBrandShift 6s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes navBrandShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.nav-logo-wrap {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--titanium);
  box-shadow:
    0 0 10px rgba(102,153,204,0.4),
    0 0 20px rgba(102,153,204,0.15),
    inset 0 0 8px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.nav-logo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.25) contrast(1.15) brightness(0.95);
}

.nav-logo-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,215,0,0.15) 0%, transparent 60%),
    radial-gradient(circle, transparent 55%, rgba(10,6,4,0.5) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--parchment);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--chrome-blue), var(--silver-light), var(--rose-gold));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--chrome-blue);
  border-color: rgba(79,195,247,0.3);
  text-shadow: 0 0 10px rgba(79,195,247,0.5);
}

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

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--brass);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10,6,4,0.98);
    border-bottom: 2px solid var(--brass-dark);
    padding: 1rem;
    gap: 0;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(184,134,11,0.1);
  }
}

/* ============ HERO / TITLE SCREEN ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
  z-index: 2;

  /* Rust metal background inspired by image 3 */
  background:
    radial-gradient(ellipse at 30% 40%, rgba(139,69,19,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(184,115,51,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(42,26,10,0.9) 0%, rgba(10,6,4,1) 100%);
}

/* Rust texture simulation */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    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.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}



/* ============ HERO GEARS ============ */
.hero-gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-gear {
  position: absolute;
  color: rgba(184, 134, 11, 0.12);
  filter: drop-shadow(0 0 3px rgba(184,134,11,0.1));
}

.hero-gear-1 {
  width: 250px;
  top: 10%;
  left: -30px;
  animation: gearSpin 20s linear infinite;
}
.hero-gear-2 {
  width: 140px;
  top: 8%;
  left: 175px;
  animation: gearSpinReverse 12s linear infinite;
}
.hero-gear-3 {
  width: 300px;
  bottom: 5%;
  right: -60px;
  animation: gearSpin 25s linear infinite;
}
.hero-gear-4 {
  width: 120px;
  bottom: 15%;
  right: 190px;
  animation: gearSpinReverse 10s linear infinite;
}
.hero-gear-5 {
  width: 180px;
  top: 50%;
  left: 5%;
  animation: gearSpin 18s linear infinite;
  opacity: 0.6;
}
.hero-gear-6 {
  width: 100px;
  top: 55%;
  left: calc(5% + 140px);
  animation: gearSpinReverse 9s linear infinite;
  opacity: 0.6;
}

/* ============ EDISON LIGHT BULBS ============ */
.edison-lights {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  display: flex;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
}

.edison-bulb {
  position: relative;
  width: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Wire */
.edison-bulb::before {
  content: '';
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--iron-dark), var(--iron));
  box-shadow: 1px 0 0 rgba(255,255,255,0.05);
}

/* Bulb base */
.edison-bulb::after {
  content: '';
  width: 14px;
  height: 10px;
  background: linear-gradient(180deg, var(--brass), var(--brass-dark));
  border-radius: 2px 2px 1px 1px;
}

.bulb-glow {
  width: 22px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(255,180,50,0.9) 0%, rgba(255,140,0,0.4) 40%, transparent 70%);
  border-radius: 50% 50% 45% 45%;
  position: relative;
  border: 1px solid rgba(255,200,100,0.2);
  box-shadow:
    0 0 15px rgba(255,140,0,0.6),
    0 0 40px rgba(255,140,0,0.3),
    0 0 80px rgba(255,140,0,0.15);
  animation: bulbFlicker 3s ease-in-out infinite;
}

.bulb-filament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 12px;
  border: 1px solid rgba(255,200,100,0.6);
  border-radius: 30%;
  background: rgba(255,180,50,0.3);
}

.bulb-1 .bulb-glow { animation-delay: 0s; }
.bulb-2 .bulb-glow { animation-delay: 0.7s; }
.bulb-3 .bulb-glow { animation-delay: 1.4s; }
.bulb-4 .bulb-glow { animation-delay: 0.3s; }
.bulb-5 .bulb-glow { animation-delay: 2.1s; }

@keyframes bulbFlicker {
  0%, 100% { opacity: 1; box-shadow: 0 0 15px rgba(255,140,0,0.6), 0 0 40px rgba(255,140,0,0.3), 0 0 80px rgba(255,140,0,0.15); }
  5% { opacity: 0.85; }
  10% { opacity: 1; }
  47% { opacity: 1; }
  50% { opacity: 0.92; box-shadow: 0 0 10px rgba(255,140,0,0.4), 0 0 30px rgba(255,140,0,0.2), 0 0 60px rgba(255,140,0,0.1); }
  53% { opacity: 1; }
  80% { opacity: 0.95; }
}

/* ============ TITLE PLATE (Image 3 inspired) ============ */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

/* ============ HERO TITLE IMAGE ============ */
.hero-title-image-wrap {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-title-image {
  width: clamp(280px, 55vw, 600px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 40px rgba(184,134,11,0.25);
  animation: titleImageGlow 5s ease-in-out infinite alternate;
}

@keyframes titleImageGlow {
  0%   { box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 30px rgba(184,134,11,0.2); }
  100% { box-shadow: 0 8px 30px rgba(0,0,0,0.7), 0 0 50px rgba(184,134,11,0.35); }
}

/* ============ GAUGE CLUSTER ============ */
.hero-gauge-cluster {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.gauge-body {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a 60%, #0a0a0a 100%);
  border: 3px solid var(--brass);
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.9),
    0 0 15px rgba(0,0,0,0.5),
    0 0 3px var(--brass-dark);
  position: relative;
  overflow: hidden;
}

.gauge-body-a {
  border-color: var(--brass);
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.9),
    0 0 8px rgba(184,134,11,0.3),
    0 0 3px var(--brass-dark);
}
.gauge-body-h {
  border-color: var(--copper);
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.9),
    0 0 8px rgba(255,140,0,0.3),
    0 0 3px rgba(180,80,20,0.5);
}
.gauge-body-b {
  border-color: #4a9;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.9),
    0 0 8px rgba(68,170,153,0.3),
    0 0 3px rgba(40,120,100,0.5);
}

.hero-meter {
  width: 100%;
  height: 100%;
  display: block;
}

.gauge-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass-light);
  text-shadow: 0 0 4px rgba(184,134,11,0.3);
  transition: color 0.5s, text-shadow 0.5s;
}

.gauge-status.status-live {
  color: var(--green-glow);
  text-shadow: 0 0 8px rgba(57,255,20,0.5);
}

.gauge-status.status-offline {
  color: #664;
  text-shadow: none;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #664;
  box-shadow: none;
  transition: background 0.5s, box-shadow 0.5s;
}

.status-live .live-dot {
  background: var(--green-glow);
  box-shadow: 0 0 6px var(--green-glow), 0 0 12px rgba(57,255,20,0.3);
  animation: livePulse 1.5s ease-in-out infinite;
}

.status-offline .live-dot {
  background: #664;
  box-shadow: none;
  animation: none;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============ CTA BUTTON ============ */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bg-darkest);
  text-decoration: none;
  background: linear-gradient(180deg, var(--chrome-blue) 0%, var(--titanium) 50%, var(--titanium-dark) 100%);
  border: 2px solid var(--chrome-blue-dark);
  border-radius: 4px;
  box-shadow:
    0 4px 15px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 20px rgba(79,195,247,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 0 30px rgba(79,195,247,0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-gear {
  width: 22px;
  height: 22px;
  color: var(--bg-darkest);
  animation: gearSpin 4s linear infinite;
}

.cta-gear-right {
  animation-direction: reverse;
}

/* ============ CHAINS (Hero decoration) ============ */
.chain {
  position: absolute;
  top: 0;
  width: 16px;
  height: 200px;
  z-index: 3;
}

.chain-left { left: 8%; }
.chain-right { right: 8%; }

.chain::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    var(--iron) 0px,
    var(--iron) 8px,
    var(--iron-dark) 8px,
    var(--iron-dark) 12px,
    transparent 12px,
    transparent 14px,
    var(--iron-dark) 14px,
    var(--iron-dark) 18px,
    var(--iron) 18px,
    var(--iron) 26px,
    transparent 26px,
    transparent 28px
  );
  border-radius: 3px;
  box-shadow: 1px 0 2px rgba(0,0,0,0.3), -1px 0 2px rgba(0,0,0,0.3);
}

/* ============ SECTION COMMON ============ */
.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Color divider between sections */
.section + .section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(147,112,219,0.3) 15%,
    rgba(79,195,247,0.25) 30%,
    rgba(232,180,184,0.2) 50%,
    rgba(80,200,120,0.25) 70%,
    rgba(102,153,204,0.3) 85%,
    transparent
  );
  pointer-events: none;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, var(--silver-light) 0%, var(--titanium) 40%, var(--violet-steel) 70%, var(--chrome-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  white-space: nowrap;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Decorative pipes */
.pipe-left, .pipe-right {
  flex: 1;
  max-width: 200px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--titanium), var(--titanium-dark));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.3);
  position: relative;
}

.pipe-left::before, .pipe-right::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--silver-light), var(--silver-dark));
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 1px 3px rgba(0,0,0,0.5);
}

.pipe-left::before { right: 0; }
.pipe-right::after { left: 0; }

/* ============ LISTEN SECTION ============ */
.listen-section {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(80,200,120,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(147,112,219,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(20,18,30,0.5) 0%, transparent 60%);
}

.studios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ============ STUDIO CARDS ============ */
.studio-card {
  background: linear-gradient(145deg, var(--bg-medium) 0%, var(--bg-panel) 100%);
  border: 2px solid var(--titanium-dark);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(102,153,204,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(102,153,204,0.3),
    0 0 20px rgba(102,153,204,0.15);
}

.card-rivets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.card-rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--brass-light), var(--brass-dark));
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.4);
}
.card-rivet:nth-child(1) { top: 8px; left: 8px; }
.card-rivet:nth-child(2) { top: 8px; right: 8px; }
.card-rivet:nth-child(3) { bottom: 8px; left: 8px; }
.card-rivet:nth-child(4) { bottom: 8px; right: 8px; }

.card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(180deg, rgba(102,153,204,0.12) 0%, transparent 100%);
  border-bottom: 1px solid rgba(102,153,204,0.2);
}

.card-gear {
  width: 30px;
  height: 30px;
  color: var(--emerald-chrome);
  animation: gearSpin 12s linear infinite;
}

.hawks-card .card-gear {
  color: var(--rose-gold);
  animation-direction: reverse;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--chrome-blue);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-body {
  padding: 1.5rem;
}

/* ============ VU METER — ANALOG STEAMPUNK ============ */

/* --- Status Indicator Lights (Red/Green) --- */
.status-lights {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

.indicator-light {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--brass-dark);
  position: relative;
  box-shadow:
    inset 0 1px 2px rgba(0,0,0,0.6),
    0 0 2px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.indicator-light .light-lens {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Red light — default ON (stopped) */
.light-red {
  background: radial-gradient(circle at 40% 35%, #4a1010 0%, #1a0505 100%);
}
.light-red .light-lens {
  background: radial-gradient(circle at 40% 35%, #661515 0%, #330a0a 100%);
}
.light-red.active {
  background: radial-gradient(circle at 40% 35%, #ff2020 0%, #881010 100%);
  box-shadow:
    inset 0 1px 2px rgba(255,100,100,0.3),
    0 0 8px rgba(255,32,32,0.6),
    0 0 20px rgba(255,32,32,0.3),
    0 0 40px rgba(255,32,32,0.15);
}
.light-red.active .light-lens {
  background: radial-gradient(circle at 40% 35%, #ff6060 0%, #cc2020 100%);
  box-shadow: 0 0 4px rgba(255,32,32,0.8);
}

/* Green light — ON when playing */
.light-green {
  background: radial-gradient(circle at 40% 35%, #0a3a0a 0%, #051a05 100%);
}
.light-green .light-lens {
  background: radial-gradient(circle at 40% 35%, #0d440d 0%, #062206 100%);
}
.light-green.active {
  background: radial-gradient(circle at 40% 35%, #20ff20 0%, #10881a 100%);
  box-shadow:
    inset 0 1px 2px rgba(100,255,100,0.3),
    0 0 8px rgba(57,255,20,0.6),
    0 0 20px rgba(57,255,20,0.3),
    0 0 40px rgba(57,255,20,0.15);
  animation: greenPulse 1.5s ease-in-out infinite;
}
.light-green.active .light-lens {
  background: radial-gradient(circle at 40% 35%, #60ff60 0%, #20cc20 100%);
  box-shadow: 0 0 4px rgba(57,255,20,0.8);
}

@keyframes greenPulse {
  0%, 100% { box-shadow: inset 0 1px 2px rgba(100,255,100,0.3), 0 0 8px rgba(57,255,20,0.6), 0 0 20px rgba(57,255,20,0.3); }
  50% { box-shadow: inset 0 1px 2px rgba(100,255,100,0.3), 0 0 12px rgba(57,255,20,0.8), 0 0 30px rgba(57,255,20,0.4); }
}

/* Brass housing frame around the VU meter */
.analog-vu-wrap {
  margin-bottom: 1rem;
}

.vu-housing {
  position: relative;
  background:
    linear-gradient(145deg, #1a1208 0%, #0d0a04 40%, #1a1208 100%);
  border: 3px solid var(--brass-dark);
  border-radius: 8px;
  padding: 8px 10px 18px;
  overflow: visible;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(184,134,11,0.2),
    0 4px 15px rgba(0,0,0,0.6);
}

.vu-housing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 30%);
  pointer-events: none;
  border-radius: 6px;
}

.hawks-vu {
  border-color: var(--copper-dark);
}

/* Screws on VU housing */
.vu-screws {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 6px;
  left: 10px;
  right: 10px;
  z-index: 3;
  pointer-events: none;
}

.vu-screw {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--brass-light) 0%, var(--brass-dark) 100%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.25), 0 1px 2px rgba(0,0,0,0.5);
  position: relative;
}

.vu-screw::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: rgba(0,0,0,0.45);
  font-weight: bold;
}

.vu-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 2px;
  text-shadow: 0 0 4px rgba(102,153,204,0.3);
}

.vu-canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.vu-brand {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(184,134,11,0.5);
  margin-top: 4px;
}

/* --- Player Controls --- */
.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 6px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--brass-dark);
  background:
    radial-gradient(circle at 40% 35%, #2a1a0a 0%, #0d0804 80%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.05),
    inset 0 -2px 4px rgba(0,0,0,0.4),
    0 2px 8px rgba(0,0,0,0.5);
  flex-shrink: 0;
  position: relative;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.1);
}

.play-btn:hover {
  border-color: var(--brass);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.08),
    inset 0 -2px 4px rgba(0,0,0,0.4),
    0 2px 12px rgba(0,0,0,0.5),
    0 0 15px rgba(184,134,11,0.15);
  transform: scale(1.05);
}

.play-btn:active {
  transform: scale(0.95);
  box-shadow:
    inset 0 2px 8px rgba(0,0,0,0.6),
    0 1px 4px rgba(0,0,0,0.3);
}

.play-btn.playing {
  border-color: var(--green-glow);
  box-shadow:
    inset 0 2px 4px rgba(57,255,20,0.1),
    0 0 12px rgba(57,255,20,0.3),
    0 0 25px rgba(57,255,20,0.15);
}

.play-btn-icon {
  font-size: 1.3rem;
  color: var(--brass-light);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  line-height: 1;
  padding-left: 3px;
}

.play-btn.playing .play-btn-icon {
  color: var(--green-glow);
  text-shadow: 0 0 8px rgba(57,255,20,0.5);
  padding-left: 0;
}

/* Volume slider */
.volume-control {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.vol-icon {
  font-size: 0.9rem;
  color: var(--brass);
  flex-shrink: 0;
}

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  background: linear-gradient(90deg, var(--iron-dark), var(--iron));
  border-radius: 3px;
  outline: none;
  border: 1px solid rgba(184,134,11,0.15);
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--brass-light) 0%, var(--brass-dark) 100%);
  border: 2px solid var(--brass);
  box-shadow: 0 1px 4px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.2);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.vol-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.vol-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--brass-light) 0%, var(--brass-dark) 100%);
  border: 2px solid var(--brass);
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
  cursor: pointer;
}

/* --- Spectrum / Frequency Bars (real-time) --- */
.spectrum-meter {
  display: flex;
  gap: 2px;
  justify-content: center;
  align-items: flex-end;
  height: 36px;
  padding: 4px 8px;
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.35);
  border-radius: 4px;
  border: 1px solid rgba(184,134,11,0.1);
}

.spec-bar {
  flex: 1;
  min-width: 4px;
  max-width: 14px;
  height: 4px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--ember) 0%, var(--amber-glow) 40%, var(--green-glow) 70%, var(--green-dim) 100%);
  transition: height 0.08s ease-out;
  transform-origin: bottom;
}

/* Idle state animation for spectrum bars */
.spectrum-meter.idle .spec-bar {
  animation: specIdle 1.5s ease-in-out infinite alternate;
}

.spectrum-meter.idle .spec-bar:nth-child(1) { animation-delay: 0s; }
.spectrum-meter.idle .spec-bar:nth-child(2) { animation-delay: 0.1s; }
.spectrum-meter.idle .spec-bar:nth-child(3) { animation-delay: 0.2s; }
.spectrum-meter.idle .spec-bar:nth-child(4) { animation-delay: 0.05s; }
.spectrum-meter.idle .spec-bar:nth-child(5) { animation-delay: 0.15s; }
.spectrum-meter.idle .spec-bar:nth-child(6) { animation-delay: 0.25s; }
.spectrum-meter.idle .spec-bar:nth-child(7) { animation-delay: 0.08s; }
.spectrum-meter.idle .spec-bar:nth-child(8) { animation-delay: 0.18s; }
.spectrum-meter.idle .spec-bar:nth-child(9) { animation-delay: 0.03s; }
.spectrum-meter.idle .spec-bar:nth-child(10) { animation-delay: 0.13s; }
.spectrum-meter.idle .spec-bar:nth-child(11) { animation-delay: 0.22s; }
.spectrum-meter.idle .spec-bar:nth-child(12) { animation-delay: 0.07s; }
.spectrum-meter.idle .spec-bar:nth-child(13) { animation-delay: 0.17s; }
.spectrum-meter.idle .spec-bar:nth-child(14) { animation-delay: 0.02s; }
.spectrum-meter.idle .spec-bar:nth-child(15) { animation-delay: 0.12s; }
.spectrum-meter.idle .spec-bar:nth-child(16) { animation-delay: 0.09s; }

@keyframes specIdle {
  0% { height: 3px; opacity: 0.4; }
  100% { height: 8px; opacity: 0.6; }
}

/* ============ BRASS BUTTONS ============ */
.listen-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brass-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(184,134,11,0.2) 0%, rgba(139,105,20,0.15) 100%);
  border: 1px solid var(--brass-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.brass-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
  transition: left 0.4s ease;
}

.brass-btn:hover {
  background: linear-gradient(180deg, rgba(184,134,11,0.35) 0%, rgba(139,105,20,0.25) 100%);
  border-color: var(--brass);
  box-shadow: 0 0 10px rgba(184,134,11,0.2);
}

.brass-btn:hover::before {
  left: 100%;
}

.btn-icon {
  color: var(--emerald-chrome);
  font-size: 0.7rem;
}

/* Phone line */
.phone-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184,134,11,0.15);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--parchment-dark);
}

.phone-icon {
  color: var(--brass);
  font-size: 1.1rem;
}

/* ============ DISCORD BANNER ============ */
.discord-banner {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(42,26,10,0.6) 0%, rgba(26,14,5,0.8) 100%);
  border: 2px solid var(--violet-dark);
  border-radius: 6px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.banner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--chrome-blue);
  margin-bottom: 0.5rem;
}

.banner-content p {
  color: var(--parchment);
  margin-bottom: 1.2rem;
}

.discord-btn {
  display: inline-flex;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(180deg, rgba(88,101,242,0.3) 0%, rgba(88,101,242,0.2) 100%);
  border-color: rgba(88,101,242,0.5);
}

.discord-btn:hover {
  background: linear-gradient(180deg, rgba(88,101,242,0.5) 0%, rgba(88,101,242,0.3) 100%);
  border-color: rgba(88,101,242,0.7);
  box-shadow: 0 0 15px rgba(88,101,242,0.3);
}

/* ============ ABOUT SECTION ============ */
.about-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(147,112,219,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0,188,212,0.04) 0%, transparent 50%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.parchment-panel {
  background:
    linear-gradient(145deg, rgba(42,26,10,0.85) 0%, rgba(24,14,6,0.95) 100%);
  border: 2px solid var(--silver-dark);
  border-radius: 8px;
  padding: 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(184,134,11,0.15),
    inset 0 0 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.parchment-panel:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(192,192,192,0.25),
    0 0 20px rgba(147,112,219,0.1);
}

/* Colored top accent stripe per panel */
.panel-accent-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 8px 8px 0 0;
}

.panel-origin .panel-accent-stripe {
  background: linear-gradient(90deg, transparent, var(--gold), var(--amber-glow), var(--gold), transparent);
}
.panel-origin:hover { border-color: rgba(255,215,0,0.4); }
.panel-origin .panel-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,215,0,0.08) 0%, transparent 70%);
}

.panel-ethos .panel-accent-stripe {
  background: linear-gradient(90deg, transparent, #39ff14, #00e676, #39ff14, transparent);
}
.panel-ethos:hover { border-color: rgba(57,255,20,0.35); }
.panel-ethos .panel-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(57,255,20,0.06) 0%, transparent 70%);
}

.panel-hosts .panel-accent-stripe {
  background: linear-gradient(90deg, transparent, #ff8c00, #ff6b00, #ff8c00, transparent);
}
.panel-hosts:hover { border-color: rgba(255,140,0,0.4); }
.panel-hosts .panel-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(255,140,0,0.07) 0%, transparent 70%);
}

.panel-reach .panel-accent-stripe {
  background: linear-gradient(90deg, transparent, #00bcd4, #0097a7, #00bcd4, transparent);
}
.panel-reach:hover { border-color: rgba(0,188,212,0.35); }
.panel-reach .panel-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(0,188,212,0.06) 0%, transparent 70%);
}

.panel-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.parchment-panel:hover .panel-glow {
  opacity: 1;
}

/* Panel icons */
.panel-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.4));
}

.panel-origin .panel-icon { color: var(--gold); }
.panel-ethos .panel-icon  { color: #39ff14; filter: drop-shadow(0 0 6px rgba(57,255,20,0.4)); }
.panel-hosts .panel-icon  { color: #ff8c00; filter: drop-shadow(0 0 6px rgba(255,140,0,0.4)); }
.panel-reach .panel-icon  { color: #00bcd4; filter: drop-shadow(0 0 6px rgba(0,188,212,0.4)); }

.panel-bolts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-bolts .bolt {
  width: 10px;
  height: 10px;
}
.panel-bolts .bolt:nth-child(1) { top: 10px; left: 10px; }
.panel-bolts .bolt:nth-child(2) { top: 10px; right: 10px; }
.panel-bolts .bolt:nth-child(3) { bottom: 10px; left: 10px; }
.panel-bolts .bolt:nth-child(4) { bottom: 10px; right: 10px; }

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--silver-light);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(147,112,219,0.2);
}

.panel-origin .panel-title { color: var(--gold); }
.panel-ethos .panel-title  { color: #7fff7f; }
.panel-hosts .panel-title  { color: #ffb347; }
.panel-reach .panel-title  { color: #4dd0e1; }

.parchment-panel p {
  color: var(--parchment);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.parchment-panel p:last-child {
  margin-bottom: 0;
}

/* ============ STUDIOS SHOWCASE ============ */
.studios-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.display-frame {
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, var(--titanium), var(--silver-dark), var(--violet-dark), var(--silver-dark), var(--titanium));
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.frame-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--titanium);
  z-index: 5;
}
.fc-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.fc-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.fc-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.fc-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

.display-screen {
  background: radial-gradient(ellipse, #0a1a0a 0%, #050f05 60%, #020802 100%);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.hawks-screen {
  background: radial-gradient(ellipse, #1a0a0a 0%, #0f0505 60%, #080202 100%);
}

/* CRT scanlines */
.screen-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.screen-content {
  position: relative;
  z-index: 3;
}

.screen-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-glow);
  text-shadow: 0 0 10px rgba(57,255,20,0.5), 0 0 20px rgba(57,255,20,0.2);
  margin-bottom: 0.8rem;
}

.hawks-screen .screen-content h3 {
  color: var(--amber-glow);
  text-shadow: 0 0 10px rgba(255,140,0,0.5), 0 0 20px rgba(255,140,0,0.2);
}

.studio-desc {
  font-size: 0.9rem;
  color: rgba(57,255,20,0.6);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.hawks-screen .studio-desc {
  color: rgba(255,140,0,0.6);
}

/* Signal Strength Meters — 3 unique designs */
.signal-radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
}

.signal-radar {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(57,255,20,0.25);
  box-shadow:
    inset 0 0 25px rgba(0,0,0,0.7),
    0 0 12px rgba(57,255,20,0.1),
    0 0 30px rgba(57,255,20,0.04);
  background: radial-gradient(circle, rgba(0,20,0,0.6) 0%, rgba(0,8,0,0.95) 100%);
}

.hawks-radar {
  border-color: rgba(255,140,0,0.25);
  box-shadow:
    inset 0 0 25px rgba(0,0,0,0.7),
    0 0 12px rgba(255,140,0,0.1),
    0 0 30px rgba(255,140,0,0.04);
  background: radial-gradient(circle, rgba(20,10,0,0.6) 0%, rgba(8,4,0,0.95) 100%);
}

.cyan-radar {
  border-color: rgba(0,200,255,0.25);
  box-shadow:
    inset 0 0 25px rgba(0,0,0,0.7),
    0 0 12px rgba(0,200,255,0.1),
    0 0 30px rgba(0,200,255,0.04);
  background: radial-gradient(circle, rgba(0,10,20,0.6) 0%, rgba(0,4,8,0.95) 100%);
}

.radar-label {
  margin-top: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(57,255,20,0.45);
  text-shadow: 0 0 6px rgba(57,255,20,0.15);
}

.hawks-label {
  color: rgba(255,140,0,0.45);
  text-shadow: 0 0 6px rgba(255,140,0,0.15);
}

.cyan-label {
  color: rgba(0,200,255,0.45);
  text-shadow: 0 0 6px rgba(0,200,255,0.15);
}

/* ============ SUPPORT SECTION ============ */
.support-section {
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(147,112,219,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(232,180,184,0.05) 0%, transparent 50%);
}

.support-intro {
  font-size: 1.1rem;
  color: var(--parchment);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, var(--bg-medium) 0%, var(--bg-panel) 100%);
  border: 2px solid var(--violet-dark);
  border-radius: 6px;
  text-decoration: none;
  color: var(--cream);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-steel);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 15px rgba(147,112,219,0.2);
}

.support-icon {
  margin-bottom: 1rem;
}

.support-gear {
  width: 40px;
  height: 40px;
  color: var(--violet-steel);
  animation: gearSpin 10s linear infinite;
}

.support-card:hover .support-gear {
  color: var(--violet-light);
  animation-duration: 3s;
}

.support-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--chrome-blue);
  margin-bottom: 0.3rem;
}

.support-card p {
  font-size: 0.85rem;
  color: var(--parchment-dark);
}

/* Mail support plate */
.mail-plate {
  display: inline-block;
  text-align: center;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(145deg, rgba(42,26,10,0.6) 0%, rgba(30,18,10,0.8) 100%);
  border: 2px solid var(--brass-dark);
  border-radius: 4px;
  margin-bottom: 2rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.mail-plate p {
  font-size: 0.9rem;
  color: var(--parchment);
  margin-bottom: 0.3rem;
}

.mail-plate p:last-child { margin-bottom: 0; }

/* Goal gauge */
.monthly-goal {
  max-width: 400px;
  margin: 0 auto;
}

.goal-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--titanium-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.goal-bar {
  height: 20px;
  background: rgba(0,0,0,0.4);
  border: 2px solid var(--brass-dark);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.goal-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-dim), var(--green-glow));
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(57,255,20,0.3);
  transition: width 2s ease-out;
}

.goal-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--emerald-chrome);
  margin-top: 0.8rem;
}

/* ============ MEMORIAL SECTION ============ */
.memorial-section {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232,180,184,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(183,110,121,0.04) 0%, transparent 40%);
}

.founder-tribute {
  margin-bottom: 3rem;
}

.tribute-frame {
  display: inline-block;
  padding: 2.5rem 3rem;
  background: linear-gradient(145deg, rgba(42,26,10,0.8) 0%, rgba(26,14,5,0.9) 100%);
  border: 3px solid var(--rose-gold-dark);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,0,0,0.3);
  max-width: 500px;
}

.frame-ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tribute-gear {
  position: absolute;
  width: 30px;
  height: 30px;
  color: var(--rose-gold);
}

.tribute-gear-l {
  top: -15px;
  left: -15px;
  animation: gearSpin 12s linear infinite;
}

.tribute-gear-r {
  top: -15px;
  right: -15px;
  animation: gearSpinReverse 12s linear infinite;
}

.tribute-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-gold);
  margin-bottom: 0.3rem;
}

.tribute-aka {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 0.3rem;
}

.tribute-role {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--parchment-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.tribute-desc {
  font-size: 0.95rem;
  color: var(--parchment);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.tribute-dates {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--titanium);
  letter-spacing: 1px;
}

/* Memorial grid */
.memorial-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--parchment-dark);
  max-width: 600px;
  margin: -0.5rem auto 2rem;
  line-height: 1.6;
  opacity: 0.7;
}

.memorial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.memorial-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--parchment-dark);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(147,112,219,0.15);
  border-radius: 2px;
  background: rgba(0,0,0,0.2);
}

.memorial-name span {
  color: var(--titanium);
  font-style: italic;
}

.memorial-role {
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  font-style: italic;
  color: rgba(147,112,219,0.6);
  letter-spacing: 1px;
  margin-left: 0.3rem;
}

/* Footer credit — metallic color-shifting */
.footer-credit {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: rgba(180,180,180,0.5);
  margin-bottom: 0.3rem;
}

.archive-creds {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(184,134,11,0.5);
  letter-spacing: 1px;
  margin-left: 0.4rem;
}

.metallic-text {
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(
    90deg,
    #b8860b 0%,
    #e8d5a3 12%,
    #cd7f32 24%,
    #c0c0c0 36%,
    #a8d8ea 48%,
    #d4af37 60%,
    #e8d5a3 72%,
    #cd7f32 84%,
    #b8860b 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metallicShift 4s ease-in-out infinite;
  filter: brightness(1.2);
}

@keyframes metallicShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.memorial-quote {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--rose-gold);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  text-shadow: 0 0 10px rgba(232,180,184,0.2);
}

/* ============ MEMORIAL FLAME VIDEO ============ */
.memorial-flame-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  position: relative;
}

.memorial-flame-video {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 20px rgba(255,140,0,0.5),
    0 0 50px rgba(255,100,0,0.25),
    0 0 80px rgba(232,180,184,0.15);
  border: 3px solid var(--titanium-dark);
  filter: brightness(1.1) contrast(1.05);
}

.flame-frame-base {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

.flame-frame-base::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg,
    transparent,
    var(--titanium-dark),
    var(--rose-gold-dark),
    var(--titanium-dark),
    transparent
  );
  border-radius: 3px;
}

.flame-frame-rivet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--silver-light), var(--titanium-dark));
  box-shadow:
    inset 0 -1px 2px rgba(0,0,0,0.4),
    0 1px 3px rgba(0,0,0,0.3);
  position: relative;
  z-index: 3;
}

/* ============ FOOTER ============ */
.steampunk-footer {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, #050302 100%);
  border-top: 3px solid var(--violet-dark);
  text-align: center;
  overflow: hidden;
}

.footer-gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-gear {
  position: absolute;
  color: rgba(184,134,11,0.06);
}

.footer-gear-1 {
  width: 200px;
  bottom: -50px;
  left: -50px;
  animation: gearSpin 40s linear infinite;
}

.footer-gear-2 {
  width: 120px;
  bottom: -30px;
  right: 10%;
  animation: gearSpinReverse 30s linear infinite;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--chrome-blue) 0%, var(--silver-light) 30%, var(--rose-gold) 60%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--parchment-dark);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--titanium-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--chrome-blue);
  text-shadow: 0 0 8px rgba(79,195,247,0.3);
}

.footer-sep {
  color: var(--violet-dark);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(232,213,183,0.4);
}

/* ============ SCROLL REVEAL ANIMATION ============ */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ AMBIENT LIGHT SPOTS ============ */
.listen-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80,200,120,0.05) 0%, rgba(102,153,204,0.04) 30%, transparent 70%);
  pointer-events: none;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(147,112,219,0.06) 0%, rgba(232,180,184,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.shows-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,195,247,0.06) 0%, rgba(80,200,120,0.04) 35%, transparent 70%);
  pointer-events: none;
}

.support-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(147,112,219,0.06) 0%, rgba(183,110,121,0.04) 35%, transparent 70%);
  pointer-events: none;
}

.memorial-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,180,184,0.06) 0%, rgba(183,110,121,0.04) 35%, transparent 70%);
  pointer-events: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  .hero-gauge-cluster {
    gap: 1rem;
  }
  .gauge-body {
    width: 120px;
    height: 120px;
  }
  .hero-title-image {
    width: clamp(220px, 85vw, 350px);
  }
  .studios-grid {
    grid-template-columns: 1fr;
  }
  .studios-showcase {
    grid-template-columns: 1fr;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .edison-lights {
    left: 5%;
    right: 5%;
  }
  .chain { display: none; }
}

@media (max-width: 400px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SELECTION STYLING ============ */
/* Hidden SVG defs */
.svg-defs {
  display: none;
}

::selection {
  background: rgba(147,112,219,0.4);
  color: var(--cream);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--titanium-dark), var(--violet-dark));
  border-radius: 5px;
  border: 2px solid var(--bg-darkest);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--titanium), var(--violet-steel));
}

/* ============ SCHEDULE SECTION ============ */
.schedule-section {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(79,195,247,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(80,200,120,0.04) 0%, transparent 40%);
  padding-bottom: 4rem;
}

/* --- Clocks Row --- */
.schedule-clocks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clock-frame {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--brass-dark);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(184,134,11,0.1),
    0 4px 12px rgba(0,0,0,0.5);
  background: radial-gradient(circle, #1a1208 0%, #0a0804 100%);
  padding: 0;
  overflow: hidden;
}

.clock-hawks .clock-frame {
  border-color: var(--copper-dark);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(255,140,0,0.08),
    0 4px 12px rgba(0,0,0,0.5);
}

.clock-b .clock-frame {
  border-color: rgba(0,150,200,0.4);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(0,200,255,0.08),
    0 4px 12px rgba(0,0,0,0.5);
}

.analog-clock {
  display: block;
  width: 100%;
  height: 100%;
}

/* Retro digital displays */
.digital-clock {
  margin-top: 0.4rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(57, 255, 20, 0.9);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4), 0 0 20px rgba(57, 255, 20, 0.15);
  background: linear-gradient(180deg, rgba(0,15,0,0.8) 0%, rgba(0,8,0,0.95) 100%);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  min-width: 130px;
  text-align: center;
}

.digital-hawks {
  color: rgba(255, 140, 0, 0.9);
  text-shadow: 0 0 8px rgba(255,140,0,0.4), 0 0 20px rgba(255,140,0,0.15);
  background: linear-gradient(180deg, rgba(15,8,0,0.8) 0%, rgba(8,4,0,0.95) 100%);
  border-color: rgba(255,140,0,0.15);
}

.digital-cyan {
  color: rgba(0, 200, 255, 0.9);
  text-shadow: 0 0 8px rgba(0,200,255,0.4), 0 0 20px rgba(0,200,255,0.15);
  background: linear-gradient(180deg, rgba(0,8,15,0.8) 0%, rgba(0,4,8,0.95) 100%);
  border-color: rgba(0,200,255,0.15);
}

.clock-label {
  margin-top: 0.35rem;
  font-family: 'Courier New', monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(184,134,11,0.5);
}

.clock-label-hawks { color: rgba(255,140,0,0.45); }
.clock-label-cyan  { color: rgba(0,200,255,0.45); }
.clock-label-cet   { color: rgba(180,120,255,0.45); }
.clock-label-nz    { color: rgba(57,255,20,0.45); }
.clock-label-pst   { color: rgba(100,180,255,0.45); }
.clock-label-local { color: rgba(255,215,100,0.55); font-size: 0.6rem; }

.clock-cet .clock-frame {
  border-color: rgba(180,120,255,0.3);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(180,120,255,0.08),
    0 4px 12px rgba(0,0,0,0.5);
}

.digital-cet {
  color: rgba(180,120,255,0.9);
  text-shadow: 0 0 8px rgba(180,120,255,0.4), 0 0 20px rgba(180,120,255,0.15);
  background: linear-gradient(180deg, rgba(10,4,15,0.8) 0%, rgba(5,2,8,0.95) 100%);
  border-color: rgba(180,120,255,0.15);
}

.digital-nz {
  color: rgba(57,255,20,0.9);
  text-shadow: 0 0 8px rgba(57,255,20,0.4), 0 0 20px rgba(57,255,20,0.15);
  background: linear-gradient(180deg, rgba(0,15,0,0.8) 0%, rgba(0,8,0,0.95) 100%);
  border-color: rgba(57,255,20,0.15);
}

.clock-pst .clock-frame {
  border-color: rgba(100,180,255,0.3);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(100,180,255,0.08),
    0 4px 12px rgba(0,0,0,0.5);
}

.digital-pst {
  color: rgba(100,180,255,0.9);
  text-shadow: 0 0 8px rgba(100,180,255,0.4), 0 0 20px rgba(100,180,255,0.15);
  background: linear-gradient(180deg, rgba(4,8,15,0.8) 0%, rgba(2,4,8,0.95) 100%);
  border-color: rgba(100,180,255,0.15);
}

.clock-local .clock-frame {
  border-color: rgba(255,215,100,0.35);
  box-shadow:
    inset 0 0 20px rgba(0,0,0,0.6),
    0 0 12px rgba(255,215,100,0.1),
    0 4px 12px rgba(0,0,0,0.5);
}

.digital-local {
  color: rgba(255,215,100,0.9);
  text-shadow: 0 0 8px rgba(255,215,100,0.4), 0 0 20px rgba(255,215,100,0.15);
  background: linear-gradient(180deg, rgba(15,12,4,0.8) 0%, rgba(8,6,2,0.95) 100%);
  border-color: rgba(255,215,100,0.15);
}

/* --- Schedule Tabs --- */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.sched-tab {
  background: linear-gradient(180deg, rgba(30,22,10,0.9) 0%, rgba(15,11,5,0.95) 100%);
  border: 2px solid var(--titanium-dark);
  color: var(--titanium);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sched-tab:first-child { border-radius: 6px 0 0 6px; }
.sched-tab:last-child  { border-radius: 0 6px 6px 0; border-left: none; }

.sched-tab:hover {
  background: linear-gradient(180deg, rgba(50,38,15,0.9) 0%, rgba(25,18,8,0.95) 100%);
  color: var(--chrome-blue);
}

.sched-tab.active {
  background: linear-gradient(180deg, var(--titanium-dark) 0%, rgba(60,80,110,0.8) 100%);
  color: var(--cream);
  text-shadow: 0 0 8px rgba(102,153,204,0.3);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.4), 0 0 12px rgba(102,153,204,0.15);
}

/* --- Schedule Table --- */
.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 100%;
  border: 2px solid var(--brass-dark);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.85rem;
  min-width: 800px;
}

.schedule-table thead th {
  background: linear-gradient(180deg, rgba(30,22,10,0.95) 0%, rgba(12,9,4,0.98) 100%);
  color: var(--chrome-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.8rem 0.6rem;
  border-bottom: 2px solid var(--brass-dark);
  position: sticky;
  top: 0;
  z-index: 2;
}

.schedule-table tbody tr {
  transition: background 0.2s;
}

.schedule-table tbody tr:hover {
  background: rgba(184,134,11,0.04);
}

.time-cell {
  background: rgba(15,11,5,0.9);
  color: var(--titanium);
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 0.5rem 0.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(184,134,11,0.12);
  border-bottom: 1px solid rgba(184,134,11,0.06);
  text-align: center;
  min-width: 75px;
  line-height: 1.3;
}

.time-cell .local-time {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,215,100,0.55);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.show-cell {
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid rgba(184,134,11,0.06);
  border-right: 1px solid rgba(184,134,11,0.04);
  vertical-align: top;
  background: rgba(10,7,3,0.6);
  min-width: 90px;
}

.show-name {
  display: block;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.35;
}

.show-host {
  display: block;
  color: rgba(147,112,219,0.6);
  font-size: 0.72rem;
  font-style: italic;
  margin-top: 2px;
}

.has-show {
  background: rgba(20,15,5,0.8);
  border-left: 2px solid rgba(102,153,204,0.25);
}

.has-show .show-name {
  color: var(--silver-light);
  text-shadow: 0 0 4px rgba(192,192,192,0.15);
}

.open-slot {
  background: rgba(5,4,2,0.5);
}

.open-slot .show-name {
  color: rgba(100,85,60,0.35);
  font-weight: 400;
  font-style: italic;
}

.reserved-slot {
  background: rgba(15,10,5,0.6);
  border-left: 2px solid rgba(255,140,0,0.2);
}

.reserved-slot .show-name {
  color: rgba(255,140,0,0.45);
  font-style: italic;
}

.cont-slot {
  text-align: center;
  color: rgba(184,134,11,0.2);
  font-size: 0.9rem;
  background: rgba(10,7,3,0.4);
}

/* Studio B table accent */
.schedule-table-b .has-show {
  border-left-color: rgba(0,200,255,0.2);
}
.schedule-table-b .has-show .show-name {
  color: rgba(180,230,255,0.9);
  text-shadow: 0 0 4px rgba(0,200,255,0.1);
}
.schedule-table-b .reserved-slot {
  border-left-color: rgba(0,200,255,0.15);
}

/* --- Multi-Hour Show Styling --- */
.multi-hour {
  vertical-align: middle;
  border-left-width: 3px;
}

.multi-hour.has-show {
  background: linear-gradient(180deg, rgba(20,15,5,0.85) 0%, rgba(25,18,8,0.9) 50%, rgba(20,15,5,0.85) 100%);
}

.schedule-table-b .multi-hour.has-show {
  background: linear-gradient(180deg, rgba(5,12,18,0.85) 0%, rgba(8,16,22,0.9) 50%, rgba(5,12,18,0.85) 100%);
}

.show-duration {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.5px;
  color: var(--chrome-blue);
  background: rgba(79,195,247,0.1);
  border: 1px solid rgba(79,195,247,0.2);
  border-radius: 3px;
  vertical-align: middle;
}

.schedule-table-b .show-duration {
  color: rgba(0,200,255,0.8);
  background: rgba(0,200,255,0.08);
  border-color: rgba(0,200,255,0.15);
}

.schedule-note {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(102,153,204,0.4);
  margin-top: 1.2rem;
  font-family: var(--font-body);
}
.schedule-note a {
  color: var(--titanium);
  text-decoration: underline;
}

/* --- Current time highlight row --- */
.schedule-table tbody tr.current-hour {
  background: rgba(79,195,247,0.04);
  box-shadow: inset 0 0 12px rgba(79,195,247,0.03);
}
.schedule-table tbody tr.current-hour .time-cell {
  color: var(--chrome-blue);
  text-shadow: 0 0 6px rgba(79,195,247,0.3);
}

@media (max-width: 768px) {
  .schedule-clocks { gap: 1rem; }
  .clock-frame { width: 100px; height: 100px; }
  .digital-clock { font-size: 0.8rem; min-width: 100px; }
  .sched-tab { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
}
