:root {
  --bg-soft: rgba(20, 24, 50, 0.55);
  --text: #ece9de;
  --text-dim: #a8a497;
  --text-faint: #6f6a5d;
  --accent: #ffd84d;
  --accent-2: #ff4d99;
  --rule: rgba(180, 180, 200, 0.18);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  color: var(--text);
  font-family: 'Space Mono', 'Courier New', monospace;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #0c1230;
  background-image:
    linear-gradient(rgba(8, 10, 28, 0.35), rgba(8, 10, 28, 0.45)),
    url('/assets/bg/space.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }
.page { max-width: 720px; margin: 0 auto; padding: 1rem 1.25rem 4rem; }

.topnav {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.topnav .brand { color: var(--text); font-weight: 700; letter-spacing: 0.02em; }
.topnav .brand:hover { color: var(--accent); text-decoration: none; }
.topnav .sep { color: var(--text-faint); }
.topnav .link { color: var(--text-dim); }
.topnav .link:hover { color: var(--accent); text-decoration: none; }

.title-block { margin-bottom: 1.5rem; position: relative; }
.title {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(1.85rem, 7vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  padding-right: 4.5rem;
}
.subtitle { font-size: 0.92rem; color: var(--text-dim); }
.subtitle .artist { color: var(--text); }
.year {
  position: absolute; top: 0; right: 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--accent); line-height: 1;
}
.meta-line { margin-top: 0.5rem; font-size: 0.75rem; color: var(--text-faint); letter-spacing: 0.05em; }

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 560px) {
  .main-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.cover {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
}
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.right-col { display: flex; flex-direction: column; gap: 1rem; }
.player {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  padding: 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.85rem;
  transition: border-color 0.15s ease;
}
.player:hover { border-color: var(--accent); text-decoration: none; color: var(--text); }
.player-icon { color: var(--accent); font-size: 1rem; line-height: 1; }
.player-text { flex: 1; }
.player-label { color: var(--text); display: block; }
.player-source { display: block; color: var(--text-dim); font-size: 0.72rem; margin-top: 0.1rem; }

.listen-strip {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  align-items: center;
}
.listen-strip .label { color: var(--text-faint); letter-spacing: 0.05em; }
.listen-strip a { border-bottom: 1px dotted; }
.listen-strip a:hover { border-bottom-style: solid; text-decoration: none; }
.listen-strip .sep { color: var(--text-faint); }

.blurb {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--text);
}
.blurb p { margin-bottom: 0.85rem; }
.blurb p:last-child { margin-bottom: 0; }

.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
}
@media (max-width: 560px) {
  .meta-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.meta-section h3 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
  font-weight: 700;
}
.meta-section ul { list-style: none; }
.meta-section li { font-size: 0.85rem; line-height: 1.6; color: var(--text); }
.meta-section a { border-bottom: 1px dotted; }
.meta-section a:hover { border-bottom-style: solid; text-decoration: none; }

.footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
