    /* ─── tokens ──────────────────────────────────────────────── */
    :root {
      --warm: #ffb86b;
      --warm-deep: #ff8a3a;
      --neon: #ff5fa2;
      --ink: #0f0d1a;
      --paper: #f6efe2;
      --player-bg: rgba(18, 14, 28, 0.46);
      --player-stroke: rgba(255, 220, 180, 0.18);
      --player-text: #f6efe2;
    }

    * { box-sizing: border-box; }
    html, body {
      margin: 0; padding: 0;
      min-height: 100%; width: 100%;
      overflow-x: hidden;
      background: #0b0814;
      color: var(--player-text);
      font-family: "Quicksand", system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

    /* visually-hidden SEO text */
    .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;
    }

    /* ─── stage ──────────────────────────────────────────────── */
    .stage {
      position: relative;
      width: 100%;
      height: 100vh;
      height: 100svh; /* учитывает динамический viewport на мобиле */
      overflow: hidden;
    }

    /* ─── background (multi-layer crossfade) ─────────────────── */
    .bg-stack { position: absolute; inset: 0; overflow: hidden; }
    .bg {
      position: absolute; inset: -3%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      filter: saturate(1.05) contrast(1.02);
      transform: scale(1.04);
      animation: bgBreathe 22s ease-in-out infinite alternate;
      will-change: transform, opacity;
      opacity: 0;
      transition: opacity 1.6s ease;
    }
    .bg.active { opacity: 1; }
    @keyframes bgBreathe {
      0%   { transform: scale(1.04) translate(0,   0); }
      50%  { transform: scale(1.06) translate(-6px, -4px); }
      100% { transform: scale(1.05) translate(4px, -2px); }
    }

    .grade {
      position: absolute; inset: 0;
      background:
        radial-gradient(120% 80% at 50% 95%, rgba(8,5,18,.55), transparent 60%),
        radial-gradient(80% 60% at 50% 55%, rgba(0,0,0,.18), transparent 70%),
        linear-gradient(180deg, rgba(8,5,18,0) 35%, rgba(8,5,18,0.38) 100%);
      pointer-events: none;
    }

    /* ─── rain canvas ─────────────────────────────────────────── */
    #rain {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: .55;
    }

    /* ─── ambient glows ───────────────────────────────────────── */
    .lamp-glow {
      position: absolute;
      left: 14%; top: 48%;
      width: 38%; height: 38%;
      background: radial-gradient(closest-side, rgba(255,170,90,0.32), rgba(255,140,60,0) 70%);
      filter: blur(8px);
      mix-blend-mode: screen;
      animation: lampFlicker 5.4s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes lampFlicker {
      0%, 100% { opacity: .85; transform: scale(1); }
      18%      { opacity: .95; transform: scale(1.02); }
      20%      { opacity: .55; }
      22%      { opacity: 1; }
      55%      { opacity: .88; transform: scale(.99); }
      72%      { opacity: .98; }
    }

    .candle-glow {
      position: absolute;
      left: 47.5%; top: 56%;
      width: 9%; height: 12%;
      background: radial-gradient(closest-side, rgba(255,200,120,0.55), rgba(255,160,60,0) 75%);
      filter: blur(2px);
      mix-blend-mode: screen;
      animation: candleFlicker 1.3s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes candleFlicker {
      0%, 100% { opacity: .9; transform: translate(0,0) scale(1); }
      25%      { opacity: 1;  transform: translate(.5px,-.5px) scale(1.05); }
      50%      { opacity: .7; transform: translate(-.5px,.5px) scale(.95); }
      75%      { opacity: .95; transform: translate(.3px,0) scale(1.02); }
    }

    .neon-glow {
      position: absolute;
      left: 86%; top: 30%;
      width: 14%; height: 18%;
      background: radial-gradient(closest-side, rgba(255,95,162,0.5), rgba(255,95,162,0) 70%);
      filter: blur(6px);
      mix-blend-mode: screen;
      animation: neonPulse 3.2s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes neonPulse {
      0%, 100% { opacity: .85; }
      45%      { opacity: 1; }
      47%      { opacity: .35; }
      49%      { opacity: .95; }
      70%      { opacity: .8; }
    }

    /* ─── string light twinkles ──────────────────────────────── */
    .twinkles { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; }
    .twinkle {
      position: absolute;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(255,210,120,0.9), rgba(255,170,60,0) 70%);
      animation: twinkle 3s ease-in-out infinite;
    }
    @keyframes twinkle {
      0%, 100% { opacity: .35; transform: scale(.9); }
      50%      { opacity: 1;   transform: scale(1.25); }
    }

    /* ─── coffee steam ───────────────────────────────────────── */
    .steam {
      position: absolute;
      left: 30.5%; top: 56%;
      width: 60px; height: 120px;
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: .5;
    }
    .steam i {
      position: absolute;
      bottom: 0;
      width: 14px; height: 14px;
      border-radius: 50%;
      background: radial-gradient(closest-side, rgba(255,240,220,.85), rgba(255,240,220,0) 70%);
      animation: steam 5s linear infinite;
    }
    .steam i:nth-child(1) { left: 18px; animation-delay: 0s; }
    .steam i:nth-child(2) { left: 28px; animation-delay: 1.6s; }
    .steam i:nth-child(3) { left: 10px; animation-delay: 3.1s; }
    @keyframes steam {
      0%   { transform: translate(0, 0) scale(.6); opacity: 0; }
      15%  { opacity: .8; }
      100% { transform: translate(14px, -120px) scale(1.6); opacity: 0; }
    }

    /* ─── spinning vinyl ─────────────────────────────────────── */
    .vinyl {
      position: absolute;
      left: 75.8%; top: 62.5%;
      width: 7.2%; aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(closest-side, #c9304b 0 18%, transparent 19%),
        repeating-radial-gradient(circle at center,
          #16121b 0 1.2%,
          #1d1822 1.2% 2.4%);
      box-shadow:
        inset 0 0 0 2px rgba(0,0,0,.6),
        0 0 20px rgba(0,0,0,.4);
      animation: spin 6s linear infinite;
      opacity: .92;
      pointer-events: none;
    }
    .vinyl::after {
      content: "";
      position: absolute; inset: 44%;
      background: #f1d8a0;
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(0,0,0,.7);
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ─── stars ──────────────────────────────────────────────── */
    .stars { position: absolute; inset: 0; pointer-events: none; mix-blend-mode: screen; }
    .star {
      position: absolute;
      width: 2px; height: 2px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 4px #fff;
      animation: starTwinkle 4s ease-in-out infinite;
    }
    @keyframes starTwinkle {
      0%, 100% { opacity: .25; }
      50%      { opacity: .9; }
    }

    /* ─── top bar ─────────────────────────────────────────────── */
    .topbar {
      position: absolute;
      top: 24px; left: 0; right: 0;
      display: flex; justify-content: space-between; align-items: flex-start;
      padding: 0 24px;
      pointer-events: none;
      z-index: 4;
      gap: 16px;
    }

    /* ─── brand title block (visible SEO H1/H2) ──────────────── */
    .brand {
      position: absolute;
      top: 38%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      pointer-events: none;
      z-index: 4;
      max-width: 80vw;
    }
    .brand h1 {
      margin: 0;
      font-family: "Caveat", "Quicksand", cursive;
      font-size: 72px;
      font-weight: 500;
      line-height: 1;
      color: #fff7e7;
      letter-spacing: .01em;
      text-shadow:
        0 4px 24px rgba(0,0,0,.75),
        0 0 36px rgba(255,160,90,.22);
    }
    .brand p {
      margin: 10px 0 0;
      font-size: 14px;
      letter-spacing: .32em;
      text-transform: uppercase;
      color: rgba(255,220,180,.85);
      font-weight: 500;
      text-shadow: 0 2px 10px rgba(0,0,0,.7);
    }
    .pill {
      pointer-events: auto;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(15,10,22,.45);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,220,180,.16);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .04em;
      color: rgba(246,239,226,.85);
    }
    .pill svg { width: 14px; height: 14px; color: rgba(246,239,226,.6); }
    .pill b { font-weight: 700; color: #fff7e7; letter-spacing: .02em; }

    /* ─── player ─────────────────────────────────────────────── */
    .player-wrap {
      position: absolute;
      left: 28px;
      bottom: 28px;
      width: min(440px, calc(100vw - 56px));
      z-index: 5;
    }

    .player {
      position: relative;
      background: var(--player-bg);
      backdrop-filter: blur(18px) saturate(1.1);
      -webkit-backdrop-filter: blur(18px) saturate(1.1);
      border: 1px solid var(--player-stroke);
      border-radius: 26px;
      padding: 22px 24px 20px;
      box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.08);
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 20px;
      row-gap: 14px;
      align-items: center;
    }

    .play-btn {
      --size: 64px;
      width: var(--size); height: var(--size);
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: linear-gradient(150deg, #ffd9a8 0%, #ff9d5c 55%, #ff7a37 100%);
      color: #2a160a;
      display: grid; place-items: center;
      box-shadow:
        0 12px 28px rgba(255,120,50,.45),
        inset 0 1px 0 rgba(255,255,255,.5),
        inset 0 -6px 14px rgba(180,60,10,.35);
      transition: transform .15s ease, box-shadow .2s ease;
      grid-row: 1 / span 2;
      flex-shrink: 0;
    }
    .play-btn:hover { transform: scale(1.04); }
    .play-btn:active { transform: scale(.97); }
    .play-btn svg { width: 26px; height: 26px; display: block; }
    .play-btn .icon-pause { display: none; }
    .play-btn.playing .icon-play  { display: none; }
    .play-btn.playing .icon-pause { display: block; }
    .play-btn.playing {
      box-shadow:
        0 12px 28px rgba(255,120,50,.5),
        0 0 0 6px rgba(255,140,80,.18),
        inset 0 1px 0 rgba(255,255,255,.5);
    }

    .meta {
      min-width: 0;
      display: flex; flex-direction: column;
      gap: 6px;
    }
    .live {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #ffd0a4;
      font-weight: 600;
    }
    .live-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #ff4d6d;
      box-shadow: 0 0 0 0 rgba(255,77,109,.7);
      animation: pulseDot 1.6s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pulseDot {
      0%   { box-shadow: 0 0 0 0   rgba(255,77,109,.7); }
      70%  { box-shadow: 0 0 0 9px rgba(255,77,109,0); }
      100% { box-shadow: 0 0 0 0   rgba(255,77,109,0); }
    }
    .track-title {
      font-family: "Caveat", "Quicksand", cursive;
      font-size: 26px;
      line-height: 1.05;
      color: #fff7e7;
      text-shadow: 0 1px 0 rgba(0,0,0,.4);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .track-sub {
      font-size: 12.5px;
      color: rgba(246,239,226,.65);
      letter-spacing: .04em;
    }

    .eq {
      display: inline-flex; align-items: flex-end; gap: 3px;
      height: 14px;
      margin-left: 4px;
    }
    .eq span {
      display: block;
      width: 3px;
      background: linear-gradient(180deg, #ffd0a4, #ff7a37);
      border-radius: 2px;
      opacity: .55;
      height: 30%;
    }
    .player.playing .eq span {
      animation: eq 900ms ease-in-out infinite;
      opacity: 1;
    }
    .eq span:nth-child(1) { animation-delay: 0ms; }
    .eq span:nth-child(2) { animation-delay: 120ms; }
    .eq span:nth-child(3) { animation-delay: 240ms; }
    .eq span:nth-child(4) { animation-delay: 360ms; }
    .eq span:nth-child(5) { animation-delay: 480ms; }
    @keyframes eq {
      0%, 100% { height: 25%; }
      50%       { height: 100%; }
    }
    /* audio-reactive режим: отключаем CSS-анимацию, JS управляет высотой */
    .player.audio-reactive .eq span {
      animation: none;
      transition: height 60ms linear;
    }

    .volume {
      grid-column: 2 / span 1;
      display: flex; align-items: center; gap: 12px;
    }
    .volume svg { width: 18px; height: 18px; color: rgba(246,239,226,.7); flex-shrink: 0; }
    .volume input[type="range"] {
      -webkit-appearance: none; appearance: none;
      flex: 1;
      height: 4px;
      background: linear-gradient(to right, #ffb86b var(--vol, 60%), rgba(255,255,255,.15) var(--vol, 60%));
      border-radius: 4px;
      outline: none;
      cursor: pointer;
    }
    .volume input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 14px; height: 14px;
      background: #fff;
      border-radius: 50%;
      border: 2px solid #ff8a3a;
      box-shadow: 0 2px 6px rgba(0,0,0,.4);
      cursor: pointer;
    }
    .volume input[type="range"]::-moz-range-thumb {
      width: 14px; height: 14px;
      background: #fff;
      border-radius: 50%;
      border: 2px solid #ff8a3a;
      cursor: pointer;
    }

    /* ─── right sidebar: donate + playlists ───────────────────── */
    .playlists {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 14px;
      max-width: 320px;
    }

    .callout {
      font-family: "Caveat", cursive;
      font-size: 22px;
      color: #fff7e7;
      line-height: 1.15;
      text-align: right;
      text-shadow: 0 2px 8px rgba(0,0,0,.6);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .callout .arrow {
      display: inline-block;
      color: #ffd84d;
      animation: bob 1.6s ease-in-out infinite;
    }
    @keyframes bob {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(3px); }
    }
    .pl-list {
      display: flex; flex-direction: column;
      gap: 8px;
      align-items: stretch;
      width: 100%;
    }

    /* ─── action buttons ────────────────────────────────────────── */
    .action {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 11px 18px;
      border-radius: 999px;
      font-family: inherit;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .01em;
      text-decoration: none;
      cursor: pointer;
      transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
      border: 1px solid rgba(255,220,180,.22);
      color: #f6efe2;
      background: rgba(20,15,30,.5);
      backdrop-filter: blur(12px) saturate(1.1);
      -webkit-backdrop-filter: blur(12px) saturate(1.1);
      box-shadow: 0 10px 26px rgba(0,0,0,.3);
    }
    .action:hover {
      transform: translateY(-2px);
      border-color: rgba(255,220,180,.45);
      background: rgba(30,22,42,.65);
    }
    .action svg { width: 17px; height: 17px; flex-shrink: 0; }

    .action.donate {
      background: linear-gradient(135deg, rgba(255,95,162,.85), rgba(255,138,58,.85));
      border-color: rgba(255,180,200,.55);
      color: #fff;
      box-shadow: 0 12px 28px rgba(255,95,140,.35);
      align-self: flex-end;
    }
    .action.donate:hover {
      box-shadow: 0 16px 36px rgba(255,95,140,.5);
      background: linear-gradient(135deg, rgba(255,115,180,1), rgba(255,160,80,1));
    }
    .action.donate .heart { animation: heartBeat 1.4s ease-in-out infinite; }
    @keyframes heartBeat {
      0%, 100% { transform: scale(1); }
      20%       { transform: scale(1.18); }
      40%       { transform: scale(.95); }
      60%       { transform: scale(1.1); }
    }

    .action.yandex { background: rgba(20,15,30,.55); }
    .action.yandex:hover {
      background: rgba(255,219,77,.18);
      border-color: rgba(255,219,77,.65);
    }
    .ymark {
      width: 18px; height: 18px;
      background: #ffdb4d;
      color: #000;
      border-radius: 50%;
      display: inline-grid; place-items: center;
      font-size: 11px; font-weight: 800;
      flex-shrink: 0;
      font-family: "Quicksand", sans-serif;
    }

    /* ─── tweaks panel ────────────────────────────────────────── */
    .tweaks {
      position: fixed;
      right: 20px; bottom: 20px;
      width: 280px;
      background: rgba(15,10,22,.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,220,180,.18);
      border-radius: 18px;
      padding: 16px 18px 18px;
      color: #f6efe2;
      font-size: 13px;
      z-index: 50;
      display: none;
      box-shadow: 0 24px 60px rgba(0,0,0,.5);
    }
    .tweaks.open { display: block; }
    .tweaks h3 {
      margin: 0 0 12px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .18em;
      color: rgba(246,239,226,.65);
      font-weight: 700;
      display: flex; justify-content: space-between; align-items: center;
    }
    .tweaks .close {
      background: none; border: none; color: rgba(246,239,226,.5);
      cursor: pointer; font-size: 18px; padding: 0; line-height: 1;
    }
    .tweaks .row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 7px 0;
    }
    .tweaks .row label { color: rgba(246,239,226,.85); font-weight: 500; }
    .tweaks .swatches { display: flex; gap: 6px; }
    .tweaks .swatch {
      width: 22px; height: 22px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.15);
      cursor: pointer;
      transition: transform .15s ease, border-color .15s ease;
    }
    .tweaks .swatch.active { border-color: #fff; transform: scale(1.15); }
    .tweaks input[type="range"] {
      -webkit-appearance: none; appearance: none;
      width: 130px; height: 4px;
      background: rgba(255,255,255,.15);
      border-radius: 4px;
    }
    .tweaks input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 13px; height: 13px;
      background: #ff8a3a; border-radius: 50%; cursor: pointer;
    }
    .tweaks .toggle {
      width: 36px; height: 20px;
      background: rgba(255,255,255,.15);
      border-radius: 999px;
      position: relative; cursor: pointer;
      transition: background .2s ease;
    }
    .tweaks .toggle.on { background: #ff8a3a; }
    .tweaks .toggle::after {
      content: ""; position: absolute;
      top: 2px; left: 2px;
      width: 16px; height: 16px;
      background: #fff; border-radius: 50%;
      transition: transform .2s ease;
    }
    .tweaks .toggle.on::after { transform: translateX(16px); }

    /* conditional layers */
    .stage[data-rain="off"] #rain { display: none; }
    .stage[data-stars="off"] .stars { display: none; }
    .stage[data-vinyl="off"] .vinyl { display: none; }
    .stage[data-steam="off"] .steam { display: none; }

    /* ─── mobile layout ──────────────────────────────────────── */
    @media (max-width: 700px) {
      html, body { overflow-x: hidden; }

      .topbar { padding: 0 14px; top: 14px; }
      .pill { font-size: 11px; padding: 6px 10px; }
      .pill .listeners-label { display: none; }

      .brand { top: 18%; max-width: 92vw; }
      .brand h1 { font-size: 42px; white-space: nowrap; }
      .brand p { font-size: 11px; letter-spacing: .24em; margin-top: 6px; }

      /* player dock */
      .player-wrap {
        left: 0; right: 0;
        bottom: auto; /* positioned by JS above playlists */
        width: 100%;
        padding: 0 16px 18px;
      }
      .player {
        border-radius: 24px;
        padding: 20px 20px 18px;
        column-gap: 18px;
        row-gap: 16px;
      }
      .track-title { font-size: 22px; }
      .track-sub { font-size: 12px; }
      .play-btn { --size: 56px; }
      .play-btn svg { width: 22px; height: 22px; }

      /* playlists stack at the very bottom */
      .playlists {
        position: absolute;
        left: 0; right: 0; bottom: 0;
        max-width: 100%;
        align-items: stretch;
        gap: 12px;
        flex-direction: column;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
        background: rgba(12, 8, 22, 0.78);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255,220,180,.12);
      }

      .callout {
        font-size: 18px;
        justify-content: center;
        text-align: center;
        margin-top: 4px;
      }
      .pl-list { flex-direction: column; gap: 10px; }
      .pl-list .action { justify-content: center; padding: 13px 18px; }
      .action.donate {
        align-self: stretch;
        justify-content: center;
        padding: 14px 22px;
        font-size: 14.5px;
      }

      .tweaks { right: 10px; bottom: 10px; width: calc(100vw - 20px); }
    }

    /* ─── scroll hint at bottom of hero ─────────────────────────── */
    .scroll-hint {
      position: absolute;
      left: 50%;
      bottom: 8px;
      transform: translateX(-50%);
      z-index: 3;
      color: rgba(246,239,226,.55);
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-decoration: none;
      pointer-events: auto;
      animation: bob 2.4s ease-in-out infinite;
      text-shadow: 0 1px 6px rgba(0,0,0,.6);
    }
    .scroll-hint:hover { color: #fff7e7; }
    @media (max-width: 700px) { .scroll-hint { display: none; } }

    /* ─── About section (SEO content) ───────────────────────────── */
    .about {
      position: relative;
      width: 100%;
      padding: 80px 24px 100px;
      background:
        radial-gradient(80% 60% at 50% 0%, rgba(255,140,80,.08), transparent 70%),
        linear-gradient(180deg, #0b0814 0%, #120a1c 100%);
      color: rgba(246,239,226,.86);
      font-size: 16px;
      line-height: 1.7;
    }
    .about-inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .about h2 {
      font-family: "Caveat", "Quicksand", cursive;
      font-weight: 500;
      font-size: 42px;
      line-height: 1.1;
      margin: 48px 0 16px;
      color: #fff7e7;
      letter-spacing: .01em;
    }
    .about h2:first-child { margin-top: 0; }
    .about h3 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .02em;
      margin: 28px 0 8px;
      color: #fff7e7;
    }
    .about p { margin: 12px 0; }
    .about ul { padding-left: 22px; margin: 10px 0 16px; }
    .about ul li { margin: 6px 0; }
    .about a { color: #ffb86b; text-decoration: none; border-bottom: 1px solid rgba(255,184,107,.4); }
    .about a:hover { border-bottom-color: #ffb86b; }
    .about strong { color: #fff7e7; }
    .about .lead {
      font-size: 17.5px;
      color: rgba(246,239,226,.92);
    }
    .about-footer {
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,220,180,.1);
      text-align: center;
      font-size: 13px;
      color: rgba(246,239,226,.45);
    }
    details {
      border: 1px solid rgba(255,220,180,.12);
      border-radius: 12px;
      padding: 14px 18px;
      margin: 10px 0;
      background: rgba(20,15,30,.4);
    }
    details summary {
      cursor: pointer;
      font-weight: 600;
      color: #fff7e7;
      list-style: none;
      padding-right: 24px;
      position: relative;
      outline: none;
    }
    details summary::-webkit-details-marker { display: none; }
    details summary::after {
      content: "+";
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: #ffb86b;
      transition: transform .2s ease;
    }
    details[open] summary::after { content: "−"; }
    details p { margin: 10px 0 4px; }

    @media (max-width: 700px) {
      .about { padding: 50px 18px 70px; font-size: 15px; }
      .about h2 { font-size: 34px; margin: 36px 0 12px; }
      .about h3 { font-size: 17px; }
    }

    /* very small screens */
    @media (max-width: 380px) {
      .track-title { font-size: 19px; }
      .player { padding: 18px 16px 16px; column-gap: 14px; }
      .play-btn { --size: 52px; }
      .playlists { padding: 14px 12px calc(14px + env(safe-area-inset-bottom)); gap: 10px; }
    }
