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

:root {
  --bg: #080510;
  --bg-card: #110e1d;
  --bg-elevated: #1a1530;
  --text: #f4f0ff;
  --text-muted: #b0a8c8;
  --text-dim: #6e6490;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
  --accent-dark: #6d28d9;
  --accent-glow: rgba(139, 92, 246, 0.35);
  --teal: #14b8a6;
  --teal-glow: rgba(20, 184, 166, 0.25);
  --spotify: #1DB954;
  --spotify-glow: rgba(29, 185, 84, 0.3);
  --youtube: #FF0033;
  --pink: #ec4899;
  --orange: #f97316;
  --border: rgba(139, 92, 246, 0.1);
  --border-hover: rgba(139, 92, 246, 0.25);
  --gradient-primary: linear-gradient(135deg, #8b5cf6, #ec4899, #f97316);
  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.btn-small {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-spotify {
  background: var(--spotify);
  color: #000;
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--spotify-glow);
}

.btn-youtube {
  background: linear-gradient(135deg, #ff0033, #cc0029);
  color: #fff;
}

.btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 0, 51, 0.35);
}

.btn-outline {
  background: rgba(139, 92, 246, 0.08);
  color: var(--accent-light);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.18);
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-yt-link {
  background: rgba(255, 0, 51, 0.1);
  color: #ff4466;
  border: 1px solid rgba(255, 0, 51, 0.2);
}

.btn-yt-link:hover {
  background: rgba(255, 0, 51, 0.2);
  border-color: rgba(255, 0, 51, 0.35);
  transform: translateY(-1px);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 5, 16, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-2 {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-1 {
  background: linear-gradient(135deg, #14b8a6, #1DB954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(8, 5, 16, 0.95);
  backdrop-filter: blur(24px);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-menu.open {
  display: flex;
}

.mobile-socials {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mobile-socials a {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* Animated mesh dots */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at center, rgba(139, 92, 246, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  background: var(--teal-glow);
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f4f0ff 0%, #a78bfa 40%, #ec4899 70%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.3));
}

.hero h1 .logo-2,
.hero h1 .logo-1 {
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-desc {
  max-width: 560px;
  margin: 0 auto 44px;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-platforms span {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.hero-platforms a {
  color: var(--text-dim);
  transition: all 0.3s;
  padding: 8px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid transparent;
}

.hero-platforms a:hover {
  color: var(--accent-light);
  border-color: var(--border-hover);
  background: rgba(139, 92, 246, 0.12);
  transform: translateY(-2px);
}

/* ===== About ===== */
.about {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--border);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.04), transparent);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f4f0ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topic-tag {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--accent-light);
  transition: all 0.25s;
}

.topic-tag:nth-child(2n) {
  background: rgba(20, 184, 166, 0.08);
  border-color: rgba(20, 184, 166, 0.15);
  color: var(--teal);
}

.topic-tag:nth-child(3n) {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.15);
  color: var(--pink);
}

.topic-tag:nth-child(5n) {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.15);
  color: var(--orange);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
  padding: 32px 16px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.stat:nth-child(2)::before {
  background: linear-gradient(135deg, #14b8a6, #1DB954);
}

.stat:nth-child(3)::before {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat:nth-child(1) .stat-number {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat:nth-child(2) .stat-number {
  background: linear-gradient(135deg, #14b8a6, #1DB954);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat:nth-child(3) .stat-number {
  background: linear-gradient(135deg, #ec4899, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ===== Hosts ===== */
.hosts {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.hosts::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.hosts h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f4f0ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.host-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.host-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent, rgba(20, 184, 166, 0.05));
  opacity: 0;
  transition: opacity 0.4s;
}

.host-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.12);
}

.host-card:hover::before {
  opacity: 1;
}

.host-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #ec4899, #14b8a6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
  padding: 3px;
  overflow: hidden;
}

.host-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.host-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.host-card:nth-child(2) .host-avatar {
  background: linear-gradient(135deg, #14b8a6, #1DB954, #8b5cf6);
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.3);
}

.host-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.host-specialty {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  position: relative;
}

.host-card:nth-child(1) .host-specialty {
  color: var(--accent-light);
  background: rgba(139, 92, 246, 0.12);
}

.host-card:nth-child(2) .host-specialty {
  color: var(--teal);
  background: rgba(20, 184, 166, 0.12);
}

.host-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

.host-bio {
  font-size: 0.82rem !important;
  text-align: left;
  line-height: 1.7 !important;
}

.host-links {
  margin-top: 16px;
  position: relative;
}

.host-link {
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 600;
  transition: color 0.2s;
}

.host-link:hover {
  color: var(--text);
}

/* ===== Episodes ===== */
.episodes {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.episodes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.03), transparent);
  pointer-events: none;
}

.episodes-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.episodes-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #f4f0ff, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.episodes-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.episode-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.episode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.episode-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.08);
}

.episode-card:hover::before {
  opacity: 1;
}

/* Alternate accent stripe colors */
.episode-card:nth-child(2n)::before {
  background: linear-gradient(180deg, #14b8a6, #1DB954);
}

.episode-card:nth-child(3n)::before {
  background: linear-gradient(180deg, #ec4899, #f97316);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

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

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}

.thumbnail-player:hover .video-thumb {
  transform: scale(1.03);
  filter: brightness(0.8);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.85;
  transition: all 0.3s;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.thumbnail-player:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(20, 184, 166, 0.03));
}

.episode-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.episode-number {
  font-size: 0.7rem;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(20, 184, 166, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
}

.episode-date {
  font-size: 0.75rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.episode-duration {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.episode-duration::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
  vertical-align: middle;
  margin-right: 16px;
}

.episode-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.episode-summary {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.episode-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== Transcript ===== */
.transcript {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.transcript.open {
  max-height: 500px;
  overflow-y: auto;
}

.transcript-content p {
  margin-bottom: 12px;
}

.transcript-placeholder {
  font-style: italic;
}

.transcript-content {
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.transcript-content p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.transcript-content em {
  color: var(--text-muted);
}

/* ===== Episodes CTA ===== */
.episodes-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(139, 92, 246, 0.06), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  position: relative;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: auto; }
  .hero h1 { font-size: 3.2rem; letter-spacing: -1.5px; }

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

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .episode-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .episode-info h3 {
    font-size: 1.15rem;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .about-stats { grid-template-columns: 1fr; }
  .stat { padding: 20px; }
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.1); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.2); }
}

.episode-card {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.episode-card:nth-child(1) { animation-delay: 0s; }
.episode-card:nth-child(2) { animation-delay: 0.06s; }
.episode-card:nth-child(3) { animation-delay: 0.12s; }
.episode-card:nth-child(4) { animation-delay: 0.18s; }
.episode-card:nth-child(5) { animation-delay: 0.24s; }
.episode-card:nth-child(6) { animation-delay: 0.3s; }
.episode-card:nth-child(7) { animation-delay: 0.36s; }
.episode-card:nth-child(8) { animation-delay: 0.42s; }
.episode-card:nth-child(9) { animation-delay: 0.48s; }
.episode-card:nth-child(10) { animation-delay: 0.54s; }
.episode-card:nth-child(11) { animation-delay: 0.6s; }

.host-card {
  animation: glowPulse 4s ease-in-out infinite;
}

.host-card:nth-child(2) {
  animation-delay: 2s;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--text);
}
