/* Pit Of Carnage — Evitatum pre-release player */
:root {
  --bg: #0a0a0c;
  --bg2: #101014;
  --panel: #15151b;
  --panel2: #1b1b23;
  --line: #26262e;
  --txt: #ece8e4;
  --dim: #9b96a3;
  --faint: #6d6879;
  --acc: #ff3b1f;
  --acc2: #ff7a1f;
  --acc-glow: rgba(255, 59, 31, .45);
  --grad: linear-gradient(135deg, #ff3b1f, #ff7a1f);
  --radius: 14px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  min-height: 100vh;
}
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ============================= LOGIN GATE ============================= */
.gate { display: grid; place-items: center; overflow: hidden; }
.gate-bg {
  position: fixed; inset: -40px;
  background: center/cover no-repeat;
  filter: blur(26px) saturate(1.15) brightness(.55);
  transform: scale(1.05);
}
.gate-veil {
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,59,31,.12), transparent 55%),
    linear-gradient(180deg, rgba(5,5,8,.55), rgba(5,5,8,.92));
}
.gate-card {
  position: relative; z-index: 1;
  width: min(92vw, 400px);
  padding: 44px 36px 36px;
  background: rgba(14,14,18,.78);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,59,31,.06);
}
.gate-art {
  width: 190px; height: 190px; object-fit: cover;
  border-radius: 14px; margin: 0 auto 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.65), 0 0 60px rgba(255,59,31,.18);
  border: 1px solid rgba(255,255,255,.08);
}
.gate-band {
  font-size: 12px; letter-spacing: .42em; color: var(--acc2);
  text-transform: uppercase; font-weight: 700;
}
.gate-album {
  margin-top: 8px;
  font-size: 44px; font-weight: 900; letter-spacing: .12em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gate-sub { margin-top: 6px; color: var(--dim); font-size: 13px; }
.gate-form { margin-top: 26px; display: grid; gap: 12px; }
.gate-input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 10px; color: var(--txt); font-size: 15px;
  outline: none; text-align: center; letter-spacing: .08em;
  transition: border-color .2s, box-shadow .2s;
}
.gate-input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(255,59,31,.18); }
.gate-input.is-err { border-color: var(--acc); animation: shake .4s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-7px); } 50% { transform: translateX(6px); } 75% { transform: translateX(-4px); }
}
.gate-btn {
  padding: 13px; border-radius: 10px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 15px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.gate-btn:hover { filter: brightness(1.1); box-shadow: 0 8px 26px var(--acc-glow); transform: translateY(-1px); }
.gate-btn:active { transform: translateY(0); }
.gate-err { margin-top: 14px; color: var(--acc2); font-size: 13px; }
.gate-label {
  margin-top: 20px; display: inline-flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none; opacity: .85; transition: opacity .2s, transform .2s;
}
.gate-label:hover { opacity: 1; transform: translateY(-1px); }
.gate-label span {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--faint);
}
.gate-label img { height: 30px; width: auto; }
.gate-note { margin-top: 18px; color: var(--faint); font-size: 12px; line-height: 1.6; }

/* ============================= APP LAYOUT ============================= */
.page {
  max-width: 1060px; margin: 0 auto;
  padding: 0 24px 140px;
}

/* topbar */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0 0;
}
.top-label { display: inline-flex; align-items: center; opacity: .85; transition: opacity .2s; }
.top-label:hover { opacity: 1; }
.top-label img { height: 30px; width: auto; display: block; }
.top-out {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); text-decoration: none;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px;
  transition: color .15s, border-color .15s;
}
.top-out:hover { color: var(--acc2); border-color: rgba(255,122,31,.4); }

/* hero */
.hero {
  display: grid; grid-template-columns: 300px 1fr; gap: 36px;
  align-items: end;
  padding: 44px 0 34px;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0 -24px;
  background:
    radial-gradient(60% 90% at 20% 0%, rgba(255,59,31,.16), transparent 60%),
    radial-gradient(50% 80% at 90% 20%, rgba(255,122,31,.08), transparent 60%);
  pointer-events: none;
}
.hero-art img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,.65), 0 0 90px rgba(255,59,31,.14);
}
.hero-meta { position: relative; padding-bottom: 6px; }
.hero-kicker {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--acc2); font-weight: 700; margin-bottom: 10px;
}
.hero-title {
  font-size: clamp(44px, 7vw, 76px); font-weight: 900;
  letter-spacing: .04em; line-height: .95; text-transform: uppercase;
  background: linear-gradient(180deg, #fff, #ffd9c2 55%, var(--acc2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-band {
  margin-top: 10px; font-size: 20px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--txt);
}
.hero-solo { margin-top: 10px; font-size: 13px; color: var(--acc2); font-weight: 600; letter-spacing: .04em; }
.hero-sub { margin-top: 10px; color: var(--dim); font-size: 14px; }
.hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary svg { transform: translateX(1px); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: 999px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 8px 30px var(--acc-glow);
  transition: transform .15s, filter .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); }
.hero-badge {
  font-size: 12px; color: var(--faint);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}

/* tracklist */
.tracks { margin-top: 14px; }
.tracks-head, .track {
  display: grid;
  grid-template-columns: 40px 54px minmax(150px, 210px) 1fr auto 52px;
  align-items: center; gap: 16px;
}
.tracks-head {
  padding: 0 16px 12px; color: var(--faint); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.th-title { grid-column: 2 / 5; }
.th-dur { grid-column: 6; text-align: right; padding-right: 4px; }
.tracklist { list-style: none; margin-top: 10px; }
.track {
  position: relative;
  padding: 9px 16px 9px 12px; border-radius: 12px; cursor: pointer;
  transition: background .15s;
  user-select: none;
  overflow: hidden;
}
.track:hover { background: rgba(255,255,255,.055); }
.track:focus-visible { outline: 2px solid var(--acc); outline-offset: -2px; }

.t-left { position: relative; display: grid; place-items: center; height: 24px; }
.t-num { color: var(--faint); font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }
.t-playic { display: none; color: var(--txt); transform: translateX(1px); }
.track:hover .t-num { display: none; }
.track:hover .t-playic { display: block; }

.t-art {
  width: 54px; height: 54px; border-radius: 8px; object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.t-meta { display: grid; gap: 3px; min-width: 0; }
.t-title {
  font-size: 15px; font-weight: 650;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.t-sub {
  font-size: 12px; color: var(--faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.t-dur { color: var(--dim); font-size: 13px; text-align: right; font-variant-numeric: tabular-nums; }
.t-wf {
  grid-column: 4;
  display: block; width: 100%; height: 36px;
  cursor: pointer; opacity: .85; align-self: center;
}
.track:hover .t-wf { opacity: 1; }

.t-eq { display: none; gap: 3px; align-items: flex-end; height: 16px; }
.t-eq i { width: 3.5px; background: var(--grad); border-radius: 2px; animation: eq 0.9s ease-in-out infinite; }
.t-eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.t-eq i:nth-child(2) { height: 100%; animation-delay: .25s; }
.t-eq i:nth-child(3) { height: 40%; animation-delay: .5s; }
@keyframes eq { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

.track.playing { background: linear-gradient(90deg, rgba(255,59,31,.12), rgba(255,59,31,.03) 70%); }
.track.playing::before {
  content: ""; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 3px; border-radius: 99px; background: var(--grad);
  box-shadow: 0 0 10px var(--acc-glow);
}
.track.playing .t-num, .track.playing .t-playic { display: none !important; }
.track.playing .t-eq { display: inline-flex; }
.track.playing .t-title { color: var(--acc2); }
.track.paused .t-eq i { animation-play-state: paused; }

/* comments */
.tracks-tip {
  display: flex; align-items: center; gap: 9px;
  margin: 0 0 16px; padding: 10px 14px;
  font-size: 12px; color: var(--dim); line-height: 1.5;
  background: rgba(255,122,31,.07); border: 1px solid rgba(255,122,31,.22);
  border-radius: 10px;
}
.tracks-tip svg { color: var(--acc2); flex: none; }
.tracks-tip strong { color: var(--acc2); }
.t-cbtn {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--dim); padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); white-space: nowrap;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: all .15s;
}
.t-cbtn:hover { color: var(--acc2); border-color: rgba(255,122,31,.45); background: rgba(255,122,31,.1); }
.t-ccount { font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.t-ccount:not(:empty) {
  background: var(--grad); color: #fff; border-radius: 99px;
  padding: 1px 7px; font-size: 10px;
}
.t-ccount:empty { display: none; }
.c-panel {
  grid-column: 1 / -1;
  margin: 4px 0 10px; padding: 16px 18px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; list-style: none;
}
.c-top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.c-ttl { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.c-num { font-size: 12px; color: var(--acc2); font-weight: 700; }

/* comment input bar — avatar + field + post, like SoundCloud */
.c-form { display: flex; gap: 9px; align-items: center; margin-bottom: 14px; }
.c-form input {
  padding: 10px 13px; border-radius: 99px; font-size: 13px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  color: var(--txt); outline: none; transition: border-color .15s, box-shadow .15s;
}
.c-form input:focus { border-color: var(--acc); box-shadow: 0 0 0 3px rgba(255,59,31,.14); }
.c-form .c-name { width: 140px; flex: none; }
.c-form .c-body { flex: 1; min-width: 0; }
.c-who {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 14px; font-weight: 800;
  transition: transform .15s;
}
.c-who:hover { transform: scale(1.08); }

/* comment list */
.c-list { display: grid; gap: 10px; }
.c-list:empty { display: none; }
.c-item {
  display: flex; gap: 11px;
  padding: 11px 13px; background: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 12px;
}
.c-av {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 13px; font-weight: 800;
}
.c-main { flex: 1; min-width: 0; }
.c-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.c-name { font-size: 13px; font-weight: 700; color: var(--txt); }
.c-time { font-size: 11px; color: var(--faint); }
.c-del {
  margin-left: auto; color: var(--faint); font-size: 15px; line-height: 1;
  padding: 2px 6px; border-radius: 6px;
}
.c-del:hover { color: var(--acc); background: rgba(255,59,31,.1); }
.c-body { margin-top: 5px; font-size: 13px; color: var(--txt); line-height: 1.5; white-space: pre-wrap; word-break: break-word; }
.c-empty { color: var(--faint); font-size: 12px; padding: 4px 0 6px; }

/* page-wide feedback section */
.comments-sec { margin-top: 56px; }
.all-comments { margin-top: 18px; display: grid; gap: 10px; }
.ac-item { background: var(--panel); }
.c-trk {
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--dim); padding: 2px 9px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  transition: all .15s; font-variant-numeric: tabular-nums;
}
.c-trk:hover { color: var(--acc2); border-color: rgba(255,122,31,.4); background: rgba(255,122,31,.08); }
.c-post {
  padding: 9px 16px; border-radius: 8px; flex: none;
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: filter .2s;
}
.c-post:hover { filter: brightness(1.1); }
.c-ts {
  font-size: 11px; font-weight: 700; color: var(--acc2);
  font-variant-numeric: tabular-nums; padding: 1px 8px; border-radius: 99px;
  border: 1px solid rgba(255,122,31,.35); background: rgba(255,122,31,.08);
  transition: background .15s;
}
.c-ts:hover { background: rgba(255,122,31,.2); }
.c-ts-live {
  align-self: center; flex: none; min-width: 42px; text-align: center;
  font-size: 11px; font-weight: 700; color: var(--acc2);
  font-variant-numeric: tabular-nums;
}

/* SoundCloud-style comment markers on the seek bar */
.seek-marker {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  z-index: 3; cursor: pointer;
}
.sm-av {
  display: grid; place-items: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-size: 9px; font-weight: 800;
  border: 1.5px solid var(--bg);
  transition: transform .15s;
}
.seek-marker:hover .sm-av { transform: scale(1.5); }
.sm-tip {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  width: 200px; padding: 9px 11px;
  background: #1c1c24; border: 1px solid var(--line); border-radius: 9px;
  font-size: 11px; line-height: 1.45; color: var(--txt);
  display: none; pointer-events: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.6);
}
.sm-tip b { display: block; color: var(--acc2); margin-bottom: 2px; }
.sm-tip span { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.seek-marker:hover .sm-tip { display: block; }

/* sections */
.sec-title {
  font-size: 22px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.sec-sub { color: var(--dim); font-size: 13px; margin-top: 6px; }

/* compact progress strip under hero */
.prog-strip {
  margin: 4px 0 30px;
  padding: 16px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.prog-strip-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.prog-strip-label {
  font-size: 11px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--dim);
}
.prog-strip-pct {
  font-size: 14px; font-weight: 800; color: var(--acc2);
  font-variant-numeric: tabular-nums;
}
.prog-strip-bar {
  margin-top: 10px; height: 6px; border-radius: 99px;
  background: rgba(255,255,255,.07); overflow: hidden;
}
.prog-strip-bar i {
  display: block; height: 100%; border-radius: 99px;
  background: var(--grad); box-shadow: 0 0 12px var(--acc-glow);
}
.prog-chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 11px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--dim);
}
.chip.ok { color: #7fd08a; border-color: rgba(127,208,138,.3); background: rgba(127,208,138,.07); }
.chip.wip { color: var(--acc2); border-color: rgba(255,122,31,.35); background: rgba(255,122,31,.08); }
.chip.pending { color: var(--faint); }

/* studio */
.studio-sec {
  margin-top: 56px;
  display: grid; grid-template-columns: 380px 1fr; gap: 34px; align-items: center;
}
.studio-img img {
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.studio-meta p { margin-top: 14px; color: var(--dim); font-size: 15px; line-height: 1.7; }
.studio-meta strong { color: var(--txt); }
.studio-list { margin-top: 16px; list-style: none; display: grid; gap: 8px; }
.studio-list li {
  font-size: 13px; color: var(--dim);
  padding-left: 18px; position: relative;
}
.studio-list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad);
}

/* footer */
.foot {
  margin-top: 64px; padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  text-align: center;
  color: var(--faint); font-size: 12px;
}
.foot-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; opacity: .9; transition: opacity .2s, transform .2s;
}
.foot-label:hover { opacity: 1; transform: translateY(-2px); }
.foot-label img {
  height: 44px; width: auto; display: block;
  filter: drop-shadow(0 4px 18px rgba(255,59,31,.15));
}
.foot-label span {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--faint);
}
.foot-meta {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center;
}
.foot-dot { color: var(--faint); }
.foot-out { color: var(--dim); text-decoration: none; }
.foot-out:hover { color: var(--acc2); }

/* ============================= PLAYER BAR ============================= */
.playerbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 10;
  display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 18px;
  padding: 12px 20px;
  background: rgba(12,12,15,.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.pb-now { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pb-art { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; }
.pb-meta { min-width: 0; }
.pb-title { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pb-artist { font-size: 11px; color: var(--dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pb-center { display: grid; gap: 6px; justify-items: center; }
.pb-controls { display: flex; align-items: center; gap: 14px; }
.pb-btn {
  color: var(--dim); display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  transition: color .15s, transform .12s, background .15s;
}
.pb-btn:hover { color: var(--txt); transform: scale(1.06); }
.pb-btn.on { color: var(--acc2); }
.pb-play {
  width: 44px; height: 44px; background: #fff; color: #000;
}
.pb-play #icoPlay { transform: translateX(2px); }
.pb-play:hover { color: #000; transform: scale(1.07); }
.pb-seek { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 560px; }
.pb-time { font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; width: 36px; }
.pb-time:last-child { text-align: left; }
.pb-time:first-child { text-align: right; }
.seek {
  position: relative; flex: 1; height: 46px; cursor: pointer;
  display: flex; align-items: center;
}
.wf-cv { position: absolute; inset: 0; width: 100%; height: 100%; }
.seek::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%); height: 5px;
  border-radius: 99px; background: rgba(255,255,255,.12);
}
.seek-fill {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 5px; width: 0;
  border-radius: 99px; background: var(--grad);
}
.seek-dot {
  position: absolute; width: 12px; height: 12px; border-radius: 50%;
  background: #fff; left: 0; top: 50%; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .15s;
  box-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.seek:hover .seek-dot { opacity: 1; }
/* waveform active — hide the plain progress line */
.seek.wf-on::before, .seek.wf-on .seek-fill, .seek.wf-on .seek-dot { display: none; }
.seek.wf-on { height: 46px; }

.pb-right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.q-toggle {
  display: flex; border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; background: var(--panel);
}
.q-opt {
  padding: 6px 13px; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  color: var(--faint); transition: all .15s;
}
.q-opt.on { background: var(--grad); color: #fff; }
.vol {
  width: 96px; accent-color: var(--acc2); cursor: pointer;
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 820px) {
  .page { padding-bottom: 210px; }

  .hero { grid-template-columns: 1fr; gap: 22px; text-align: center; padding-top: 30px; }
  .hero-art { max-width: 280px; margin: 0 auto; width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-badge { font-size: 11px; }
  .studio-sec { grid-template-columns: 1fr; }

  /* player bar: [artwork + title | quality] / seek / controls */
  .playerbar {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  }
  .pb-now { grid-column: 1; min-width: 0; }
  .pb-art { width: 46px; height: 46px; }
  .pb-title { font-size: 13px; }
  .pb-artist { font-size: 11px; }
  .pb-right { grid-column: 2; gap: 8px; }
  .pb-right .vol, .pb-right #muteBtn { display: none; }
  .pb-center {
    grid-column: 1 / -1;
    display: flex; flex-direction: column-reverse;
    gap: 8px; width: 100%;
  }
  .pb-seek { max-width: none; }
  .pb-controls { gap: 20px; }
  .pb-play { width: 48px; height: 48px; }

  .tracks-head { display: none; }
  .track { grid-template-columns: 30px 46px 1fr auto 44px; gap: 12px; padding: 8px 10px; }
  .t-clabel { display: none; }
  .t-cbtn { padding: 6px 9px; }
  .tracks-tip { font-size: 11px; }
  .c-form { flex-wrap: wrap; }
  .c-form .c-name { width: 100%; }
  .c-panel { padding: 12px; }
  .t-art { width: 46px; height: 46px; }
  .t-sub { font-size: 11px; }
  .t-dur { font-size: 12px; }
  .t-wf { grid-column: 3; height: 22px; max-width: 100%; }
}
