:root {
  --bg: #0b0d10;
  --surface: #14171c;
  --surface-2: #1b1f26;
  --border: #272c34;
  --text: #e8eaed;
  --muted: #9aa0a6;
  --accent: #4ea1ff;
  --radius: 14px;
  --maxw: 600px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #161a21 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 16px 48px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero: banner with logo overlapping its bottom edge */
.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}

.banner {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.logo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tagline {
  color: var(--muted);
  margin-top: 8px;
  max-width: 42ch;
}

.hosts {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 10px;
}

.hosts a {
  color: var(--accent);
  text-decoration: none;
}

.hosts a:hover {
  text-decoration: underline;
}

/* Latest episode */
.episode {
  width: 100%;
  margin-top: 28px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Link buttons */
.links {
  width: 100%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

.link:hover {
  background: var(--surface-2);
  border-color: #343b45;
}

.link:active {
  transform: translateY(1px);
}

.link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.link__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.link__icon svg {
  width: 100%;
  height: 100%;
}

.link__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.link__handle {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.link--youtube .link__icon {
  color: #ff0033;
}

.link--x .link__icon {
  color: #ffffff;
}

.footer {
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 420px) {
  .banner { height: 140px; }
  .logo { width: 88px; height: 88px; }
  .hero { gap: 22px; }
  .title { font-size: 1.45rem; }
}
