/* ═══════════════════════════════════════════
   PUMPRAD.IO — Clean Scrolling Design
   Dark cyberpunk, glassmorphism, compact
   ═══════════════════════════════════════════ */

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

:root {
  --bg: #050507;
  --bg-card: rgba(12, 12, 20, 0.7);
  --bg-card-solid: #0c0c14;
  --border: rgba(255, 255, 255, 0.06);
  --text: #e0e0e8;
  --text-dim: #9999b0;
  --green: #00ff88;
  --pink: #ff3366;
  --blue: #00d4ff;
  --purple: #a855f7;
  --white: #ffffff;
  --font-logo: 'Orbitron', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --glow-green: 0 0 20px rgba(0, 255, 136, 0.15);
  --glow-pink: 0 0 20px rgba(255, 51, 102, 0.15);
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.15);
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.15);
  --nav-height: 52px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}
a:hover { opacity: 0.8; }

/* Link underline slide-in from left */
.footer-links a,
.nav-logo {
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}
.footer-links a:hover::after {
  width: 100%;
}

/* === UTILITY === */
.c-white { color: var(--white); }
.c-green { color: var(--green); }

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

/* === NOISE TEXTURE OVERLAY === */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* === GRADIENT ORBS BACKGROUND === */
.orb-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.07;
  animation: orb-drift 20s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px; height: 500px;
  background: #00ff88;
  top: -150px; left: -150px;
}

.orb-2 {
  width: 400px; height: 400px;
  background: #a855f7;
  bottom: -150px; right: -150px;
  animation-delay: -7s;
  animation-duration: 25s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: #00d4ff;
  top: 40%; left: 60%;
  animation-delay: -12s;
  animation-duration: 30s;
}

@keyframes orb-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(15px, -10px) scale(1.02); }
}

/* === FLOATING PARTICLES === */
.particle-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(0, 255, 136, 0.25);
  border-radius: 50%;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   STICKY NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
}
.nav-logo:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-listen-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-listen-nav:hover {
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.4);
  transform: scale(1.02);
}
.btn-listen-nav:active {
  transform: scale(0.97);
}
.btn-listen-nav .btn-icon {
  font-size: 0.6rem;
}
.btn-listen-nav.is-playing {
  background: var(--pink);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--nav-height) + 24px);
  padding-bottom: 24px;
  text-align: center;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-logo {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 4px;
  text-shadow:
    0 0 20px rgba(0, 255, 136, 0.15),
    0 0 40px rgba(0, 255, 136, 0.08),
    0 0 80px rgba(0, 255, 136, 0.04);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Player controls — Capsule style matching broadcast page */
.player-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.capsule-player {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 12, 20, 0.8);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 22px 6px 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.capsule-player::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  padding: 2px;
  background: conic-gradient(from var(--btn-angle, 0deg), #00ff88, #00d4ff, #a855f7, #ff3366, #00ff88);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: btn-border-rotate 4s linear infinite;
  opacity: 0.4;
  z-index: -1;
}

@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes btn-border-rotate {
  to { --btn-angle: 360deg; }
}

.capsule-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.3);
  flex-shrink: 0;
}
.capsule-play-btn:hover {
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.5);
  transform: scale(1.05);
}
.capsule-play-btn:active {
  transform: scale(0.95);
}

.capsule-play-svg {
  width: 22px;
  height: 22px;
}

.capsule-player.is-playing .capsule-play-btn {
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 51, 102, 0.3);
}
.capsule-player.is-playing .capsule-play-btn:hover {
  box-shadow: 0 0 24px rgba(255, 51, 102, 0.5);
}
.capsule-player.is-playing::before {
  background: conic-gradient(from var(--btn-angle, 0deg), #ff3366, #ffaa00, #ff3366);
}

/* Outer ring pulse when live */
@keyframes capsule-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.capsule-player.is-playing::before {
  animation: btn-border-rotate 4s linear infinite, capsule-pulse 2s ease-in-out infinite;
}

.capsule-status {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--white);
  white-space: nowrap;
}

/* Nav play SVG */
.nav-play-svg {
  width: 10px;
  height: 10px;
}

/* Waveform animation inside button when playing */
.btn-waveform {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.btn-waveform .wv-bar {
  width: 2px;
  background: #000;
  border-radius: 1px;
  animation: wv-bounce 1s ease-in-out infinite;
}
.btn-waveform .wv-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.btn-waveform .wv-bar:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.btn-waveform .wv-bar:nth-child(3) { height: 4px; animation-delay: 0.3s; }
.btn-waveform .wv-bar:nth-child(4) { height: 12px; animation-delay: 0.1s; }
.btn-waveform .wv-bar:nth-child(5) { height: 7px; animation-delay: 0.25s; }

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

/* Now playing */
.now-playing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.np-label {
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1px;
}
.np-show {
  opacity: 0.8;
}

/* Live badge */
.live-badge {
  position: absolute;
  top: calc(var(--nav-height) + 12px);
  right: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}
.live-badge.visible { opacity: 1; }

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 51, 102, 0.5);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 4px rgba(255, 51, 102, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.7), 0 0 20px rgba(255, 51, 102, 0.2);
    transform: scale(1.3);
  }
}

/* ═══════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════ */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* Legacy text headings — hidden, replaced by SVG */
.section-title {
  display: none;
}

/* SVG section headings — gradient text with decorative accent lines */
.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  padding: 0 16px;
}

.sh-svg {
  width: 100%;
  max-width: 440px;
  height: 40px;
  overflow: visible;
}

/* Subtle pulse on the dot accents */
.sh-svg circle {
  animation: sh-dot-pulse 3s ease-in-out infinite;
}

.sh-svg circle:last-of-type {
  animation-delay: 1.5s;
}

@keyframes sh-dot-pulse {
  0%, 100% { opacity: 0.5; r: 2; }
  50% { opacity: 0.9; r: 2.5; }
}

/* ═══════════════════════════════════════════
   HOST CARDS
   ═══════════════════════════════════════════ */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.host-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.host-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.host-card:hover {
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 20px color-mix(in srgb, var(--accent) 8%, transparent);
  transform: translateY(-3px);
}

/* Active/ON AIR host card pulsing glow border */
.host-card.on-air {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  animation: host-on-air 2.5s ease-in-out infinite;
}
@keyframes host-on-air {
  0%, 100% { box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 10%, transparent); }
  50% { box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 20%, transparent); }
}

.host-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto 12px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  overflow: hidden;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 14%, transparent);
  animation: avatar-breathe 4s ease-in-out infinite;
}

@keyframes avatar-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

/* Name + role labels are baked into the portrait PNGs — hide the
   duplicate text in cards that have a portrait. */
.host-card .host-name,
.host-card .host-role {
  display: none;
}

.host-bio {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   TOKEN SECTION
   ═══════════════════════════════════════════ */
.token-section {
  text-align: center;
}

.token-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  margin-top: -12px;
}

.ca-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 520px;
  margin: 0 auto 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.ca-addr {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  word-break: break-all;
  user-select: all;
  cursor: text;
  background: rgba(0, 255, 136, 0.04);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 136, 0.25);
  position: relative;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.ca-row { position: relative; }

/* Copy button checkmark animation */
.btn-copy .copy-check {
  display: inline-block;
  transform: scale(0);
  animation: check-pop 0.3s ease forwards;
}
@keyframes check-pop {
  0% { transform: scale(0) rotate(-45deg); }
  60% { transform: scale(1.2) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.btn-copy {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ca-box:hover .btn-copy {
  opacity: 1;
}
.btn-copy:hover {
  background: rgba(0, 255, 136, 0.2);
  box-shadow: var(--glow-green);
}
.btn-copy.copied {
  background: var(--green);
  color: #000;
}

.token-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-token {
  padding: 8px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border: 1px solid;
}
.btn-pumpfun {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.25);
  color: var(--green);
}
.btn-pumpfun:hover {
  background: rgba(0, 255, 136, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
  opacity: 1;
}
.btn-dex {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--blue);
}
.btn-dex:hover {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  opacity: 1;
}
.btn-solscan {
  background: rgba(168, 85, 247, 0.08);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--purple);
}
.btn-solscan:hover {
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
  opacity: 1;
}

/* Micro press on all token buttons */
.btn-token:hover { transform: scale(1.02); }
.btn-token:active { transform: scale(0.97); }
.btn-copy:active { transform: scale(0.97); }
.token-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}
.stat-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════════ */
.schedule-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.schedule-scroll::-webkit-scrollbar {
  height: 4px;
}
.schedule-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.schedule-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.sched-card {
  flex: 0 0 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--sched-accent, var(--green));
  border-radius: var(--radius-sm);
  padding: 14px;
  scroll-snap-align: start;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Shine sweep on hover */
.sched-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}
.sched-card:hover::after {
  left: 150%;
}
.sched-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.sched-live {
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.04);
}

.sched-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #000;
  background: var(--green);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.sched-next {
  background: var(--blue);
}

.sched-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.sched-host {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.sched-time {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--sched-accent, var(--text-dim));
  opacity: 0.8;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.sched-desc {
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-top: 6px;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   THE FREQUENCY — Community Section
   ═══════════════════════════════════════════ */
.frequency-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 540px;
  margin: -12px auto 20px;
  text-align: center;
}

.frequency-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-frequency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid;
  transition: all 0.25s;
}
.btn-frequency:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.btn-frequency:active {
  transform: scale(0.97);
}

.btn-telegram {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--blue);
}
.btn-telegram:hover {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-stream {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.2);
  color: var(--green);
}
.btn-stream:hover {
  background: rgba(0, 255, 136, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--green);
  opacity: 1;
}

.footer-disclaimer {
  font-size: 0.65rem;
  color: var(--text-dim);
  opacity: 0.5;
  max-width: 500px;
  margin: 0 auto 8px;
  line-height: 1.4;
}

.footer-powered {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  opacity: 0.35;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Mobile polish — momentum scrolling, larger tap targets */
  body {
    -webkit-overflow-scrolling: touch;
  }

  .btn-listen {
    padding: 12px 32px;
    min-height: 48px;
  }

  .btn-listen-nav {
    min-height: 40px;
    padding: 8px 16px;
  }

  .btn-token {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-copy {
    min-height: 40px;
    padding: 8px 16px;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .host-card {
    display: block;
    text-align: center;
    padding: 14px;
  }

  .host-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px;
  }

  .host-bio {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .hero-logo {
    font-size: 2rem;
  }

  .section {
    padding: 24px 12px;
  }

  .section-title {
    font-size: 1.15rem;
  }

  .sh-svg {
    max-width: 320px;
    height: 36px;
  }

  .capsule-player {
    padding: 6px 18px 6px 6px;
  }
  .capsule-status {
    font-size: 0.65rem;
  }

  .token-links {
    flex-direction: column;
    gap: 8px;
  }
  .btn-token {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .token-stats {
    gap: 20px;
  }

  .ca-addr {
    font-size: 0.62rem;
  }

  .live-badge {
    right: 8px;
  }

  .sched-card {
    flex: 0 0 170px;
  }

  .frequency-links {
    flex-direction: column;
  }
  .btn-frequency {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .hosts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════
   ANIMATIONS — Scroll Reveal
   ═══════════════════════════════════════════ */

/* Scroll reveal: elements start hidden, appear on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within reveal-stagger containers */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.3s; }

/* Glow pulse for listen button */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 32px rgba(0, 255, 136, 0.35); }
}

.capsule-player:not(.is-playing) .capsule-play-btn {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Now Playing typewriter cursor */
.np-show.typing {
  border-right: 1px solid var(--green);
  animation: np-cursor 0.7s step-end infinite;
}
@keyframes np-cursor {
  50% { border-color: transparent; }
}

/* Selection color */
::selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   CASCADING BORDER BEAM — travels down cards then back up
   ═══════════════════════════════════════════ */

@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.host-card,
.token-section,
.ca-box {
  position: relative;
  overflow: hidden;
}

.host-card::after,
.token-section::after,
.ca-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg,
    transparent 340deg,
    #00ff88 346deg,
    #00d4ff 352deg,
    #a855f7 357deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: beam-spin 3s linear infinite, beam-cascade var(--cascade-duration, 12s) ease-in-out infinite;
  animation-delay: 0s, var(--cascade-delay, 0s);
  pointer-events: none;
  z-index: 2;
}

@keyframes beam-spin {
  to { --beam-angle: 360deg; }
}

@keyframes beam-cascade {
  0%, 100% { opacity: 0; }
  8%, 20% { opacity: 0.8; }
  25%, 100% { opacity: 0; }
}

/* Cascade timing — each card lights up in sequence then reverses */
/* Down: card 1 → 2 → 3 → 4, then back up: 4 → 3 → 2 → 1 */
/* Total cycle = 12s, each card gets ~1.5s of glow */

.host-card:nth-child(1)::after { --cascade-delay: 0s; --cascade-duration: 12s; }
.host-card:nth-child(2)::after { --cascade-delay: 1.5s; --cascade-duration: 12s; }
.host-card:nth-child(3)::after { --cascade-delay: 3s; --cascade-duration: 12s; }
.host-card:nth-child(4)::after { --cascade-delay: 4.5s; --cascade-duration: 12s; }

/* Token and CA get the beam after the hosts */
.token-section::after { --cascade-delay: 6s; --cascade-duration: 12s; }
.ca-box::after { --cascade-delay: 7.5s; --cascade-duration: 12s; }

/* Schedule cards — subtle top-border glow on hover instead of border beam
   (border beam + overflow:hidden conflicts with scroll container) */
.sched-card {
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.sched-card:hover {
  box-shadow: 0 -2px 16px color-mix(in srgb, var(--sched-accent, #00ff88) 20%, transparent);
}

/* Enhanced footer links with SVG icons */
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: rgba(0, 255, 136, 0.06);
  border-color: rgba(0, 255, 136, 0.2);
  transform: translateY(-2px);
}

.footer-link svg {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-link:hover svg {
  opacity: 1;
}

/* Token link buttons with icons */
.btn-token {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-token svg {
  flex-shrink: 0;
}
