:root {
  --green: #1DB954;
  --green-dark: #148f3f;
  --green-light: #1ed760;
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --text-dim: #666;
  --border: #222;
  --radius: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-light); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
header {
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--green); letter-spacing: -0.5px; }
.logo span { color: var(--text); }
header nav a { color: var(--text-muted); margin-left: 24px; font-size: .95rem; font-weight: 500; }
header nav a:hover { color: var(--green); }

/* HERO */
.hero {
  text-align: center; padding: 80px 24px 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(29,185,84,.12) 0%, transparent 60%);
}
.hero h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .accent { color: var(--green); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 680px; margin: 0 auto 30px; }
.hero .cta {
  display: inline-block; background: var(--green); color: #000; padding: 14px 36px;
  border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all .2s;
}
.hero .cta:hover { background: var(--green-light); color: #000; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,185,84,.3); }

/* PODCAST GRID */
.section-title { font-size: 1.8rem; font-weight: 800; margin: 50px 0 30px; text-align: center; }
.podcast-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; padding-bottom: 60px;
}
.podcast-card {
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  transition: all .25s; border: 1px solid var(--border); cursor: pointer;
}
.podcast-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); border-color: var(--green); }
.podcast-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.podcast-card .info { padding: 16px; }
.podcast-card .info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.podcast-card .info p { font-size: .85rem; color: var(--text-muted); }

/* PODCAST PAGE */
.podcast-header {
  display: flex; gap: 32px; align-items: flex-start; padding: 50px 0 40px;
  border-bottom: 1px solid var(--border);
}
.podcast-header img { width: 220px; height: 220px; border-radius: var(--radius); object-fit: cover; flex-shrink: 0; }
.podcast-header .details h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.podcast-header .details .host { color: var(--green); font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.podcast-header .details p { color: var(--text-muted); font-size: .95rem; margin-bottom: 16px; }
.listen-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.spotify-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #000; padding: 10px 24px;
  border-radius: 50px; font-weight: 700; font-size: .9rem; transition: all .2s;
}
.spotify-btn:hover { background: var(--green-light); color: #000; }
.apple-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #9b59b6; color: #fff; padding: 10px 24px;
  border-radius: 50px; font-weight: 700; font-size: .9rem; transition: all .2s;
}
.apple-btn:hover { background: #a86bc4; color: #fff; }

/* EPISODE LIST */
.episode-list { padding: 30px 0 60px; }
.episode-list h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; color: var(--text-muted); }
.episode-row {
  display: flex; align-items: center; padding: 14px 16px; gap: 16px;
  border-bottom: 1px solid var(--border); transition: background .15s;
}
.episode-row:hover { background: var(--bg-card); }
.episode-rank {
  font-size: 1.1rem; font-weight: 700; color: var(--text-dim);
  min-width: 36px; text-align: center;
}
.episode-rank.top3 { color: var(--green); font-size: 1.3rem; }
.episode-info { flex: 1; min-width: 0; }
.episode-info .title { font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.episode-info .title a { color: var(--text); }
.episode-info .title a:hover { color: var(--green); }
.episode-info .title span { color: var(--text); }
.episode-date { color: var(--text-dim); font-size: .78rem; margin-top: 3px; }
.listen-link {
  color: var(--text-muted); font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px;
  transition: all .15s; white-space: nowrap;
}
.listen-link:hover { border-color: var(--green); color: var(--green); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 40px 0; text-align: center; color: var(--text-dim); font-size: .85rem; }
footer a { color: var(--text-muted); }

/* SEO CONTENT */
.seo-block { padding: 40px 0; color: var(--text-muted); font-size: .9rem; max-width: 800px; margin: 0 auto; }
.seo-block h2 { color: var(--text); font-size: 1.3rem; margin-bottom: 12px; }
.seo-block p { margin-bottom: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .podcast-header { flex-direction: column; align-items: center; text-align: center; }
  .podcast-header img { width: 160px; height: 160px; }
  .episode-row { flex-wrap: wrap; }
  .listen-link { display: none; }
  .episode-date { display: none; }
}

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--text-dim); }
.breadcrumb a { color: var(--text-muted); }

/* DISCLAIMER */
.disclaimer {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; margin: 30px 0; font-size: .82rem; color: var(--text-dim);
}

/* FAQ SECTION */
.faq-section { padding: 40px 0; max-width: 800px; margin: 0 auto; }
.faq-section h2 { color: var(--text); font-size: 1.4rem; margin-bottom: 20px; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.faq-item h3 { color: var(--text); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); font-size: .9rem; }

/* RELATED PODCASTS */
.related-section { padding: 40px 0; border-top: 1px solid var(--border); }
.related-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.related-card {
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .2s;
}
.related-card:hover { border-color: var(--green); transform: translateY(-2px); }
.related-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-card .info { padding: 12px; }
.related-card .info h3 { font-size: .9rem; font-weight: 600; color: var(--text); }
.related-card .info p { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* CATEGORY TAG */
.category-tag {
  display: inline-block; background: rgba(29,185,84,.15); color: var(--green);
  padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600;
  margin-bottom: 12px;
}

/* ABOUT/METHODOLOGY PAGES */
.page-content { max-width: 800px; margin: 0 auto; padding: 50px 0 60px; }
.page-content h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 24px; }
.page-content h2 { font-size: 1.4rem; font-weight: 700; margin-top: 36px; margin-bottom: 12px; color: var(--text); }
.page-content h3 { font-size: 1.1rem; font-weight: 600; margin-top: 24px; margin-bottom: 8px; color: var(--text); }
.page-content p { color: var(--text-muted); font-size: .95rem; margin-bottom: 14px; }
.page-content a { color: var(--green); }