body {
  background: #111;
  color: white;
  font-family: Arial, sans-serif;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

body.page-home {
  background-image:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 45%),
    linear-gradient(140deg, #243b55 0%, #141e30 55%, #0f1118 100%);
}

body.page-music {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background-image:
    linear-gradient(
      115deg,
      rgba(8, 12, 20, 0.83) 0%,
      rgba(8, 12, 20, 0.44) 46%,
      rgba(8, 12, 20, 0.9) 100%
    ),
    url("bg-music.jpg");
  background-position: center top;
  background-attachment: fixed;
}

body.page-barcelona {
  background-image:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 50%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("bg-barcelona.jpg");
  background-position: center top;
  background-attachment: fixed;
}

body.page-books {
  background-image:
    linear-gradient(
      120deg,
      rgba(12, 8, 4, 0.78) 0%,
      rgba(12, 8, 4, 0.48) 48%,
      rgba(12, 8, 4, 0.82) 100%
    ),
    url("bg-books.png");
  background-position: center top;
  background-attachment: fixed;
}

body.page-support {
  background-image:
    radial-gradient(circle at top, rgba(255, 194, 92, 0.1), transparent 28%),
    linear-gradient(180deg, #19130f 0%, #130f0c 100%);
}

.top-nav {
  display: flex;
  gap: 16px;
  margin: 8px 0 20px;
}

.top-nav a,
.inline-link {
  color: #d6d6d6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.top-nav a:hover,
.inline-link:hover {
  color: #ffffff;
  border-bottom-color: #666;
}

.top-nav a.active {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.support-shell {
  min-height: calc(100vh - 170px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px 0 56px;
}

.support-card {
  width: min(100%, 760px);
  padding: 28px 30px 30px;
  border-radius: 24px;
  background: rgba(16, 12, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
}

.support-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.support-icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
}

.support-app-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transform-origin: center;
}

.support-hero-copy {
  display: grid;
  gap: 4px;
}

.support-kicker {
  margin: 0;
  color: #f6c572;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
}

.support-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.4;
}

.support-card h1 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
}

.support-policy {
  margin-bottom: 22px;
  padding: 16px 18px 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-policy-title {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.72);
}

.support-policy-copy {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.support-copy,
.support-confirmation,
.support-error {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.support-form {
  margin-top: 14px;
}

.support-input {
  width: 100%;
  min-height: 132px;
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font: inherit;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.support-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.support-input:focus {
  outline: none;
  border-color: rgba(246, 197, 114, 0.42);
  box-shadow: 0 0 0 4px rgba(246, 197, 114, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.support-submit {
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: #f0ab58;
  color: #1b130c;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.support-submit:hover,
.support-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(240, 171, 88, 0.18);
  outline: none;
}

.support-submit:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

.support-confirmation {
  margin-top: 18px;
  color: #ffd595;
}

.support-error {
  margin-top: 18px;
  color: #ffb7aa;
}

@media (max-width: 640px) {
  .support-card {
    padding: 22px 18px 24px;
  }

  .support-hero {
    align-items: center;
    gap: 14px;
  }

  .support-icon-wrap {
    width: 64px;
    height: 64px;
  }

  .support-kicker {
    font-size: 28px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.style-tile {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  align-self: start;
}

.style-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.style-embed {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  padding-bottom: 2px;

  max-height: 0;
  overflow: hidden;
  overflow-y: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.style-tile:hover .style-embed {
  max-height: 520px;
  overflow-y: auto;
  opacity: 1;
}

.style-tile.is-open .style-embed {
  max-height: 520px;
  overflow-y: auto;
  opacity: 1;
}

.spotify {
  display: block;
  width: 100%;
  border: 0;
  overflow: hidden;
}

.spotify-shell {
  display: block;
  width: 100%;
  height: 152px;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(16, 27, 60, 0.95), rgba(10, 19, 45, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.music-hub {
  --music-accent: #f6c572;
  --music-ink: #ecf2ff;
  --music-muted: #9fb2d8;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.music-kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--music-accent);
  opacity: 0.92;
}

.music-genre-rail,
.music-stage,
.music-player-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.3);
}

.music-genre-rail {
  position: sticky;
  top: 24px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 16, 31, 0.68), rgba(6, 12, 24, 0.58));
  backdrop-filter: blur(6px);
}

.music-rail-title,
.music-stage-title,
.music-player-section {
  margin: 0;
}

.music-rail-title {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.music-rail-caption,
.music-stage-caption,
.music-player-caption {
  margin: 10px 0 0;
  color: var(--music-muted);
  font-size: 14px;
  line-height: 1.55;
}

.music-genre-tabs {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.music-genre-tab {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 22, 45, 0.56), rgba(7, 15, 31, 0.46));
  color: var(--music-ink);
  border-radius: 18px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.music-genre-tab:hover,
.music-genre-tab:focus-visible {
  transform: translateX(3px);
  border-color: rgba(246, 197, 114, 0.35);
  background: linear-gradient(180deg, rgba(16, 30, 57, 0.68), rgba(10, 19, 38, 0.58));
  outline: none;
}

.music-genre-tab.is-active {
  border-color: rgba(246, 197, 114, 0.5);
  background:
    linear-gradient(180deg, rgba(246, 197, 114, 0.1), rgba(246, 197, 114, 0.03)),
    linear-gradient(180deg, rgba(15, 28, 53, 0.78), rgba(9, 18, 35, 0.68));
  box-shadow: inset 0 0 0 1px rgba(246, 197, 114, 0.12);
}

.music-genre-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.music-genre-count,
.music-stage-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 36px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(246, 197, 114, 0.12);
  color: #f7dca7;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.music-stage {
  min-height: 640px;
  padding: 26px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(8, 15, 28, 0.62), rgba(5, 10, 20, 0.52));
  backdrop-filter: blur(6px);
}

.music-stage-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.music-stage-title {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.05em;
  line-height: 0.95;
  max-width: 10ch;
}

.music-panels {
  position: relative;
}

.music-genre-panel[hidden] {
  display: none;
}

.music-track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.music-track-tile {
  appearance: none;
  width: 100%;
  min-height: 172px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(10, 22, 49, 0.5), rgba(7, 16, 34, 0.38));
  color: white;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.music-track-tile:hover,
.music-track-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(246, 197, 114, 0.38);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
  outline: none;
}

.music-track-tile.is-active {
  border-color: rgba(246, 197, 114, 0.52);
  box-shadow: 0 0 0 1px rgba(246, 197, 114, 0.16) inset, 0 18px 28px rgba(0, 0, 0, 0.16);
}

.music-track-index {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a5b8dc;
}

.music-track-copy {
  display: grid;
  gap: 8px;
  max-width: 22ch;
  position: relative;
  z-index: 1;
}

.music-track-title {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.music-track-action {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9e6ff;
  opacity: 0.76;
}

.music-player-panel {
  position: sticky;
  top: 24px;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(11, 22, 46, 0.66), rgba(7, 14, 30, 0.56));
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.music-player-section {
  font-size: 15px;
  color: #dbe6ff;
  opacity: 0.9;
}

.music-player-title {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.music-player-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.music-player-link:hover {
  border-bottom-color: transparent;
  border-color: rgba(246, 197, 114, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.music-player-frame {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.music-player-empty {
  min-height: 152px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcc8e6;
  background: rgba(255, 255, 255, 0.03);
}

.music-empty {
  color: #c8d3ea;
  font-size: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.books-hub {
  --books-accent: #dfb37f;
  --books-muted: #ccb9a0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) minmax(280px, 360px);
  gap: 22px;
  margin-top: 24px;
  align-items: start;
}

.books-rail,
.books-stage,
.books-summary-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.books-rail {
  position: sticky;
  top: 24px;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(223, 179, 127, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(31, 20, 14, 0.96), rgba(18, 12, 9, 0.98));
}

.books-rail-title,
.books-stage-title {
  margin: 0;
}

.books-rail-title {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.books-rail-caption,
.books-stage-caption {
  margin: 10px 0 0;
  color: var(--books-muted);
  font-size: 14px;
  line-height: 1.55;
}

.books-category-tabs {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.books-category-tab {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(65, 45, 30, 0.82), rgba(36, 23, 16, 0.92));
  color: #fff7eb;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.books-category-tab:hover,
.books-category-tab:focus-visible {
  transform: translateX(3px);
  border-color: rgba(223, 179, 127, 0.36);
  background: linear-gradient(180deg, rgba(82, 56, 36, 0.92), rgba(43, 28, 18, 0.95));
  outline: none;
}

.books-category-tab.is-active {
  border-color: rgba(223, 179, 127, 0.52);
  background:
    linear-gradient(180deg, rgba(223, 179, 127, 0.16), rgba(223, 179, 127, 0.04)),
    linear-gradient(180deg, rgba(72, 50, 33, 0.98), rgba(39, 26, 18, 0.98));
  box-shadow: inset 0 0 0 1px rgba(223, 179, 127, 0.12);
}

.books-category-name {
  font-size: 15px;
  font-weight: 600;
}

.books-category-count,
.books-stage-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(223, 179, 127, 0.12);
  color: #f4d5b0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.books-stage {
  min-height: 560px;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 221, 185, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(24, 16, 12, 0.95), rgba(15, 10, 8, 0.98));
}

.books-stage-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.books-stage-title {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.books-category-panel[hidden] {
  display: none;
}

.books-category-panel {
  display: grid;
  gap: 22px;
}

.books-subsection-block {
  display: grid;
  gap: 14px;
}

.books-subsection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.books-subsection-head h4 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #f8ecde;
}

.books-subsection-count {
  min-width: 34px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(223, 179, 127, 0.12);
  color: #f4d5b0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.books-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.book-card {
  appearance: none;
  text-decoration: none;
  text-align: left;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  background:
    radial-gradient(circle at top right, rgba(223, 179, 127, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(52, 35, 24, 0.96), rgba(27, 18, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-card:hover,
.book-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(223, 179, 127, 0.34);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
  outline: none;
}

.book-card.is-active {
  border-color: rgba(223, 179, 127, 0.46);
  box-shadow: 0 0 0 1px rgba(223, 179, 127, 0.12) inset, 0 18px 28px rgba(0, 0, 0, 0.22);
}

.book-card-media {
  padding: 14px;
}

.book-cover {
  width: 100%;
  height: 100%;
  min-height: 192px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #d8deef;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.book-card-body {
  min-width: 0;
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 18px 18px 18px 4px;
}

.book-card-title {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
  font-size: 24px;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-author {
  color: #e6d6c5;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.95;
}

.book-card-link {
  color: #f1d7b6;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.books-summary-panel {
  position: sticky;
  top: 24px;
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
  background:
    radial-gradient(circle at top left, rgba(223, 179, 127, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(58, 39, 27, 0.96), rgba(23, 15, 11, 0.98));
}

.books-summary-section {
  margin: 0;
  font-size: 15px;
  color: #f1e4d6;
  opacity: 0.9;
}

.books-summary-title {
  margin-top: 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.books-summary-author {
  margin-top: 8px;
  color: #e8d6c1;
  font-size: 16px;
}

.books-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.books-summary-pill {
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eddcc7;
  font-size: 12px;
}

.books-summary-pill:empty {
  display: none;
}

.books-summary-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.books-summary-link:hover {
  border-bottom-color: transparent;
  border-color: rgba(223, 179, 127, 0.4);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.books-summary-body {
  color: #f4eadf;
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 8px;
}

.book-empty {
  color: #d7c8bb;
  font-size: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1100px) {
  .music-hub {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .music-player-panel {
    position: static;
    grid-column: 1 / -1;
  }

  .books-hub {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .books-summary-panel {
    position: static;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding: 20px;
  }

  h2,
  h3 {
    line-height: 1.15;
  }

  h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .top-nav {
    gap: 12px;
    margin: 6px 0 16px;
    flex-wrap: wrap;
  }

  .top-nav a,
  .inline-link {
    font-size: 19px;
  }

  .styles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .music-hub {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .music-genre-rail,
  .music-player-panel {
    position: static;
  }

  .music-genre-rail {
    order: 1;
  }

  .music-player-panel {
    order: 2;
    scroll-margin-top: 18px;
  }

  .music-stage {
    order: 3;
  }

  .music-genre-tabs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .music-kicker,
  .music-track-index,
  .music-genre-count,
  .music-track-tag,
  .music-player-chip,
  .music-track-action,
  .books-category-count,
  .books-subsection-count,
  .books-summary-pill,
  .book-card-link,
  .book-cover-placeholder {
    font-size: 15px;
  }

  .music-rail-title,
  .books-rail-title {
    font-size: 32px;
  }

  .music-rail-caption,
  .music-stage-caption,
  .music-player-caption,
  .music-track-note,
  .books-rail-caption,
  .books-stage-caption,
  .book-author,
  .books-summary-author,
  .books-summary-body,
  .book-empty {
    font-size: 18px;
  }

  .music-genre-name,
  .music-track-title,
  .books-category-name,
  .books-summary-section {
    font-size: 20px;
  }

  .music-stage {
    min-height: auto;
    padding: 20px;
  }

  .music-stage-header {
    margin-bottom: 18px;
  }

  .music-stage-title,
  .music-player-title {
    font-size: 30px;
    max-width: none;
  }

  .music-track-grid {
    grid-template-columns: 1fr;
  }

  .style-tile {
    padding: 16px;
  }

  .books-hub {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .books-rail,
  .books-summary-panel {
    position: static;
  }

  .books-rail {
    order: 1;
  }

  .books-summary-panel {
    order: 2;
    scroll-margin-top: 18px;
  }

  .books-stage {
    order: 3;
  }

  .books-category-tabs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .books-stage {
    min-height: auto;
    padding: 20px;
  }

  .books-stage-header {
    margin-bottom: 18px;
  }

  .books-stage-title {
    font-size: 30px;
  }

  .books-card-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .book-cover {
    min-height: 150px;
  }

  .books-summary-title {
    font-size: 30px;
  }

  .book-card-title {
    font-size: 26px;
  }
}

