:root {
  --bg: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;

  --ink: #ededed;
  --ink-soft: #a1a1a1;
  --ink-mute: #707070;
  --ink-faint: #4a4a4a;

  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.13);
  --border-glow: rgba(255, 255, 255, 0.22);

  --accent: #ffffff;
  --link: #ededed;

  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #999999 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  --gradient-card-hover: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);

  --sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --num: "Geist Mono", "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  font-size: 16px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.005em;
}
main { flex: 1 0 auto; }

::selection { background: rgba(255, 255, 255, 0.16); color: var(--ink); }

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: #fff; }

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 720px) { .wrap { padding: 0 1rem; } }

.content { padding: 4rem 0 8rem; }
@media (max-width: 720px) { .content { padding: 2rem 0 4rem; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s var(--ease-out) both; }
.fade-up-1 { animation: fadeUp 0.6s var(--ease-out) 0.05s both; }
.fade-up-2 { animation: fadeUp 0.6s var(--ease-out) 0.1s both; }
.fade-up-3 { animation: fadeUp 0.6s var(--ease-out) 0.15s both; }
.fade-up-4 { animation: fadeUp 0.6s var(--ease-out) 0.2s both; }
.fade-up-5 { animation: fadeUp 0.6s var(--ease-out) 0.25s both; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: saturate(1.8) blur(16px);
  -webkit-backdrop-filter: saturate(1.8) blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 56px;
}
.brand {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}
.brand:hover { color: var(--ink); }

.primary-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.85rem;
  font-weight: 400;
}
.primary-nav a {
  color: var(--ink-mute);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.15s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a.active { color: var(--ink); }

.crumbs {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { padding: 0 0.5rem; color: var(--ink-faint); }

.hero {
  margin: 4rem 0 5rem;
  max-width: 720px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.02;
  color: var(--ink);
  font-weight: 500;
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
}

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.035em; font-weight: 500; }
h2 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  margin: 4rem 0 1.5rem;
  font-weight: 500;
  color: var(--ink);
}
h3 {
  font-size: 1.05rem;
  margin: 2rem 0 0.75rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
@media (max-width: 720px) {
  h2 { font-size: 1.2rem; margin-top: 3rem; }
}

section + section { margin-top: 5rem; }

.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 2rem 1.5rem;
  background: var(--bg);
  position: relative;
  transition: background 0.25s var(--ease);
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-card-hover);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.game-card:hover::before { opacity: 1; }
.game-card-art {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.game-card-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: transform 0.4s var(--ease-out);
}
.game-card:hover .game-card-art img { transform: scale(1.04); }
.game-card-meta {
  position: relative;
  z-index: 1;
  text-align: left;
}
.game-card-title {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.game-card-sub {
  font-size: 0.8rem;
  color: var(--ink-mute);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.game-card-sub .dot { color: var(--ink-faint); }
.game-card-stats {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-family: var(--num);
  font-feature-settings: "tnum";
}

.game-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  margin: 1rem 0 5rem;
  align-items: center;
}
.game-hero-art {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-hero-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.game-hero-body h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  line-height: 1.05;
}
.game-hero-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 2rem;
  margin: 0 0 2rem;
  font-size: 0.88rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.game-hero-meta dt {
  color: var(--ink-mute);
  font-weight: 400;
}
.game-hero-meta dd { margin: 0; color: var(--ink); }
.game-hero-desc {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
  max-width: 60ch;
}
@media (max-width: 860px) {
  .game-hero { grid-template-columns: 1fr; gap: 2rem; }
  .game-hero-art { max-width: 280px; height: 320px; }
}

.station-table {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 1rem 0 0;
}
.station-row {
  display: grid;
  grid-template-columns: 48px 110px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
  position: relative;
}
.station-row:last-child { border-bottom: none; }
.station-row:hover { background: rgba(255, 255, 255, 0.02); }
.station-row .num {
  font-family: var(--num);
  font-feature-settings: "tnum";
  color: var(--ink-faint);
  font-size: 0.78rem;
  text-align: right;
  transition: color 0.2s var(--ease);
}
.station-row:hover .num { color: var(--ink-soft); }
.station-row-art {
  width: 110px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.station-row-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.station-row-body { min-width: 0; }
.station-row-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.station-row-genre {
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.station-row-stat {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .station-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 0.85rem 1rem;
  }
  .station-row .num, .station-row-stat { display: none; }
  .station-row-art { width: 80px; height: 56px; }
}

.station-page {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 980px) {
  .station-page { grid-template-columns: 1fr; gap: 2rem; }
}

.station-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  margin: 1rem 0 4rem;
  align-items: end;
}
.station-hero-art {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.station-hero-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.station-hero-body h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.station-hero-tag {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  max-width: 50ch;
  line-height: 1.55;
}
.station-hero-stats {
  display: flex;
  gap: 2.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.station-hero-stats .stat-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.station-hero-stats .stat-value {
  color: var(--ink);
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-size: 0.95rem;
}
.station-hero-stats .stat-value.alpha { font-family: var(--sans); }
@media (max-width: 720px) {
  .station-hero { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .station-hero-art { max-width: 240px; height: 240px; }
}

.infobox {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.85rem;
  position: sticky;
  top: 80px;
  overflow: hidden;
}
.infobox-title {
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--border);
}
.infobox-rows { padding: 0.5rem 0; }
.infobox-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.6rem 1.25rem;
  align-items: baseline;
}
.infobox-label {
  color: var(--ink-mute);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.infobox-value { color: var(--ink); font-size: 0.88rem; line-height: 1.4; }
.infobox-value ul { margin: 0; padding-left: 0; list-style: none; }
.infobox-value li { margin: 0.05rem 0; }

.station-body {
  margin: 1rem 0 3rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 65ch;
}
.station-body h2 { margin: 2.5rem 0 1rem; font-size: 1.3rem; color: var(--ink); }
.station-body h3 { margin: 1.75rem 0 0.6rem; font-size: 1rem; color: var(--ink); }
.station-body p { margin: 0 0 1.1rem; }
.station-body ul { padding-left: 1.4rem; margin: 0.5rem 0 1.2rem; }
.station-body li { margin: 0.25rem 0; }
.station-body strong { color: var(--ink); font-weight: 500; }
.station-body em { color: var(--ink-soft); font-style: italic; }

.tracklist {
  margin: 1rem 0 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.tracklist-row {
  display: grid;
  grid-template-columns: 2.5rem 48px 1fr 4rem 2.5rem;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease);
}
.tracklist-row .row-art {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-1);
}
.tracklist-row .row-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tracklist-row:last-child { border-bottom: none; }
.tracklist-row:hover { background: rgba(255, 255, 255, 0.02); }
.tracklist-row .num {
  font-family: var(--num);
  font-feature-settings: "tnum";
  color: var(--ink-faint);
  font-size: 0.82rem;
  text-align: right;
  transition: color 0.2s var(--ease);
}
.tracklist-row:hover .num { color: var(--ink-soft); }
.tracklist-row .info { min-width: 0; }
.tracklist-row .title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tracklist-row .title a { color: inherit; }
.tracklist-row .title a:hover { color: var(--ink); }
.tracklist-row .artist {
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tracklist-row .duration {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-size: 0.82rem;
  color: var(--ink-mute);
  text-align: right;
}
.tracklist-row .play-cell { display: flex; justify-content: center; }

.play-button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: var(--bg-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  padding: 0;
  transition: all 0.2s var(--ease);
}
.tracklist-row:hover .play-button { color: var(--ink); border-color: var(--border-strong); }
.play-button:hover {
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-color: var(--ink) !important;
  transform: scale(1.06);
}
.play-button.is-playing {
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-color: var(--ink) !important;
}
.play-button svg { width: 10px; height: 10px; }
.play-button .icon-pause { display: none; }
.play-button.is-playing .icon-play { display: none; }
.play-button.is-playing .icon-pause { display: block; }

.trivia-list { list-style: none; padding: 0; margin: 1rem 0 3rem; }
.trivia-list li {
  padding: 1rem 0 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.trivia-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-mute);
}
.trivia-list li:first-child { border-top: 1px solid var(--border); }

.sister-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.sister-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}
.sister-card:hover { background: rgba(255, 255, 255, 0.02); }
.sister-art {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sister-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.sister-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sister-game { font-size: 0.76rem; color: var(--ink-mute); margin-top: 0.2rem; }

.track-page {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.track-art-col { position: sticky; top: 80px; }
.track-art {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.track-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }

.track-meta-strip {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-1);
  overflow: hidden;
}
.track-meta-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.track-meta-row:last-child { border-bottom: none; }
.track-meta-row .k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
}
.track-meta-row .v { color: var(--ink); font-size: 0.88rem; word-break: break-word; }

.track-links-strip { margin-top: 1.25rem; }
.track-links-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.track-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.track-links li a {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--bg-1);
  transition: all 0.2s var(--ease);
}
.track-links li a:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.track-main { min-width: 0; }
.track-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.track-eyebrow a { color: var(--ink-mute); }
.track-eyebrow a:hover { color: var(--ink); }
.track-eyebrow .dot { color: var(--ink-faint); }
.track-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.track-artist {
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  letter-spacing: -0.015em;
}

.track-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.track-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 99px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s var(--ease);
}
.track-play-btn:hover {
  background: #fff;
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}
.track-play-btn svg { width: 12px; height: 12px; }
.track-play-btn .duration {
  margin-left: 0.4rem;
  padding-left: 0.7rem;
  border-left: 1px solid currentColor;
  opacity: 0.7;
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-size: 0.8rem;
}
.track-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg-1);
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s var(--ease);
}
.track-secondary-btn:hover {
  background: var(--bg-2);
  color: var(--ink);
  border-color: var(--border-strong);
}
.track-secondary-btn svg { width: 12px; height: 12px; }

.track-block { margin-bottom: 3rem; }
.track-block h2 { font-size: 1.2rem; margin: 0 0 1rem; color: var(--ink); }
.track-prose {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 1rem;
}
.track-prose strong { color: var(--ink); font-weight: 500; }
.track-prose.dim { color: var(--ink-mute); font-size: 0.88rem; }

.appearances {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.appearance-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}
.appearance-card:last-child { border-bottom: none; }
.appearance-card:hover { background: rgba(255, 255, 255, 0.02); }
.appearance-art {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appearance-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.appearance-station {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.appearance-game { font-size: 0.76rem; color: var(--ink-mute); margin-top: 0.15rem; }

@media (max-width: 980px) {
  .track-page { grid-template-columns: 1fr; gap: 2rem; }
  .track-art-col { position: static; }
  .track-art { max-width: 320px; }
}

.inline-player {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: saturate(2) blur(28px);
  -webkit-backdrop-filter: saturate(2) blur(28px);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
  z-index: 100;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  max-width: 1200px;
  margin: 0 auto;
}
.inline-player.is-active { transform: translateY(0); }
body.has-player { padding-bottom: 100px; }
.inline-player .player-row {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 540px) 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 1.25rem;
}
.player-now { display: flex; align-items: center; gap: 0.95rem; min-width: 0; }
.player-now-art {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}
.player-now-art img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.player-now-text { min-width: 0; }
.player-now-text .now-title {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.player-now-text .now-artist {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  margin-top: 0.1rem;
}
.player-center { display: flex; flex-direction: column; gap: 0.4rem; align-items: center; min-width: 0; }
.player-controls { display: flex; align-items: center; gap: 0.5rem; }
.player-btn {
  border: none;
  background: transparent;
  color: var(--ink-mute);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s var(--ease);
}
.player-btn:hover { color: var(--ink); }
.player-btn:active { transform: scale(0.92); }
.player-btn.player-play {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--bg);
}
.player-btn.player-play:hover {
  background: #fff;
  transform: scale(1.05);
}
.player-btn svg { width: 12px; height: 12px; }

.player-progress { display: grid; grid-template-columns: 2.8rem 1fr 2.8rem; align-items: center; gap: 0.6rem; width: 100%; }
.player-progress .time {
  font-family: var(--num);
  font-feature-settings: "tnum";
  font-size: 0.7rem;
  color: var(--ink-mute);
  text-align: right;
}
.player-progress .time.right { text-align: left; }
.player-bar {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  cursor: pointer;
}
.player-bar-buffered {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 99px; width: 0%;
}
.player-bar-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--ink);
  border-radius: 99px; width: 0%;
}
.player-bar-handle {
  position: absolute; top: 50%;
  width: 11px; height: 11px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s var(--ease);
  left: 0%;
}
.player-bar:hover .player-bar-handle { opacity: 1; }

.player-right { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; }
.player-volume { display: flex; align-items: center; gap: 0.55rem; }
.player-volume-bar {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  position: relative;
  cursor: pointer;
}
.player-volume-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--ink-soft);
  border-radius: 99px; width: 100%;
}

@media (max-width: 860px) {
  .inline-player {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    border-radius: 12px;
  }
  .inline-player .player-row {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 0.6rem 0.85rem;
  }
  .player-progress { grid-template-columns: 0 1fr 0; gap: 0; }
  .player-progress .time { display: none; }
  .player-volume { display: none; }
  .player-controls { gap: 0.3rem; }
}

.muted { color: var(--ink-mute); }
code {
  font-family: var(--num);
  font-size: 0.85em;
  background: var(--bg-1);
  border: 1px solid var(--border);
  padding: 0.05rem 0.4rem;
  border-radius: 4px;
  color: var(--ink-soft);
}

.note-bar {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 2.5rem 0 3rem;
  margin-top: 6rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
}
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.site-footer p { margin: 0 0 0.4rem; }
.site-footer .footer-meta { text-align: right; }
@media (max-width: 720px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-meta { text-align: left; }
}

.hero-stats {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.hero-stats strong { color: var(--ink); font-weight: 500; }
.hero-stats .dot { color: var(--ink-faint); }

.games-list { margin-top: 2rem; }

.game-row {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.game-row:last-child { border-bottom: 1px solid var(--border); }

.game-row-link {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 2rem;
}
.game-row-cover {
  height: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.game-row-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
}
.game-row-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.game-row-meta {
  font-size: 0.78rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
}
.game-row-meta .dot { color: var(--ink-faint); }
.game-row-title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 500;
  transition: opacity 0.2s var(--ease);
}
.game-row-link:hover .game-row-title { opacity: 0.85; }
.game-row-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  max-width: 60ch;
}
.game-row-stats {
  font-size: 0.88rem;
  color: var(--ink-mute);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.game-row-stats strong { color: var(--ink); font-weight: 500; }
.game-row-stats .dot { color: var(--ink-faint); }

.game-row-stations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.station-thumb {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s var(--ease);
}
.station-thumb:hover { transform: translateY(-2px); }
.station-thumb-art {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.station-thumb:hover .station-thumb-art {
  border-color: var(--border-strong);
  background: var(--bg-2);
}
.station-thumb-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.station-thumb-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.station-thumb:hover .station-thumb-name { color: var(--ink); }

@media (max-width: 980px) {
  .game-row-link { grid-template-columns: 140px 1fr; gap: 1.5rem; }
  .game-row-cover { height: 180px; }
  .game-row-stations { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .game-row-link { grid-template-columns: 1fr; gap: 1rem; }
  .game-row-cover { max-width: 200px; height: auto; }
  .game-row-stations { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .station-thumb-art { height: 70px; padding: 0.6rem; }
  .station-thumb-name { font-size: 0.72rem; }
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.about-section {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.about-section:last-child {
  border-bottom: 1px solid var(--border);
}
.about-section h2 {
  font-size: 1.4rem;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.about-section p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 64ch;
}
.about-section p:last-child { margin-bottom: 0; }
.about-section p strong { color: var(--ink); font-weight: 500; }
.about-section a {
  color: var(--ink);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.about-section a:hover {
  color: #fff;
  border-bottom-color: var(--ink);
}
.about-tools {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.about-tools li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.about-tools li:last-child { border-bottom: none; }

.track-prose-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 65ch;
}
.track-prose-body h2 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1rem;
  font-weight: 500;
}
.track-prose-body h2 + p { margin-top: 0; }
.track-prose-body h3 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 2rem 0 0.5rem;
  font-weight: 500;
}
.track-prose-body p {
  margin: 0 0 1.1rem;
}
.track-prose-body p:last-child { margin-bottom: 0; }
.track-prose-body strong { color: var(--ink); font-weight: 500; }
.track-prose-body em { color: var(--ink-soft); font-style: italic; }
.track-prose-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.track-prose-body a:hover {
  color: #fff;
  border-bottom-color: var(--ink);
}

.player-viz {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.32;
  overflow: hidden;
  border-radius: 14px;
}
.player-viz canvas {
  width: 100% !important;
  height: 100% !important;
}
.inline-player .player-row {
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .player-viz { border-radius: 12px; }
}

.notfound {
  margin: 6rem 0 4rem;
  max-width: 720px;
}
.notfound-eyebrow {
  font-family: var(--num);
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.notfound h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  line-height: 1.02;
  color: var(--ink);
  font-weight: 500;
}
.notfound-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.notfound-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.notfound-btn:hover { border-color: var(--border-glow); background: rgba(255,255,255,0.03); }
.notfound-btn.primary { background: var(--ink); color: #000; border-color: var(--ink); }
.notfound-btn.primary:hover { background: #fff; }

.notfound-games { margin-top: 5rem; }
.notfound-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.notfound-game {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.notfound-game:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.02); }
.notfound-game-cover {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-1);
}
.notfound-game-cover img { width: 100%; height: 100%; object-fit: cover; }
.notfound-game-meta { display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; }
.notfound-game-year { font-family: var(--num); font-size: 0.78rem; color: var(--ink-mute); }
.notfound-game-title { font-size: 1.0rem; font-weight: 500; color: var(--ink); letter-spacing: -0.015em; }
.notfound-game-stats { font-size: 0.82rem; color: var(--ink-mute); }

.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.75rem 0.4rem 0.65rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--ink-mute);
  font-size: 0.82rem;
  margin-left: 1.25rem;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease);
}
.search-trigger:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.05);
  color: var(--ink);
}
.search-trigger svg { color: var(--ink-mute); }
.search-trigger:hover svg { color: var(--ink); }
.search-trigger-kbd {
  font-family: var(--num);
  font-size: 0.72rem;
  padding: 0.08rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.02);
}
@media (max-width: 640px) {
  .search-trigger-label, .search-trigger-kbd { display: none; }
  .search-trigger { padding: 0.4rem; }
}

.palette[hidden] { display: none; }
.palette {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  animation: fadeIn 0.15s var(--ease-out);
}
.palette-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.palette-window {
  position: relative;
  width: min(640px, calc(100vw - 2rem));
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  max-height: 70vh;
  overflow: hidden;
  animation: paletteIn 0.18s var(--ease-out);
}
@keyframes paletteIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.palette-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}
.palette-icon { color: var(--ink-mute); flex-shrink: 0; }
.palette-input-wrap input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.palette-input-wrap input::placeholder { color: var(--ink-mute); }
.palette-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--ink-mute);
  font-family: var(--num);
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
}
.palette-close:hover { color: var(--ink); border-color: var(--border-strong); }

.palette-results {
  overflow-y: auto;
  flex: 1;
  padding: 0.4rem;
}
.palette-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.88rem;
}
.palette-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  color: var(--ink);
}
.palette-item.is-active { background: rgba(255,255,255,0.06); }
.palette-item-type {
  font-family: var(--num);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.18rem 0.4rem;
  border-radius: 4px;
  min-width: 56px;
  text-align: center;
  flex-shrink: 0;
}
.palette-item.is-active .palette-item-type {
  color: var(--ink);
  border-color: var(--border-strong);
}
.palette-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.palette-item-title {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.palette-item-sub {
  font-size: 0.78rem;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.palette-foot {
  display: flex;
  gap: 1.25rem;
  padding: 0.55rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--ink-mute);
}
.palette-foot kbd {
  font-family: var(--num);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.05rem 0.35rem;
  margin-right: 0.35rem;
  color: var(--ink);
  font-size: 0.7rem;
}

.track-skeleton {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.5rem 0;
}
.skel-line {
  height: 0.85rem;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: skelShimmer 1.4s ease-in-out infinite;
}
.skel-w-30 { width: 30%; }
.skel-w-70 { width: 70%; }
.skel-w-80 { width: 80%; }
.skel-w-85 { width: 85%; }
.skel-w-90 { width: 90%; }
.skel-w-95 { width: 95%; }
@keyframes skelShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.ctxmenu[hidden] { display: none; }
.ctxmenu {
  position: fixed;
  z-index: 90;
  min-width: 200px;
  background: #0a0a0a;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0.3rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 1px;
  animation: ctxIn 0.12s var(--ease-out);
}
@keyframes ctxIn {
  from { opacity: 0; transform: translateY(-4px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ctxmenu-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.7rem;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.84rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s var(--ease), color 0.12s var(--ease);
}
.ctxmenu-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}
.ctxmenu-item svg { flex-shrink: 0; color: var(--ink-mute); }
.ctxmenu-item:hover svg { color: var(--ink); }
.ctxmenu-sep {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0.4rem;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.genre-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.genre-card:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
}
.genre-card-name {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.genre-card-count {
  font-family: var(--num);
  font-size: 0.78rem;
  color: var(--ink-mute);
}

.genre-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.6rem 0.7rem;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.genre-row:hover {
  background: rgba(255,255,255,0.025);
  border-color: var(--border);
}
.genre-row .row-art {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-1);
}
.genre-row .row-art img { width: 100%; height: 100%; object-fit: cover; }
.genre-row .info { min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.genre-row .title { font-size: 0.94rem; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.genre-row .artist { font-size: 0.82rem; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.genre-row-meta {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-mute);
  white-space: nowrap;
}
.genre-row-meta .dot { color: var(--ink-faint); }
.genre-row .duration { font-family: var(--num); font-size: 0.82rem; color: var(--ink-mute); }
@media (max-width: 720px) {
  .genre-row { grid-template-columns: 40px 1fr auto; gap: 0.7rem; }
  .genre-row .row-art { width: 40px; height: 40px; }
  .genre-row-meta { display: none; }
}
