/* ================================================================
   COLOR TOKENS — SMPTE color bars (EG 1-1990, 75% bars)
   ================================================================ */
:root {
  --gray:    #C0C0C0;
  --yellow:  #C0C000;
  --cyan:    #00C0C0;
  --green:   #00C000;
  --magenta: #C000C0;
  --red:     #C00000;
  --blue:    #0000C0;
  --neg-i:   #00214C;
  --pos-q:   #32006A;
  --pluge-1: #090909;
  --pluge-2: #131313;
  --pluge-3: #1D1D1D;

  /* light theme surfaces */
  --bg: #E6E6E6;
  --surface: #FFFFFF;
  --ink: #000000;
  --muted: #4A4A4A;
  --line: rgba(0,0,0,.14);
  --nav-bg: rgba(230,230,230,.82);
  --logo-filter: invert(1);
  --row-hover: rgba(0,0,0,.05);

  --wide: "Archivo", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #000000; --surface: #161616; --ink: #FFFFFF; --muted: #A8A8A8;
    --line: rgba(255,255,255,.14); --nav-bg: rgba(0,0,0,.78);
    --logo-filter: none; --row-hover: rgba(255,255,255,.06);
  }
}
:root[data-theme="dark"] {
  --bg: #000000; --surface: #161616; --ink: #FFFFFF; --muted: #A8A8A8;
  --line: rgba(255,255,255,.14); --nav-bg: rgba(0,0,0,.78);
  --logo-filter: none; --row-hover: rgba(255,255,255,.06);
}

*, *::before, *::after { box-sizing: inherit; }
html { scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 72px); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--wide); font-stretch: 100%; font-size: 1.0625rem; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* ================================================================
   NAV + scroll progress strip
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(-100%); transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.nav.is-in { transform: none; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; height: 64px; padding: 0 clamp(16px,4vw,40px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo img { height: 30px; width: auto; filter: var(--logo-filter); }
.nav-links { display: flex; gap: clamp(14px,3vw,34px); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-stretch: 112%; font-size: .95rem;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--c); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); }
.progress { display: flex; height: 4px; }
.progress span { flex: 1; }
.progress-mask {
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--bg);
  transform-origin: right; will-change: transform;
}

/* ================================================================
   HERO — full-frame SMPTE test card
   ================================================================ */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden; background: #000; }
.bars { position: absolute; inset: 0; display: flex; flex-direction: column; }
.row { display: flex; }
.row-1 { flex: 67; } .row-2 { flex: 8; } .row-3 { flex: 25; }
.row > i { display: block; flex: 1; }
.row-1 > i { transform-origin: top; animation: drop .9s cubic-bezier(.7,0,.2,1) both; }
.row-1 > i:nth-child(1){animation-delay:.05s} .row-1 > i:nth-child(2){animation-delay:.11s}
.row-1 > i:nth-child(3){animation-delay:.17s} .row-1 > i:nth-child(4){animation-delay:.23s}
.row-1 > i:nth-child(5){animation-delay:.29s} .row-1 > i:nth-child(6){animation-delay:.35s}
.row-1 > i:nth-child(7){animation-delay:.41s}
.row-2, .row-3 { animation: fadein .5s .8s both; }
.row-3 > i.w5 { flex: 5; } .row-3 > i.w4 { flex: 4; } .row-3 > i.w43 { flex: 1.3333; }
@keyframes drop { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* static flicker between bars and slate */
.static {
  position: absolute; inset: 0; pointer-events: none; opacity: 0; mix-blend-mode: difference;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: flicker .5s 1.25s steps(4) both;
}
@keyframes flicker { 0%{opacity:0} 25%{opacity:.9; background-position:0 0} 50%{opacity:.6; background-position:40px 70px} 75%{opacity:.85; background-position:90px 20px} 100%{opacity:0} }

.slate-wrap { position: absolute; inset: 0; display: grid; place-items: center; padding: 88px 16px 24px; }
.slate {
  width: min(660px, 100%); background: #000; color: #fff; border-radius: 14px;
  padding: clamp(24px,4.5vw,44px) clamp(20px,4.5vw,48px) clamp(22px,3.5vw,34px);
  box-shadow: 0 0 0 4px #000, 0 30px 80px rgba(0,0,0,.55);
  text-align: center; animation: slatein .7s 1.55s cubic-bezier(.2,.9,.2,1) both;
}
@keyframes slatein { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: none; } }
.slate-logo { width: 100%; height: auto; animation: rgbsplit 1.1s 1.7s ease-out both; }
@keyframes rgbsplit {
  0%   { filter: drop-shadow(-14px 0 0 rgba(255,0,0,.9)) drop-shadow(14px 0 0 rgba(0,255,255,.9)); transform: skewX(-8deg); }
  20%  { filter: drop-shadow(8px 0 0 rgba(255,0,255,.9)) drop-shadow(-8px 0 0 rgba(0,255,0,.9)); transform: skewX(4deg) translateX(-6px); }
  45%  { filter: drop-shadow(-4px 0 0 rgba(255,0,0,.8)) drop-shadow(4px 0 0 rgba(0,0,255,.8)); transform: none; }
  100% { filter: drop-shadow(0 0 0 rgba(0,0,0,0)); transform: none; }
}
.slate-tag { margin: 18px 0 22px; font-stretch: 112%; font-weight: 500; color: #CFCFCF; font-size: clamp(.95rem, 2.2vw, 1.1rem); }
.slate-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; border: 0; border-radius: 999px;
  padding: 13px 22px; font-weight: 800; font-stretch: 112%; font-size: .95rem; text-decoration: none;
  transition: transform .2s, background-color .2s, color .2s;
}
.btn:active { transform: scale(.96); }
.btn-solid { background: #fff; color: #000; }
.btn-solid:hover { background: var(--yellow); }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.4); }
.btn-ghost:hover { box-shadow: inset 0 0 0 2px #fff; }
.btn svg { width: 16px; height: 16px; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { max-width: 1280px; margin: 0 auto; padding: clamp(72px,11vw,140px) clamp(16px,4vw,40px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(28px,4vw,48px); }
.section-title {
  margin: 0; font-weight: 900; font-stretch: 125%; line-height: .88; letter-spacing: -.035em;
  font-size: clamp(3rem, 10vw, 8.5rem);
}
.section-title::after { content: ""; display: block; height: .12em; width: 1.6em; margin-top: .16em; background: var(--c); }
.section-note { margin: 0; color: var(--muted); max-width: 34ch; font-stretch: 100%; }

/* Albums */
.albums { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.album { background: none; border: 0; padding: 0; text-align: left; }
.cover { position: relative; aspect-ratio: 1; border-radius: 4px; overflow: hidden; background: #000; }
.cover > svg, .cover > img { width: 100%; height: 100%; object-fit: cover; }
.album .cover { transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; }
.album:hover .cover, .album:focus-visible .cover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 3px var(--c, var(--yellow)); }
.album h3 { margin: 16px 0 2px; font-weight: 800; font-stretch: 118%; font-size: 1.3rem; line-height: 1.15; }
.album p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Singles */
.singles { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.single {
  display: grid; grid-template-columns: 64px 1fr auto auto; align-items: center; gap: clamp(12px,2.5vw,28px);
  padding: 14px 12px 14px 0; border-bottom: 1px solid var(--line); position: relative;
  transition: background-color .2s, padding-left .35s cubic-bezier(.2,.8,.2,1);
}
.single::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--c); transform: scaleY(0); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.single:hover { background: var(--row-hover); }
.single.is-playing { padding-left: 20px; }
.single.is-playing::before { transform: scaleY(1); }
.single .cover { width: 64px; border-radius: 3px; }
.single h3 { margin: 0; font-weight: 800; font-stretch: 115%; font-size: clamp(1.1rem, 2.4vw, 1.5rem); line-height: 1.15; }
.single .meta { color: var(--muted); font-size: .92rem; }
.single .dur { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.play {
  width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--ink); color: var(--bg);
  display: grid; place-items: center; transition: transform .2s, background-color .2s;
}
.play:hover { transform: scale(1.08); background: var(--c); color: #000; }
.play svg { width: 18px; height: 18px; }

/* About */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 6vw, 80px); align-items: start; }
.badge { background: #000; border-radius: 14px; padding: 12%; aspect-ratio: 1; display: grid; place-items: center; position: relative; overflow: hidden; }
.badge img { width: 100%; height: auto; position: relative; }
.badge-bars { position: absolute; left: 0; right: 0; bottom: 0; height: 10px; display: flex; }
.badge-bars i { flex: 1; }
.about-text p { margin: 0 0 1.1em; max-width: 62ch; font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.about-text p:first-child { font-weight: 700; font-stretch: 110%; font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.3; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; margin: 32px 0 0; border-top: 2px solid var(--ink); }
.facts div { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: .9rem; }
.facts dd { margin: 2px 0 0; font-weight: 800; font-stretch: 115%; font-size: 1.15rem; }

/* Footer */
.footer { max-width: 1280px; margin: clamp(90px, 12vw, 150px) auto 0; padding: 0 clamp(16px,4vw,40px) 40px; }
body.has-player .footer { padding-bottom: 130px; }
.footer-top { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 2px solid var(--ink); }
.footer-mail { font-weight: 900; font-stretch: 125%; font-size: clamp(1.5rem, 5vw, 3.2rem); line-height: 1; text-decoration: none; letter-spacing: -.02em; overflow-wrap: anywhere; }
.footer-mail:hover { color: var(--magenta); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.socials a { display: inline-block; padding: 9px 16px; border-radius: 999px; box-shadow: inset 0 0 0 2px var(--line); text-decoration: none; font-weight: 700; font-stretch: 110%; font-size: .92rem; transition: box-shadow .2s, background-color .2s, color .2s; }
.socials a:hover { background: var(--ink); color: var(--bg); box-shadow: none; }
.footer small { display: block; margin-top: 36px; color: var(--muted); }
.footer-strip { display: flex; height: 10px; margin-top: 16px; }
.footer-strip i { flex: 1; }

/* ================================================================
   PLAYER BAR
   ================================================================ */
.player {
  position: fixed; left: 12px; right: 12px; bottom: 0; z-index: 60;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateY(130%); transition: transform .55s cubic-bezier(.2,.9,.2,1);
  pointer-events: none;
}
.player.is-open { transform: none; pointer-events: auto; }
.player-inner {
  max-width: 860px; margin: 0 auto; background: #000; color: #fff; border-radius: 14px;
  display: grid; grid-template-columns: 52px 1fr auto auto; align-items: center; gap: 14px;
  padding: 10px 12px 14px 10px; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.1);
}
.player .cover { width: 52px; border-radius: 3px; }
.p-title { font-weight: 800; font-stretch: 112%; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-sub { font-size: .82rem; color: #A8A8A8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eq { display: flex; align-items: end; gap: 3px; height: 26px; }
.eq i { width: 5px; height: 100%; transform-origin: bottom; animation: eq .9s ease-in-out infinite alternate; animation-play-state: paused; transform: scaleY(.2); }
.eq i:nth-child(1){background:var(--yellow);animation-duration:.7s} .eq i:nth-child(2){background:var(--cyan);animation-duration:1.05s}
.eq i:nth-child(3){background:var(--green);animation-duration:.8s} .eq i:nth-child(4){background:var(--magenta);animation-duration:1.2s}
.eq i:nth-child(5){background:var(--red);animation-duration:.95s}
.player.is-playing .eq i { animation-play-state: running; }
@keyframes eq { 0%{transform:scaleY(.15)} 50%{transform:scaleY(1)} 100%{transform:scaleY(.4)} }
.p-btns { display: flex; gap: 6px; }
.p-btn { width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; color: #000; display: grid; place-items: center; }
.p-btn.x { background: transparent; color: #fff; }
.p-btn.x:hover { background: rgba(255,255,255,.15); }
.p-btn svg { width: 16px; height: 16px; }
.p-track { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.15); cursor: pointer; }
.p-fill { height: 100%; width: 0; background: var(--c, var(--cyan)); }

/* ================================================================
   RESPONSIVE + MOTION PREFS
   ================================================================ */
@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; }
  .badge { max-width: 320px; }
  .single { grid-template-columns: 56px 1fr auto; }
  .single .cover { width: 56px; }
  .single .dur { display: none; }
  .eq { display: none; }
  .player-inner { grid-template-columns: 48px 1fr auto; }
  .nav-links a { font-size: .88rem; }
}
@media (max-width: 420px) { .nav-logo img { height: 24px; } .nav-links { gap: 12px; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .eq i { transform: scaleY(.6); }
}
/* ================================================================
   INDIVIDUAL PAGES (album + song)
   ================================================================ */
[hidden] { display: none !important; }
.view-enter { animation: viewin .5s cubic-bezier(.2,.9,.2,1) both; }
@keyframes viewin { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.intro-done .hero *, .intro-done .hero { animation: none !important; }

.album { text-decoration: none; display: block; }
.single h3 a { text-decoration: none; }
.single h3 a:hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--c); text-underline-offset: 4px; }

.page { max-width: 1280px; margin: 0 auto; padding: calc(96px + env(safe-area-inset-top, 0px)) clamp(16px,4vw,40px) 0; }
.back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; font-stretch: 110%; color: var(--muted); margin-bottom: clamp(20px,3vw,36px); }
.back:hover { color: var(--ink); }
.back svg { width: 16px; height: 16px; }

.release { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: end; }
.release > .cover { border-radius: 6px; box-shadow: 0 30px 70px rgba(0,0,0,.35), 0 0 0 4px var(--c); }
.kind { margin: 0 0 10px; font-weight: 700; font-stretch: 110%; color: var(--muted); }
.kind a { color: var(--ink); text-decoration-color: var(--c); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.release h1 {
  margin: 0; font-weight: 900; font-stretch: 125%; line-height: .9; letter-spacing: -.035em;
  font-size: clamp(2.8rem, 8vw, 7rem); overflow-wrap: anywhere;
}
.release h1::after { content: ""; display: block; height: .1em; width: 1.4em; margin-top: .18em; background: var(--c); }
.release-meta { margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }
.release-meta strong { color: var(--ink); font-weight: 700; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--c); color: #000; }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-line:hover { box-shadow: inset 0 0 0 2px var(--ink); }

.block { margin-top: clamp(56px, 8vw, 100px); }
.block-title { margin: 0 0 20px; font-weight: 900; font-stretch: 125%; letter-spacing: -.02em; line-height: 1; font-size: clamp(1.8rem, 4vw, 3rem); }
.prose p { margin: 0 0 1em; max-width: 64ch; font-size: clamp(1.02rem, 1.5vw, 1.15rem); }

.tracklist { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--ink); }
.trk {
  display: grid; grid-template-columns: 2.4em minmax(0,1fr) auto auto auto; align-items: center; gap: clamp(10px,2vw,24px);
  padding: 12px 0; border-bottom: 1px solid var(--line); position: relative;
  transition: background-color .2s, padding-left .35s cubic-bezier(.2,.8,.2,1);
}
.trk:hover { background: var(--row-hover); }
.trk.is-playing { padding-left: 14px; }
.trk::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--c); transform: scaleY(0); transition: transform .35s; }
.trk.is-playing::before { transform: scaleY(1); }
.trk .n { color: var(--muted); font-variant-numeric: tabular-nums; font-weight: 600; }
.trk a { text-decoration: none; font-weight: 800; font-stretch: 112%; font-size: clamp(1.02rem, 2vw, 1.25rem); }
.trk a:hover { text-decoration: underline; text-decoration-color: var(--c); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.trk .feat { color: var(--muted); font-weight: 500; font-size: .95rem; }
.trk .has-lyrics { font-size: .82rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; box-shadow: inset 0 0 0 2px var(--line); color: var(--muted); }
.trk .dur { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.trk .play { width: 40px; height: 40px; }
.trk .play svg { width: 15px; height: 15px; }

.info-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: start; }
.credits { margin: 0; border-top: 2px solid var(--ink); }
.credits div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.credits dt { color: var(--muted); }
.credits dd { margin: 0; font-weight: 700; }
.aside-block + .aside-block { margin-top: 44px; }
.aside-title { margin: 0 0 14px; font-weight: 800; font-stretch: 118%; font-size: 1.3rem; }

/* Lyrics */
.lyrics { font-stretch: 100%; }
.lyr-sec { padding-left: 20px; border-left: 4px solid var(--line); margin-bottom: 34px; transition: border-color .3s; }
.lyr-sec:hover { border-left-color: var(--c); }
.lyr-tag { font-weight: 800; font-stretch: 115%; font-size: .95rem; color: var(--muted); margin-bottom: 8px; }
.lyr-sec p { margin: 0; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.6; font-weight: 600; }
.lyr-sec p .rep { color: var(--muted); font-weight: 500; font-style: italic; }
.lyr-empty { padding: 28px; border-radius: 6px; box-shadow: inset 0 0 0 2px var(--line); color: var(--muted); }
.lyr-empty strong { display: block; color: var(--ink); font-size: 1.2rem; margin-bottom: 4px; }

.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: clamp(56px, 8vw, 100px); border-top: 2px solid var(--ink); padding-top: 20px; }
.pager a { text-decoration: none; display: block; padding: 6px 0; }
.pager a:last-child { text-align: right; }
.pager small { display: block; color: var(--muted); font-size: .9rem; }
.pager span { font-weight: 900; font-stretch: 120%; font-size: clamp(1.1rem, 2.6vw, 1.7rem); line-height: 1.1; }
.pager a:hover span { color: var(--c); }

.p-title a { text-decoration: none; }
.p-title a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .release { grid-template-columns: 1fr; align-items: start; }
  .release > .cover { max-width: min(340px, 100%); }
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .trk { grid-template-columns: 2em minmax(0,1fr) auto; }
  .trk .has-lyrics, .trk .dur { display: none; }
  .pager { grid-template-columns: 1fr; }
  .pager a:last-child { text-align: left; }
}
