:root {
  --bg:
    radial-gradient(850px 420px at 10% -10%, rgba(108, 136, 187, 0.26) 0%, rgba(8, 13, 22, 0) 58%),
    linear-gradient(180deg, #0b1220 0%, #070d18 100%);
  --surface: rgba(13, 20, 35, 0.9);
  --surface-soft: rgba(19, 28, 45, 0.9);
  --line: #2a3956;
  --text: #e8edf7;
  --muted: #a8b6d0;
  --accent: #9fd0ff;
  --accent-strong: #d7ebff;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-stack);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

.top-nav {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 20, 35, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
}

.brand {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  padding-left: 10px;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pill {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 24, 40, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.pill:hover {
  border-color: #4b74ab;
}

.hero {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(18, 28, 46, 0.9);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
}

.btn.primary {
  background: #eaf4ff;
  color: #0f1a2b;
  border-color: #9ec7ee;
}

.btn:hover {
  border-color: #6f8fb8;
}

.section {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 18px 16px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 23px;
  font-weight: 700;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.82);
  padding: 16px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li {
  margin-bottom: 8px;
}

.songs-list li {
  margin-bottom: 10px;
}

.songs-list a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.songs-list li.artist-break {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(74, 96, 132, 0.45);
}

.meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #c8d4e8;
  font-size: 17px;
  line-height: 1.45;
}

.footer {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

@media (max-width: 760px) {
  .top-nav {
    border-radius: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    padding-left: 2px;
  }

  .pill-links {
    width: 100%;
    justify-content: flex-start;
  }

  .pill {
    padding: 10px 12px;
    min-height: 40px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 18px 16px;
  }

  h1 {
    font-size: clamp(28px, 10vw, 34px);
  }
}
