/* ============================================
   Music page — local styles
   Relocated from the spine head_extra inline <style> (B3, the B2 friction's
   named home). Loaded via the spine's extra_css mechanism. The dead highlight
   hues are remapped to the identity (cool counterpoint + gold ramp, N55).
   ============================================ */

.track-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.track-card {
  padding: var(--space-2xl);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--link), var(--accent), var(--accent-light));
  opacity: 0.6;
}

.track-card:hover {
  background: var(--bg-card-hover);
}

.track-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.track-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.track-info h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.track-info .track-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.track-card audio {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-sm);
  outline: none;
}

.disclaimer {
  margin-top: var(--space-3xl);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  text-align: center;
}

.disclaimer p {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-style: italic;
}
