/* ==========================================================================
   OUT OF ORBIT - 91.9 FM WMTU Official Talk Show
   Refined Space-Themed Modern Web Application with Enhanced Mobile UI
   ========================================================================== */

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

:root {
  /* Cosmic Palette */
  --bg-dark: #070612;
  --bg-deep: #0d0b21;
  --bg-surface: rgba(16, 13, 36, 0.72);
  --bg-surface-hover: rgba(24, 20, 52, 0.85);
  --bg-card: rgba(13, 10, 29, 0.65);
  
  /* Neon Accents matching Logo */
  --neon-red: #ff2056;
  --neon-red-glow: rgba(255, 32, 86, 0.35);
  --neon-blue: #00d9ff;
  --neon-blue-glow: rgba(0, 217, 255, 0.35);
  --neon-purple: #9d4edd;
  
  /* Text */
  --text-main: #f0f2fd;
  --text-muted: #9fa1c0;
  --text-dim: #67698a;
  
  /* Borders & Glass */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(0, 217, 255, 0.22);
  --border-red-glow: rgba(255, 32, 86, 0.3);
  --glass-blur: blur(20px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-display: 'Orbitron', -apple-system, sans-serif;
  --font-headline: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--neon-red);
  color: #fff;
}

/* Background Canvas & Ambient Orbs */
#starfield-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cosmic-aurora {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 60vh;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 32, 86, 0.12) 0%, rgba(0, 217, 255, 0.09) 45%, rgba(7, 6, 18, 0) 75%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  animation: auroraPulse 14s ease-in-out infinite alternate;
}

@keyframes auroraPulse {
  0% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  50% { transform: translateX(-48%) scale(1.08); opacity: 0.9; }
  100% { transform: translateX(-52%) scale(1.04); opacity: 0.65; }
}

/* App Wrapper */
.app-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 6, 18, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(7, 6, 18, 0.96);
  border-bottom-color: var(--border-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-mini {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-link:hover .brand-logo-mini {
  transform: scale(1.05);
  box-shadow: 0 0 18px var(--neon-red-glow);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 30%, #ff4b72 70%, #00d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--neon-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-blue));
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
  touch-action: manipulation;
}

.btn-twitch {
  background: linear-gradient(135deg, #9146FF 0%, #6b3fc4 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(145, 70, 255, 0.3);
}

.btn-twitch:hover {
  background: linear-gradient(135deg, #a158ff 0%, #7d4bd9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(145, 70, 255, 0.45);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-red) 0%, #d81159 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--neon-red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 32, 86, 0.55);
}

.btn-secondary {
  background: rgba(0, 217, 255, 0.08);
  color: var(--neon-blue);
  border-color: rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.16);
  border-color: var(--neon-blue);
  box-shadow: 0 0 16px var(--neon-blue-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover, .mobile-toggle:focus {
  border-color: var(--neon-blue);
  background: rgba(0, 217, 255, 0.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.station-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(0, 217, 255, 0.06);
  border: 1px solid rgba(0, 217, 255, 0.25);
  width: fit-content;
}

.host-pill-tag {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--neon-red);
  letter-spacing: 0.5px;
}

.station-freq {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--neon-blue);
  letter-spacing: 0.8px;
}

.station-sep {
  color: var(--border-glow);
  font-size: 0.75rem;
}

.station-callsign {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.station-callsign a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.station-callsign a:hover {
  color: var(--neon-blue);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.title-glow-red {
  color: #ff3366;
  text-shadow: 0 0 25px var(--neon-red-glow);
  display: block;
}

.title-glow-blue {
  color: #00e5ff;
  text-shadow: 0 0 25px var(--neon-blue-glow);
  display: block;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.3rem;
}

.hero-meta-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.5rem;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* 3D Hero Logo Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-display-card {
  position: relative;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

.logo-glow-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 32, 86, 0.3) 0%, rgba(0, 217, 255, 0.25) 50%, rgba(0,0,0,0) 70%);
  filter: blur(24px);
  animation: logoSpinGlow 12s linear infinite;
}

@keyframes logoSpinGlow {
  0% { transform: rotate(0deg) scale(0.96); }
  50% { transform: rotate(180deg) scale(1.04); }
  100% { transform: rotate(360deg) scale(0.96); }
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(255, 32, 86, 0.45)) drop-shadow(0 0 35px rgba(0, 217, 255, 0.35));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.hero-logo-img:hover {
  filter: drop-shadow(0 0 30px rgba(255, 32, 86, 0.7)) drop-shadow(0 0 50px rgba(0, 217, 255, 0.6));
}

.orbit-badge-floating {
  position: absolute;
  bottom: 8px;
  right: -5px;
  z-index: 3;
  background: rgba(13, 10, 29, 0.88);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glow);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.orbit-badge-floating .badge-icon {
  font-size: 1.1rem;
}

.badge-text-top {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.badge-text-bottom {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   Section Layouts & Cards
   ========================================================================== */
section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* Glass Card */
.glass-card {
  background: var(--bg-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: stretch;
}

.about-title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.pillar-item {
  display: flex;
  gap: 0.85rem;
}

.pillar-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pillar-content h4 {
  font-family: var(--font-headline);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.pillar-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Station Feature Card */
.station-feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.station-feature-header {
  margin-bottom: 1.4rem;
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--neon-red);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.station-feature-header h3 {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  color: #fff;
}

.station-feature-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.station-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.station-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-label {
  color: var(--text-dim);
}

.meta-value {
  color: var(--text-main);
  font-weight: 500;
  text-align: right;
}

.meta-value a {
  color: var(--neon-blue);
  text-decoration: none;
}

.meta-value a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Broadcast Hub (Twitch & Radio)
   ========================================================================== */
.broadcast-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.stream-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stream-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stream-icon-twitch {
  color: #9146FF;
  font-size: 1.3rem;
}

.stream-view-toggle {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.view-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-tab-btn.active {
  background: #9146FF;
  color: #fff;
}

.twitch-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(145, 70, 255, 0.25);
}

.twitch-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.stream-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.stream-info-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stream-info-tag strong {
  color: #fff;
}

/* Radio Box */
.radio-hub-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.radio-header-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.radio-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(0, 217, 255, 0.12);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.visualizer-canvas-container {
  height: 90px;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

#radio-visualizer {
  width: 100%;
  height: 100%;
  display: block;
}

.now-playing-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
}

.now-playing-label {
  font-size: 0.7rem;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.track-name {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.track-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.radio-controls-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-main-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-red), #d81159);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 16px var(--neon-red-glow);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.play-main-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 0 24px var(--neon-red-glow);
}

.volume-control-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.volume-slider {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
  cursor: pointer;
}

.station-switch-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.station-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: all var(--transition-fast);
}

.station-sublink:hover {
  background: rgba(0, 217, 255, 0.06);
  color: #fff;
  border-left: 3px solid var(--neon-blue);
}

/* ==========================================================================
   Schedule & Countdown
   ========================================================================== */
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.8rem;
  background: radial-gradient(circle at center, rgba(255, 32, 86, 0.06) 0%, rgba(13, 10, 29, 0.75) 70%);
}

.countdown-digits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
  width: 100%;
  max-width: 420px;
}

.digit-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.digit-val {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
  text-shadow: 0 0 12px var(--neon-blue-glow);
}

.digit-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.35rem;
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
  gap: 1rem;
}

.schedule-item.featured {
  border-left-color: var(--neon-red);
  background: rgba(255, 32, 86, 0.06);
}

.schedule-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.schedule-day-time {
  display: flex;
  flex-direction: column;
}

.schedule-day {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.schedule-time {
  font-size: 0.82rem;
  color: var(--neon-blue);
}

.schedule-show-name {
  font-size: 0.84rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ==========================================================================
   Socials Grid & Footer
   ========================================================================== */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.social-card.twitch:hover { border-color: #9146FF; box-shadow: 0 0 16px rgba(145, 70, 255, 0.35); }
.social-card.radio:hover { border-color: var(--neon-red); box-shadow: 0 0 16px var(--neon-red-glow); }
.social-card.instagram:hover { border-color: #E1306C; box-shadow: 0 0 16px rgba(225, 48, 108, 0.35); }

.social-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.social-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.social-name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-handle {
  font-size: 0.74rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Site Footer */
.site-footer {
  margin-top: 4.5rem;
  background: rgba(5, 4, 13, 0.96);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--neon-red);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 360px;
}

.footer-links-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--neon-blue);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: rgba(13, 10, 29, 0.96);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glow);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  max-width: 360px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */

/* Tablets & Medium Screens */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-content {
    align-items: center;
  }

  .station-pill {
    justify-content: center;
  }
  
  .hero-meta-stats {
    margin: 0.5rem auto 0;
  }
  
  .about-grid, .broadcast-grid, .schedule-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Devices (Phones) */
@media (max-width: 768px) {
  .container {
    padding: 0 1.15rem;
  }

  /* Mobile Header & Slide-down Glass Drawer */
  .nav-menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(7, 6, 18, 0.98);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
    animation: menuFadeIn 0.25s ease-out;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .nav-menu.open {
    display: flex;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
  }
  
  .mobile-toggle {
    display: flex;
  }

  /* Compact Hero */
  .hero-section {
    padding: 3rem 0 2.5rem;
  }

  .hero-title {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .logo-display-card {
    max-width: 280px;
  }

  .orbit-badge-floating {
    bottom: 4px;
    right: -2px;
    padding: 0.45rem 0.75rem;
  }

  .hero-cta-group {
    width: 100%;
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }

  .hero-meta-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.2rem;
    text-align: center;
  }

  .stat-value {
    font-size: 1.05rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  /* Section Spacing */
  section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .glass-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
  }

  /* About Section on Mobile */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .station-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .meta-value {
    text-align: left;
  }

  /* Countdown & Schedule on Mobile */
  .countdown-digits-grid {
    gap: 0.5rem;
  }

  .digit-card {
    padding: 0.75rem 0.2rem;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Socials Grid on Mobile */
  .socials-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Footer on Mobile */
  .site-footer {
    margin-top: 3.5rem;
    padding: 2.5rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Extra small devices (< 380px) */
@media (max-width: 380px) {
  .brand-name {
    font-size: 1rem;
  }

  .brand-logo-mini {
    width: 36px;
    height: 36px;
  }

  .station-pill {
    font-size: 0.75rem;
  }

  .countdown-digits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
