:root {
  --bg: #1177c4;
  --bg-alt: #0c5c9c;
  --text: #f5f8fc;
  --text-dim: #d9ecfb;
  --accent: #d62828;
  --accent-2: #f5e400;
  --accent-3: #1ca7e0;
  --apple: #fa243c;
  --spotify: #1db954;
  --youtube: #ff0033;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(9, 58, 99, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-sub {
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
.header-nav a:hover { color: var(--text); }

main { position: relative; z-index: 1; }

.hero {
  text-align: center;
  padding: 96px 24px 64px;
}

.logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 0 48px;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 210px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.platform-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.06);
}

.platform-btn .icon {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.platform-btn .icon svg { width: 20px; height: 20px; }

.platform-btn.apple .icon { background: var(--apple); color: #fff; }
.platform-btn.apple:hover { border-color: var(--apple); }

.platform-btn.spotify .icon { background: var(--spotify); color: #fff; }
.platform-btn.spotify:hover { border-color: var(--spotify); }

.platform-btn.youtube .icon { background: var(--youtube); color: #fff; }
.platform-btn.youtube:hover { border-color: var(--youtube); }

.platform-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.platform-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.platform-name {
  font-weight: 700;
  font-size: 1rem;
}

.follow {
  padding: 40px 24px 96px;
  text-align: center;
}

.follow h2 {
  font-size: 1.4rem;
  margin: 0 0 28px;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}

.host-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
}

.host-card h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--accent-2);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease;
}
.social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.social-link .icon {
  width: 24px;
  height: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}
.social-link .icon svg { width: 14px; height: 14px; }

.social-link.x .icon { background: #000; }
.social-link.threads .icon { background: #000; }
.social-link.bluesky .icon { background: #1185fe; }

.latest {
  padding: 40px 24px 0;
  text-align: center;
  max-width: 700px;
}

.latest h2 {
  font-size: 1.6rem;
  margin: 0 0 24px;
}

.spotify-embed {
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
}

.about {
  padding: 40px 24px 40px;
  text-align: center;
  max-width: 700px;
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.about p {
  color: var(--text-dim);
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 28px 24px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 480px) {
  .platform-btn { min-width: 0; width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links a { margin: 0 8px; }
}
