﻿/* Custom style for the 'View Keys' quickstart button */
html { overflow-y: scroll; }

/* Mobile slot: hidden on desktop, shown on mobile after the song list */
.quickstart-keys-mobile-slot {
  display: none;
  margin-top: 18px;
}

/* Mobile-only duplicate of keys card — hidden on desktop */
.quickstart-keys-mobile-slot {
  display: none;
}

@media (max-width: 800px) {
  /* Hide the keys card inside the quickstart-row on mobile */
  .quickstart-card-keys:not(.quickstart-keys-mobile-slot) {
    display: none;
  }
  /* Show the duplicate after the song list */
  .quickstart-keys-mobile-slot {
    display: flex;
  }
}

/* Song count stat in the first quickstart card */
.quickstart-song-count {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: auto;
}

.quickstart-count-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-bright, #f0c45b);
  letter-spacing: -0.02em;
}

.quickstart-count-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
}

.quickstart-btn-keys {
  width: auto;
  padding: 0 20px;
  margin-top: auto;
  align-self: flex-start;
  background: linear-gradient(180deg, #f0c45b 0%, #e2b95f 100%);
  color: #1b2137;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(240,196,91,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.10);
}
.songsBanner .note-1 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 38% 32%, #ffe3a0 0%, #d69425 78%);
  top: -20px;
  right: 180px;
  left: auto;
}
.songsBanner .note-2 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 32% 28%, #fff4c6 0%, #f0c45b 76%);
  top: 30px;
  right: 310px;
  left: auto;
}
.songsBanner .note-3 {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 38% 32%, #ffe3a0 0%, #d4a030 78%);
  top: 8px;
  right: 440px;
  left: auto;
}
.songsBanner .circle-deco {
  display: none;
}
.songsBanner .sound-hole {
  display: none;
}

.songsIcon {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
}

.songsIcon svg {
  width: 100%;
  height: 100%;
}
.song-index-footer .show-more-btn, button.show-more-btn, .show-more-btn#showMoreSongsBtn {
  /* border removed after debugging */
  box-sizing: border-box !important;
}
.library-layout main > .quickstart-row {
  width: 100%;
  margin-bottom: 28px;
  grid-column: 1;
}

/* Constrain main content width */
.main-content {
  max-width: 1320px;
  margin: 0 auto;
}
/* Quickstart row: side by side on desktop, stacked on mobile */
.quickstart-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
  clear: both;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  .quickstart-row {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 800px) {
  .quickstart-row {
    grid-template-columns: 1fr;
  }
}
:root {
  --bg-top: var(--site-bg-top, #1f3360);
  --bg-bottom: var(--site-bg-bottom, #26406e);
  --panel: var(--site-panel, #162848);
  --panel-border: var(--site-panel-border, rgba(255, 255, 255, 0.18));
  --shell-bg: rgba(255, 255, 255, 0.05);
  --shell-border: rgba(255, 255, 255, 0.12);

  --surface-card: rgba(255, 255, 255, 0.08);
  --surface-card-border: rgba(255, 255, 255, 0.14);

  --text: var(--site-text, #f5f7fb);
  --muted: var(--site-muted, #c6cfde);
  --muted-soft: var(--site-muted-soft, rgba(245, 247, 251, 0.76));

  --gold: var(--site-gold, #e2b95f);
  --gold-bright: var(--site-gold-bright, #f0c45b);
  --gold-deep: var(--site-gold-deep, #d79b1d);
  --teal: #2a9db5;
  --teal-light: rgba(132, 196, 232, 0.92);

  --card-hover: rgba(240, 196, 91, 0.06);

  --blue-panel: var(--site-blue-panel, #19274a);
  --blue-panel-light: var(--site-blue-panel-light, #22345f);
  --blue-accent: var(--site-bg-bottom, #41577d);
  --blue-gradient: var(--site-blue-gradient, linear-gradient(180deg, #33466f 0%, #41577d 100%));
  --blue-panel-gradient: var(--site-blue-panel-gradient, linear-gradient(180deg, #22345f 0%, #33466f 100%));
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  padding-top: 0 !important;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 87, 255, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(90, 170, 220, 0.08), transparent 24%),
    var(--blue-gradient);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  margin: 0 auto;
}

/* nav — inherits from styles.css */


.nav-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.logo-dot {
  color: var(--text);
}

.logo-beat {
  color: var(--gold);
}

.logo-tm {
  display: inline-block;
  margin-left: 1px;
  font-size: 13px;
  color: var(--text);
  opacity: 0.9;
  vertical-align: text-top;
  transform: translateY(-0.14em);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-link.active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(240, 196, 91, 0.18), rgba(240, 196, 91, 0.08));
  border-color: rgba(240, 196, 91, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 20px rgba(15, 23, 42, 0.16);
}
/* hero */

.hero {
  --hero-scene-width: min(50vw, 520px);
  --hero-scene-right: 44px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 1320px;
  margin: 0 auto 18px auto;
  padding: 48px 48px 20px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 62%, rgba(90, 170, 220, 0.06), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(180deg, rgba(19, 39, 70, 0.98), rgba(10, 24, 51, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  flex: 1 1 58%;
  min-width: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kicker {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 2rem + 1.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #fff;
}

.hero p {
  margin: 0;
  max-width: 700px;
  color: rgba(245, 247, 251, 0.86);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-ambient-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-ambient-lines span {
  position: absolute;
  left: 120px;
  right: -20px;
  height: 1px;
  background: rgba(214, 223, 238, 0.12);
}

.hero-ambient-lines span:nth-child(1) { top: 58px; }
.hero-ambient-lines span:nth-child(2) { top: 98px; }
.hero-ambient-lines span:nth-child(3) { top: 138px; }
.hero-ambient-lines span:nth-child(4) { top: 178px; }

.hero-visual {
  flex: 0 1 34%;
  min-width: 0;
  max-width: 48vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual-label {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-visual-grid {
  --grid-columns: 8;
  --grid-rows: 3;
  position: relative;
  min-height: 184px;
  padding: 14px 0 12px;
  border-radius: 24px;
  background: var(--blue-accent);
  border: 1px solid rgba(255, 255, 255, 0.025);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    inset 0 -20px 40px rgba(5, 10, 24, 0.16);
}

.hero-visual-grid::after {
  content: "";
  position: absolute;
  inset: 14% 6% 16% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 196, 91, 0.08), rgba(240, 196, 91, 0) 72%);
  pointer-events: none;
}

.hero-visual-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc((100% / var(--grid-columns)) - 1px),
      rgba(255, 255, 255, 0.06) calc((100% / var(--grid-columns)) - 1px),
      rgba(255, 255, 255, 0.06) calc(100% / var(--grid-columns))
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% calc(100% / var(--grid-rows));
}

.hero-grid-nut {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 229, 167, 0.95), rgba(240, 196, 91, 0.65));
  box-shadow: 0 0 18px rgba(240, 196, 91, 0.18);
  border-radius: 50%;
}

.hero-grid-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  left: calc(((var(--marker-col) - 0.5) / var(--grid-columns)) * 100%);
  top: calc(((var(--marker-row) - 0.5) / var(--grid-rows)) * 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 32% 28%, #fff4c6, #f0c45b 76%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.68),
    0 0 18px rgba(240, 196, 91, 0.22);
}

.marker-col-1 { --marker-col: 1; }
.marker-col-2 { --marker-col: 2; }
.marker-col-3 { --marker-col: 3; }
.marker-col-4 { --marker-col: 4; }
.marker-col-5 { --marker-col: 5; }
.marker-col-7 { --marker-col: 7; }
.marker-col-8 { --marker-col: 8; }

.marker-row-1 { --marker-row: 1; }
.marker-row-2 { --marker-row: 2; }
.marker-row-3 { --marker-row: 3; }

.hero-grid-marker-strong {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 24%, #ffe3a0, #d69425 78%);
  box-shadow:
    0 0 0 1px rgba(255, 248, 219, 0.76),
    0 0 20px rgba(240, 196, 91, 0.3);
}

.hero-grid-marker-soft {
  opacity: 0.88;
}

.hero-grid-playhead {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 68%;
  width: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(240, 196, 91, 0.16));
  box-shadow: 0 0 10px rgba(240, 196, 91, 0.1);
}

/* visual dots */

.dotbeat-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px auto;
  max-width: 220px;
  padding: 18px 0;
}

.dotbeat-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 22%, #fff3b9, #f0c45b 72%);
  opacity: 0.92;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 22px rgba(7, 14, 30, 0.5);
  display: inline-block;
}

.dotbeat-dot.strong {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 30% 24%, #ffe3a0, #d69425 78%);
  box-shadow: 0 0 0 2px rgba(255, 248, 219, 0.76), 0 0 20px rgba(240, 196, 91, 0.3);
}

/* shell */

.page-shell {
  margin-top: 12px;
  padding: 18px 20px 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f7fb;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero-card h1,
.quickstart-card h1,
.quickstart-card h2,
.song-card h2 {
  letter-spacing: -0.03em;
}
.quickstart-card {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
}

.quickstart-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 36%, var(--gold) 100%);
  opacity: 0.92;
}

.quickstart-card p {
  margin-top: 0;
}

.quickstart-card h2 {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  line-height: 1.08;
}

.song-subtitle {
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(235, 241, 250, 0.9);
}

.song-meta-row,
.song-meta-strip,
.song-kicker,
.results-label,
.section-kicker,
.card-kicker {
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.song-kicker,
.section-kicker,
.card-kicker {
  color: #f0c45b;
}

.song-year {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.song-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  color: rgba(230, 236, 245, 0.78);
}

.song-meta-strip strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.filter-panel label,
.filters-panel label,
.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(234, 240, 248, 0.88);
}

.filter-panel input,
.filter-panel select,
.filters-panel input,
.filters-panel select {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.quickstart-card p,
.hero-card p,
.intro-copy,
.library-intro,
.song-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(233, 239, 247, 0.84);
}

button,
.button,
.cta-button {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}



.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.nav-link.active {
  color: var(--text);
  background: linear-gradient(180deg, rgba(240, 196, 91, 0.18), rgba(240, 196, 91, 0.08));
  border-color: rgba(240, 196, 91, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 20px rgba(15, 23, 42, 0.16);
}


.hero {
  --hero-scene-width: min(50vw, 520px);
  --hero-scene-right: 44px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 18px;
  padding: 34px 38px 36px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 62%, rgba(90, 170, 220, 0.06), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(180deg, rgba(19, 39, 70, 0.98), rgba(10, 24, 51, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-grid {
  background: none;
}

/* Prevent hero glow from overlapping quickstart/flow-helper row */
.songs-shell {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  position: relative;
  z-index: 10;
  padding: 24px;
  border-radius: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  flex: 1 1 58%;
}

.hero-kicker {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-ambient-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-ambient-lines span {
  position: absolute;
  left: 120px;
  right: -20px;
  height: 1px;
  background: rgba(214, 223, 238, 0.12);
}

.hero-ambient-lines span:nth-child(1) { top: 58px; }
.hero-ambient-lines span:nth-child(2) { top: 98px; }
.hero-ambient-lines span:nth-child(3) { top: 138px; }
.hero-ambient-lines span:nth-child(4) { top: 178px; }

.hero-visual {
  width: min(100%, var(--hero-scene-width));
  margin-right: var(--hero-scene-right);
  margin-left: 0;
  padding: 8px 0 0;
  flex: 0 1 34%;
}

.hero-visual-label {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-visual-grid {
  --grid-columns: 8;
  --grid-rows: 3;
  position: relative;
  min-height: 184px;
  padding: 14px 0 12px;
  border-radius: 24px;
  background: var(--blue-accent);
  border: 1px solid rgba(255, 255, 255, 0.025);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.018),
    inset 0 -20px 40px rgba(5, 10, 24, 0.16);
}

.hero-visual-grid::after {
  content: "";
  position: absolute;
  inset: 14% 6% 16% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 196, 91, 0.08), rgba(240, 196, 91, 0) 72%);
  pointer-events: none;
}

.hero-visual-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc((100% / var(--grid-columns)) - 1px),
      rgba(255, 255, 255, 0.06) calc((100% / var(--grid-columns)) - 1px),
      rgba(255, 255, 255, 0.06) calc(100% / var(--grid-columns))
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 100% calc(100% / var(--grid-rows));
}

.flow-helper {
  margin-top: 0;
  padding: 24px 26px;
  border-radius: 24px;
  background: var(--blue-panel);
  border: 1px solid rgba(240, 196, 91, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.flow-helper-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.flow-helper-text {
  margin: 0 0 10px;
}

.hero-grid-nut {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 229, 167, 0.95), rgba(240, 196, 91, 0.65));
  box-shadow: 0 0 18px rgba(240, 196, 91, 0.18);
  border-radius: 50%;
}

.hero-grid-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  left: calc(((var(--marker-col) - 0.5) / var(--grid-columns)) * 100%);
  top: calc(((var(--marker-row) - 0.5) / var(--grid-rows)) * 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 32% 28%, #fff4c6, #f0c45b 76%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.68),
    0 0 18px rgba(240, 196, 91, 0.22);
}

.marker-col-1 { --marker-col: 1; }
.marker-col-2 { --marker-col: 2; }
.marker-col-3 { --marker-col: 3; }
.marker-col-4 { --marker-col: 4; }
.marker-col-5 { --marker-col: 5; }
.marker-col-7 { --marker-col: 7; }
.marker-col-8 { --marker-col: 8; }
.marker-row-1 { --marker-row: 1; }
.marker-row-2 { --marker-row: 2; }
.marker-row-3 { --marker-row: 3; }

.hero-grid-marker-strong {
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 24%, #ffe3a0, #d69425 78%);
  box-shadow:
    0 0 0 1px rgba(255, 248, 219, 0.76),
    0 0 20px rgba(240, 196, 91, 0.3);
}

.hero-grid-marker-soft {
  opacity: 0.88;
}

.hero-grid-playhead {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 68%;
  width: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(240, 196, 91, 0.16));
  box-shadow: 0 0 10px rgba(240, 196, 91, 0.1);
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.quickstart-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(34, 52, 95, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  transition: background 0.18s, border-color 0.18s;
}

.quickstart-card-guide {
  background:
    radial-gradient(circle at 84% 16%, rgba(101, 214, 200, 0.16), transparent 36%),
    radial-gradient(circle at 12% 88%, rgba(240, 196, 91, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(35, 56, 101, 0.9), rgba(22, 37, 73, 0.9));
  border-color: rgba(255, 255, 255, 0.14);
}

.quickstart-card-keys {
  background:
    radial-gradient(circle at 16% 14%, rgba(240, 196, 91, 0.18), transparent 34%),
    radial-gradient(circle at 88% 84%, rgba(90, 170, 220, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(43, 60, 106, 0.9), rgba(27, 40, 78, 0.9));
  border-color: rgba(255, 255, 255, 0.14);
}

.quickstart-guide-steps {
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: 2px;
}

.quickstart-guide-step {
  color: rgba(235, 241, 250, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.quickstart-guide-step strong {
  color: var(--gold-bright);
  margin-right: 6px;
}

.quickstart-card > div:first-child {
  flex: 1 1 0;
}

.quickstart-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 14px;
  row-gap: 10px;
  min-height: 56px;
  width: 100%;
}

.quickstart-card h2,
.hero-card h1 {
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.quickstart-kicker {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quickstart-subtitle,
.quickstart-hint {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quickstart-hint {
  margin-top: 8px;
  font-size: 14px;
}

.quickstart-actions {
  display: flex;
  gap: 8px;
}

.quickstart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 310px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(180deg, #74d8d0 0%, #58b8b0 100%);
  border: none;
  color: #0d3533;
  box-shadow: 0 3px 8px rgba(88,184,176,0.14), 0 1px 4px rgba(0,0,0,0.08);
  border-radius: 10px;
  outline: none;
  transition: background 0.14s, box-shadow 0.14s, transform 0.12s;
  white-space: nowrap;
  text-align: center;
}

.quickstart-btn:hover,
.quickstart-btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: linear-gradient(180deg, #83ddd6 0%, #4ca8a1 100%);
  box-shadow: 0 6px 14px rgba(88,184,176,0.18), 0 2px 7px rgba(0,0,0,0.1);
}
.quickstart-meta {
  color: rgba(245, 247, 251, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.page-shell {
  margin-top: 12px;
  padding: 14px 22px 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.songs-shell .quickstart-card {
  margin-bottom: 18px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 50%;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.library-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 20px;
  min-height: 560px;
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  width: 100%;
  max-width: 260px;
}

.filter-title {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-group {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.filter-group:last-of-type {
  margin-bottom: 16px;
}

.filter-group span {
  color: var(--muted);
  font-size: 13px;
}

.filter-group select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.filter-group input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.filter-group select option {
  color: var(--text);
  background: var(--blue-panel);
}

.filter-group input::placeholder {
  color: rgba(185, 192, 207, 0.72);
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: rgba(240, 196, 91, 0.34);
  box-shadow: 0 0 0 3px rgba(240, 196, 91, 0.08);
}

.clear-btn {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f7d06a, #e0a020);
  color: #1b2137;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.panel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.results-label {
  color: rgba(240, 196, 91, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-count {
  color: var(--muted);
  font-size: 14px;
}
.song-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-content: start;
  background: none;
}

@media (max-width: 1060px) {
  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .song-grid {
    grid-template-columns: 1fr;
  }
}


  .song-index-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding-top: 0;
    clear: both;
    z-index: 1;
    margin-bottom: 40px;
  }

  .song-index-jumps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .song-jump-link {
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(240, 196, 91, 0.92);
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: color 160ms ease, transform 160ms ease;
  }

  .song-jump-link:hover,
  .song-jump-link:focus-visible {
    color: #ffe3a0;
    outline: none;
    transform: translateY(-1px);
  }

  .show-more-btn {
    min-height: 52px;
    min-width: 260px;
    max-width: 100%;
    padding: 0 48px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%), var(--gold, #f0c45b);
    color: #473100;
    font-size: 1.13rem;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(255, 161, 35, 0.18);
    transition: transform 0.16s, box-shadow 0.16s;
    margin-top: 24px;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    outline: 2px solid #e2b95f;
    outline-offset: -2px;
    border: 1px solid #e2b95f;
    background-clip: padding-box;
  }

.show-more-btn:hover,
.show-more-btn:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 161, 35, 0.24);
}

.request-song-panel {
  margin-top: 22px;
  padding: 20px 22px;
  text-align: center;
}

.request-song-intro {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.request-song-trigger {
  appearance: none;
  border: 0;
  background: none;
  color: var(--gold);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
  cursor: pointer;
}

.request-song-form {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.request-song-form h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
}

.request-song-copy,
.request-song-help {
  margin: 0;
  color: var(--muted);
}

.request-song-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.request-song-field {
  display: grid;
  gap: 6px;
  text-align: left;
}

.request-song-field span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-song-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 24, 49, 0.5);
  color: var(--text);
  font: inherit;
}

.request-song-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.request-song-submit {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4ca63, #ebb948);
  color: #15233f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(240, 196, 91, 0.18);
}

.request-song-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: 14px;
}

.request-song-help {
  margin-top: 10px;
  font-size: 13px;
}
.song-card,
.song-card:visited,
.song-card:hover,
.song-card:active {
  color: inherit;
  text-decoration: none;
}

.song-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;

  padding: 18px;
  border-radius: 20px;

  background: linear-gradient(180deg, rgba(28, 48, 86, 0.98), rgba(14, 26, 52, 0.98));
  border: 1px solid rgba(101, 214, 200, 0.2);

  box-shadow: 0 16px 36px rgba(0,0,0,0.25);

  transition: all 0.15s ease;
}


.song-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.song-card p {
  font-size: 14px;
  opacity: 0.85;
}

.song-card .meta,
.song-card .tag-row {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.song-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240,196,91,0.55);
  box-shadow: 0 22px 44px rgba(0,0,0,0.32), 0 0 0 1px rgba(240,196,91,0.18);
}

.song-card:focus-visible {
  outline: none;
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(240, 196, 91, 0.34);
  box-shadow: 0 0 0 3px rgba(240, 196, 91, 0.12), 0 18px 34px rgba(0, 0, 0, 0.2);
}

.song-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.song-card h2 {
  margin: 10px 0 6px;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.song-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  gap: 6px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 700;
}

.song-kicker-genre {
  color: var(--gold-bright);
  flex: 0 0 auto;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
  line-height: 1;
}

.feel-badge {
  --feel-accent: #f0c45b;
  --feel-bg: rgba(240, 196, 91, 0.14);
  --feel-border: rgba(240, 196, 91, 0.3);
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px 0 7px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--feel-bg) 84%, rgba(15, 27, 58, 0.44)), rgba(10, 18, 40, 0.52)),
    var(--feel-bg);
  border: 1px solid var(--feel-border);
  color: rgba(245, 247, 251, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 14px color-mix(in srgb, var(--feel-accent) 16%, transparent);
  margin-left: auto;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 11ch;
}

.feel-badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 12px;
  color: var(--feel-accent);
}

.feel-badge-mark svg {
  width: 16px;
  height: 12px;
  overflow: visible;
}

.feel-badge-mark path,
.feel-badge-mark line,
.feel-badge-mark polyline,
.feel-badge-mark circle {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 5px color-mix(in srgb, currentColor 30%, transparent));
}

.feel-badge-mark circle[fill] {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.feel-badge-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 18px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feel-badge::after {
  content: none;
}

.song-year {
  color: var(--muted);
  font-size: 13px;
}

.song-subtitle {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.song-progression {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.song-progression strong {
  margin-right: 8px;
  color: var(--gold-bright);
  font-weight: 700;
}

.song-meta-strip {
  margin-top: 14px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.song-meta-strip strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.empty-state {
  border-radius: 20px;
  padding: 24px;
  background: rgba(8, 22, 52, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 15px;
}

.siteFooter {
  width: min(1320px, 96vw);
  margin: 22px auto 0;
  padding: 18px 32px 28px;
  text-align: center;
  color: rgba(222, 232, 244, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.siteFooter .footerTitle,
.siteFooter .footerText,
.siteFooter .footerContact,
.siteFooter .footerMeta,
.siteFooter .footerShareText {
  text-align: center;
}

.siteFooter .footerTitle {
  font-weight: 700;
  color: #f5f7fb;
  margin-bottom: 6px;
}

.siteFooter .footerText {
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.siteFooter .footerContact {
  margin-bottom: 8px;
  color: rgba(222, 232, 244, 0.9);
}

.siteFooter .footerContactLink {
  color: #f5f7fb;
  text-decoration: none;
}

.siteFooter .footerContactLink:hover,
.siteFooter .footerContactLink:focus-visible {
  text-decoration: underline;
}

.footerShare {
  margin-bottom: 8px;
}

.footerShareLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footerShareLink {
  color: #f5f7fb;
  text-decoration: none;
}

.footerShareLink:hover,
.footerShareLink:focus-visible {
  text-decoration: underline;
}

.footerShareSep {
  color: rgba(185, 192, 207, 0.9);
}

.siteFooter .footerMeta {
  font-size: 0.88rem;
  color: rgba(185, 192, 207, 0.9);
}

.siteFooter .footerWordmark {
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.03em;
}

.siteFooter .footerWordmark .brand-dot {
  color: #f5f7fb;
}

.siteFooter .footerWordmark .brand-beat {
  color: var(--gold);
}

.siteFooter .footerWordmark .brand-tm {
  display: inline-block;
  margin-left: 1px;
  font-size: 0.5em;
  color: #f5f7fb;
  opacity: 0.92;
  vertical-align: text-top;
  transform: translateY(0.02em);
}

@media (max-width: 980px) {
  .library-layout {
    grid-template-columns: 1fr;
  }

  .songsBanner {
    min-height: 104px;
    padding: 14px 16px;
    gap: 12px;
  }

  .quickstart-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quickstart-card {
    display: block;
    min-height: 0;
    margin-bottom: 0;
    padding: 16px 18px;
  }

  .quickstart-card > div:first-child {
    display: block;
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .quickstart-title-row {
    grid-template-columns: 1fr auto;
    column-gap: 10px;
    min-height: 56px;
    height: auto;
  }

  .quickstart-card h2,
  .quickstart-subtitle {
    display: block;
    visibility: visible;
    opacity: 1;
    max-height: none;
  }

  .filters {
    position: static;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    min-height: 0;
    padding: 8px 0 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: 0;
    z-index: 5;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    overflow: visible;
    padding: 0 14px;
    gap: 10px;
  }

  .nav-links {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-end;
    gap: 4px;
  }

  .nav-links::-webkit-scrollbar { display: none; }

  .nav-link {
    flex: 0 0 auto;
    padding: 0 8px;
    font-size: 12px;
    min-height: 40px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ambient-lines span {
    left: 20px;
    right: 20px;
  }

  .hero-visual {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .quickstart-card {
    gap: 10px;
    padding: 14px 14px 12px;
  }

  .quickstart-card > div:first-child {
    width: 100%;
  }

  .page-shell {
    padding: 18px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .songs-shell {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .filters {
    width: 100%;
  }

  .quickstart-actions {
    margin-top: 12px;
  }

  .quickstart-btn {
    min-height: 36px;
    width: 100%;
    padding: 0 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .quickstart-title-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .song-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px 22px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .quickstart-card h2 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.08;
  }

  .quickstart-subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .song-card h2 {
    font-size: 22px;
  }

  .siteFooter {
    margin-top: 18px;
    padding: 16px 18px 24px;
  }

  .request-song-fields {
    grid-template-columns: 1fr;
  }

  .request-song-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding: 0 14px 14px;
  }

  .quickstart-card {
    gap: 8px;
    padding: 12px 12px 10px;
  }

  .quickstart-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .quickstart-card h2 {
    font-size: 22px;
  }

  .quickstart-btn {
    min-height: 42px;
    font-size: 14px;
  }

  .nav-link {
    padding: 0 6px;
    font-size: 12px;
    min-height: 40px;
  }

  .nav-logo {
    font-size: 22px;
  }

  .hero,
  .song-card {
    padding: 18px;
  }

  .filters {
    padding: 6px 0 2px;
  }

  .page-shell {
    padding: 14px 12px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .songs-shell {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .request-song-panel {
    padding: 16px 16px 18px;
  }

  .request-song-form h2 {
    font-size: 22px;
  }

  .hero-visual-grid {
    min-height: 148px;
  }

  .footerShareLinks {
    gap: 6px;
  }

  .quickstart-card h2 br {
    display: none;
  }
}
