/* ============================================
   KFR LYRICS PAGES — Shared Styles
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--lyrics-bg, #0a0a0a);
  color: rgba(255,255,255,0.85);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.lyrics-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

/* ── Album Header ── */
.lyrics-album-header {
  margin: 80px 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgb(255, 0, 0);
}

.lyrics-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lyrics-accent, rgba(255, 255, 255, 0.6));
  margin-bottom: 10px;
}

.lyrics-album-title {
  font-family: var(--heading-font, 'America Faster', Arial, sans-serif);
  font-size: clamp(38px, 9vw, 88px);
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 14px;
}

.lyrics-album-meta {
  font-size: 12px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lyrics-album-meta b {
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.lyrics-album-meta .sep {
  margin: 0 9px;
  opacity: 0.35;
}

.lyrics-album-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lyrics-album-link {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 5px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.lyrics-album-link:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

.lyrics-album-link.accent {
  border-color: var(--lyrics-accent, rgba(255,255,255,0.35));
  color: var(--lyrics-accent-bright, #fff);
}

/* ── Tracklist ── */
.lyrics-tracklist {
  margin-bottom: 56px;
  padding: 18px 20px 18px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}

.lyrics-tracklist-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 12px;
}

.lyrics-tracklist ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}

.lyrics-tracklist li {
  margin-bottom: 7px;
  break-inside: avoid;
}

.lyrics-tracklist a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.lyrics-tracklist a:hover {
  color: var(--lyrics-accent-bright, #fff);
}

/* ── Individual Track Sections ── */
.lyrics-section {
  margin-top: 72px;
  scroll-margin-top: 80px;
}

.lyrics-section + .lyrics-section {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lyrics-track-num {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: bolder;
  color: var(--track-num-color, #fff);
  text-shadow: 0 0 6px var(--track-num-glow, rgba(255,255,255,0.6)),
               0 0 14px var(--track-num-glow, rgba(255,255,255,0.3));
  animation: track-pulse 3s ease-in-out infinite;
  margin-bottom: 6px;
}

@keyframes track-pulse {
  0%, 100% { text-shadow: 0 0 6px var(--track-num-glow, rgba(255,255,255,0.6)), 0 0 14px var(--track-num-glow, rgba(255,255,255,0.3)); }
  50%      { text-shadow: 0 0 12px var(--track-num-glow, rgba(255,255,255,0.9)), 0 0 28px var(--track-num-glow, rgba(255,255,255,0.5)); }
}

.lyrics-track-title {
  font-family: var(--heading-font, 'America Faster', Arial, sans-serif);
  font-size: clamp(26px, 5.5vw, 52px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 28px;
}

/* ── Lyrics Body ── */
.lyrics-body {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}

.verse-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 26px 0 8px;
}

.verse-label:first-child {
  margin-top: 0;
}

.lyrics-stanza {
  white-space: pre-line;
  margin-bottom: 20px;
}

.lyrics-stanza:last-child {
  margin-bottom: 0;
}

/* ── Bottom Nav ── */
.lyrics-bottom-nav {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ── Hub Page ── */
.lyrics-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.lyrics-hub-card {
  display: block;
  padding: 24px;
  border: 1px solid rgba(255, 0, 0, 0.469);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.664);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.lyrics-hub-card:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.lyrics-hub-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 8px;
}

.lyrics-hub-card-title {
  font-family: var(--heading-font, 'America Faster', Arial, sans-serif);
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.lyrics-hub-card-meta {
  font-size: 12px;
  color: rgb(209, 209, 209);
  letter-spacing: 0.06em;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lyrics-tracklist ol {
    columns: 1;
  }
  .lyrics-body {
    font-size: 14px;
    line-height: 1.8;
  }
  .lyrics-album-header {
    margin-top: 70px;
  }
  .lyrics-hub-grid {
    grid-template-columns: 1fr;
  }
}
