:root{
  --clay:#c1442d;
  --clay-deep:#8a2c1d;
  --clay-shadow:#4e140d;
  --cream:#f6ecda;
  --amber:#e8a33d;
  --dusk:#4a3d73;
  --dusk-deep:#241b3e;
  --leaf:#4b6b3a;
  --leaf-deep:#2e4325;
  --wood:#8c5a34;
  --charcoal:#1c140f;
  --gold:#d9a441;

  --glass-bg:rgba(24,17,13,.42);
  --glass-bg-strong:rgba(20,14,10,.6);
  --glass-border:rgba(246,236,218,.22);
  --glass-blur:14px;
  --radius-pill:999px;
  --shadow-soft:0 8px 28px rgba(12,7,4,.35);
  --ease:cubic-bezier(.22,.68,.32,1);
}
*{box-sizing:border-box;}
html,body{margin:0;height:100%;background:var(--dusk-deep);overflow:hidden;
  font-family:'Poppins',sans-serif;-webkit-font-smoothing:antialiased;}
button{font-family:inherit;}
.stage{position:relative;width:100%;height:100vh;height:100dvh;overflow:hidden;}
.scene-picture{position:absolute;inset:0;width:100%;height:100%;display:block;z-index:1;}
.scene{
  position:absolute;inset:0;width:100%;height:100%;display:block;
  object-fit:cover;object-position:center center;
  background:var(--dusk-deep);
  pointer-events:none;user-select:none;-webkit-user-drag:none;
}

/* reusable glass chip */
.chip{
  display:flex;align-items:center;gap:8px;
  background:var(--glass-bg);border:1px solid var(--glass-border);
  backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));
  border-radius:var(--radius-pill);color:var(--cream);
}

/* legibility vignettes, independent of scene colors */
.vignette{position:absolute;left:0;right:0;z-index:2;pointer-events:none;}
.vignette-top{top:0;height:160px;background:linear-gradient(to bottom, rgba(15,10,7,.5), transparent);}
.vignette-bottom{bottom:0;height:240px;background:linear-gradient(to top, rgba(10,6,4,.6), transparent);}

/* ---- top bar ---- */
.topbar{
  position:absolute;top:0;left:0;right:0;z-index:5;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:max(16px, env(safe-area-inset-top, 16px)) clamp(16px,4vw,40px) 10px;
  animation:drop-in .6s var(--ease) both;
}
/* bare time, no chip — reads as part of the scene rather than a UI badge */
.clock{
  display:flex;align-items:baseline;gap:6px;
  font-family:'Space Mono',monospace;font-weight:700;
  font-size:clamp(22px,2.6vw,34px);letter-spacing:1px;
  font-variant-numeric:tabular-nums;
  color:#ffffff;
  text-shadow:0 2px 16px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.45);
}
.clock .ampm{
  font-size:.42em;font-weight:400;letter-spacing:1.5px;
  opacity:.72;text-transform:uppercase;
}
.online{padding:8px 16px 8px 12px;font-size:12.5px;letter-spacing:.2px;white-space:nowrap;}
.online .dot{width:7px;height:7px;border-radius:50%;background:#6fd67a;box-shadow:0 0 8px #6fd67a;animation:pulse 2.2s ease-in-out infinite;flex-shrink:0;}
#online-count{font-variant-numeric:tabular-nums;}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}
.topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ---- instagram credit ---- */
.ig-link{
  text-decoration:none;color:var(--cream);
  font-size:12.5px;font-weight:500;letter-spacing:.2px;white-space:nowrap;
  padding:8px 14px 8px 11px;gap:7px;
  -webkit-tap-highlight-color:transparent;
  transition:background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.ig-link svg{width:15px;height:15px;flex-shrink:0;display:block;}
@media (hover:hover){
  .ig-link:hover{background:var(--glass-bg-strong);color:#ffffff;transform:translateY(-1px);}
}
.ig-link:active{transform:scale(.96);}
.ig-link:focus-visible{outline:2px solid #ffffff;outline-offset:2px;}

/* theme switch button styled with player pill aesthetic - much bigger */
.theme-toggle{
  position:relative;
  display:flex;
  align-items:center;
  gap:13px;
  padding:10px 22px;
  cursor:pointer;
  background:linear-gradient(105deg, rgba(35, 22, 16, 0.16) 0%, rgba(45, 20, 16, 0.20) 55%, rgba(30, 15, 12, 0.22) 100%);
  backdrop-filter:blur(16px) saturate(150%) brightness(102%);
  -webkit-backdrop-filter:blur(16px) saturate(150%) brightness(102%);
  border:1px solid rgba(255,255,255,0.14);
  border-top:1px solid rgba(255,255,255,0.28);
  border-bottom:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-pill);
  color:#ffffff;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.30),
    0 3px 8px rgba(0,0,0,0.15),
    inset 0 1px 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 2px 0 rgba(0,0,0,0.15);
  overflow:hidden;
  transition:transform .15s var(--ease), box-shadow .15s var(--ease), border-color .15s;
  outline:none;
}

/* Glass specular gloss sheen */
.theme-toggle::before{
  content:'';position:absolute;inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 45%, transparent 65%);
  pointer-events:none;
  z-index:1;
}

.theme-toggle:hover{
  transform:translateY(-1.5px);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.38),
    0 4px 10px rgba(0,0,0,0.20),
    inset 0 1px 1px 0 rgba(255,255,255,0.34),
    inset 0 -1px 2px 0 rgba(0,0,0,0.15);
  border-top-color:rgba(255,255,255,0.42);
}
.theme-toggle:active{
  transform:scale(0.96) translateY(0);
}
.theme-toggle .theme-icon{
  position:relative;
  z-index:2;
  width:20px;
  height:20px;
  flex-shrink:0;
  opacity:0.42;
  transition:opacity .25s var(--ease), filter .25s var(--ease);
  display:block;
}
.theme-toggle:not(.dark) .theme-icon.sun{
  opacity:1;
  filter:drop-shadow(0 0 6px rgba(255,255,255,0.8));
}
.theme-toggle.dark .theme-icon.moon{
  opacity:1;
  filter:drop-shadow(0 0 6px rgba(255,255,255,0.8));
}
.theme-toggle .theme-track{
  position:relative;
  z-index:2;
  width:44px;
  height:24px;
  background:rgba(255,255,255,0.22);
  border:1.5px solid rgba(255,255,255,0.18);
  border-radius:999px;
  display:inline-block;
  flex-shrink:0;
}
.theme-toggle .theme-thumb{
  width:16px;
  height:16px;
  background:#ffffff;
  border-radius:50%;
  position:absolute;
  top:2.5px;
  left:3px;
  box-shadow:0 2px 6px rgba(0,0,0,0.45);
  transition:transform .25s var(--ease);
}
.theme-toggle.dark .theme-thumb{
  transform:translateX(21px);
}

/* ---- signboard ---- */
.signboard{
  position:absolute;top:10%;left:50%;transform:translateX(-50%);
  text-align:center;z-index:4;pointer-events:none;
  width:100%;max-width:min(94vw,1100px);
  animation:rise-in .8s .1s var(--ease) both;
  display:flex;flex-direction:column;align-items:center;
}
.signboard .signboard-main{
  font-family:'Baloo Chettan 2',cursive;font-weight:800;color:#ffffff;
  font-size:clamp(36px,9.4vw,86px);line-height:1.18;
  text-shadow:0 6px 28px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.35);
  margin:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.signboard .signboard-main span{
  display:block;
}

/* ---- minimal audio visualizer below signboard ---- */
.visualizer-wrap{
  margin-top:clamp(12px, 2.2vh, 22px);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  opacity:0.92;
  filter:drop-shadow(0 2px 10px rgba(0,0,0,0.45));
  transition:opacity 0.3s var(--ease);
}
.visualizer{
  width:clamp(140px, 22vw, 190px);
  height:clamp(20px, 3vh, 27px);
  display:block;
}

/* ---- player pill ---- */
.player{
  position:absolute;bottom:clamp(20px,4vh,42px);left:50%;transform:translateX(-50%);
  z-index:6;display:flex;align-items:center;gap:22px;
  background:linear-gradient(105deg, rgba(35, 22, 16, 0.12) 0%, rgba(45, 20, 16, 0.14) 55%, rgba(30, 15, 12, 0.16) 100%);
  backdrop-filter:blur(16px) saturate(150%) brightness(102%);
  -webkit-backdrop-filter:blur(16px) saturate(150%) brightness(102%);
  border:1px solid rgba(255,255,255,0.12);
  border-top:1px solid rgba(255,255,255,0.25);
  border-bottom:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-pill);
  padding:14px 30px 14px 18px;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.32),
    0 4px 10px rgba(0,0,0,0.15),
    inset 0 1px 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 2px 0 rgba(0,0,0,0.15);
  width:min(94vw,680px);
  animation:rise-in .6s .2s var(--ease) both;
  overflow:hidden;
}

/* Glass specular gloss sheen */
.player::before{
  content:'';position:absolute;inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 40%, transparent 60%);
  pointer-events:none;
  z-index:1;
}

.art-wrap{
  position:relative;flex-shrink:0;width:70px;height:70px;z-index:2;
  border-radius:50%;
  box-shadow:0 6px 20px rgba(0,0,0,0.45);
  animation:spin 8s linear infinite;
  animation-play-state:paused;
}
.player.playing .art-wrap,
.art-wrap.spinning,
.player img.spinning{
  animation-play-state:running!important;
}

.art-wrap::before{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:24px;height:24px;border-radius:50%;
  background:rgba(0,0,0,0.72);border:1.5px solid rgba(255,255,255,0.3);
  z-index:3;pointer-events:none;
}
.art-wrap::after{
  content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:8px;height:8px;border-radius:50%;
  background:#140e0b;
  z-index:4;pointer-events:none;
}
.player img{
  width:100%;height:100%;border-radius:50%;object-fit:cover;display:block;
  border:2px solid rgba(255,255,255,0.22);background:#1a120c;
  pointer-events:none;
}
@keyframes spin{to{transform:rotate(360deg);}}

.track-info{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center;z-index:2;}
.track-info .title{
  color:#ffffff;font-size:17px;font-weight:700;line-height:1.25;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;letter-spacing:-0.2px;
}
.track-info .artist{
  color:rgba(255,255,255,0.74);font-weight:400;font-size:14px;line-height:1.3;
  margin-top:3px;margin-bottom:8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.track-info.no-artist .artist{display:none;}
.track-info.no-artist .title{margin-bottom:8px;}
.scrub{position:relative;padding:5px 0;cursor:pointer;touch-action:none;}
.scrub:focus-visible{outline:2px solid #fff;outline-offset:4px;border-radius:4px;}
@media (pointer:coarse){
  .scrub{padding:9px 0;}
  .progress{height:4px;}
}
.progress{position:relative;height:3.5px;background:rgba(255,255,255,0.25);border-radius:3px;overflow:visible;}
.progress-fill{
  position:relative;height:100%;width:0%;
  background:rgba(255,255,255,0.88);border-radius:3px;
  transition:width .2s linear;
}
.progress-fill::after{
  content:'';position:absolute;right:-4px;top:50%;transform:translateY(-50%);
  width:9px;height:9px;border-radius:50%;background:#ffffff;
  box-shadow:0 0 6px rgba(255,255,255,0.9), 0 2px 4px rgba(0,0,0,0.4);
  opacity:1;
  transition:transform .15s var(--ease);
}
@media (hover:hover){
  .scrub:hover .progress-fill::after{transform:translateY(-50%) scale(1.25);}
}
.time{
  font-family:'Poppins',sans-serif;font-size:12px;font-weight:400;
  color:rgba(255,255,255,0.65);margin-top:6px;font-variant-numeric:tabular-nums;
}

.controls{display:flex;align-items:center;gap:12px;flex-shrink:0;margin-left:10px;z-index:2;}
.controls button{
  background:none;border:none;cursor:pointer;color:rgba(255,255,255,0.85);
  display:flex;align-items:center;justify-content:center;
  width:34px;height:34px;border-radius:50%;opacity:1;padding:0;
  flex-shrink:0;-webkit-tap-highlight-color:transparent;
  transition:color .15s var(--ease), transform .12s var(--ease);
}
@media (hover:hover){
  .controls button:hover{color:#ffffff;transform:scale(1.1);}
}
.controls button:active{transform:scale(.92);}
.controls button:focus-visible{color:#ffffff;outline:2px solid #ffffff;outline-offset:2px;}
.controls button:disabled{opacity:.3;cursor:default;transform:none;}
.controls svg{width:18px;height:18px;fill:currentColor;display:block;margin:auto;}

.play-btn{
  width:52px!important;height:52px!important;
  display:flex!important;align-items:center!important;justify-content:center!important;
  padding:0!important;
  background:#ffffff!important;color:#111111!important;opacity:1!important;
  box-shadow:0 6px 20px rgba(0,0,0,0.35);
  border-radius:50%!important;
  transition:transform .15s var(--ease), box-shadow .15s var(--ease), background .15s!important;
}
@media (hover:hover){
  .play-btn:hover{background:#f4f4f4!important;transform:scale(1.06)!important;box-shadow:0 8px 24px rgba(0,0,0,0.42)!important;}
}
.play-btn:active{transform:scale(0.94)!important;}
.play-btn:disabled{background:rgba(255,255,255,0.5)!important;color:#666!important;opacity:.4!important;}
.play-btn svg{width:22px;height:22px;fill:#111111!important;display:block;margin:0 auto;}

/* ---- volume ---- */
.volume-wrap{position:relative;display:flex;align-items:center;flex-shrink:0;}
.volume-slider-box{
  display:flex;align-items:center;
  width:70px;padding:10px 0 10px 8px;
  transition:width .22s var(--ease), opacity .18s var(--ease), padding .22s var(--ease);
}
.volume-track{
  position:relative;width:100%;height:4px;border-radius:3px;
  background:rgba(255,255,255,0.25);cursor:pointer;touch-action:none;
}
.volume-fill{
  position:relative;height:100%;width:100%;
  background:rgba(255,255,255,0.88);border-radius:3px;
}
.volume-fill::after{
  content:'';position:absolute;right:-4px;top:50%;transform:translateY(-50%);
  width:9px;height:9px;border-radius:50%;background:#ffffff;
  box-shadow:0 0 6px rgba(255,255,255,0.9), 0 2px 4px rgba(0,0,0,0.4);
  transition:transform .15s var(--ease);
}
@media (hover:hover){
  .volume-track:hover .volume-fill::after{transform:translateY(-50%) scale(1.25);}
}
.volume-track:focus-visible{outline:2px solid #fff;outline-offset:5px;border-radius:4px;}
.volume-wrap.muted #volume-btn{color:rgba(255,255,255,0.5);}
.volume-wrap.muted .volume-fill{background:rgba(255,255,255,0.35);}
/* hidden when the browser won't let us set audio.volume (iOS — hardware keys only) */
.volume-wrap.unsupported{display:none;}

/* mid widths: keep the slider tucked away until the control is used */
@media (max-width:900px){
  .volume-slider-box{width:0;padding:10px 0;opacity:0;overflow:hidden;}
  .volume-wrap:hover .volume-slider-box,
  .volume-wrap:focus-within .volume-slider-box,
  .volume-wrap.open .volume-slider-box{width:64px;padding:10px 0 10px 8px;opacity:1;}
}

/* ---- shuffle toggle ---- */
#shuffle-btn{position:relative;color:rgba(255,255,255,0.55);}
#shuffle-btn.active{color:#ffffff;}
#shuffle-btn.active::after{
  content:'';position:absolute;bottom:-1px;left:50%;transform:translateX(-50%);
  width:4px;height:4px;border-radius:50%;background:#ffffff;
  box-shadow:0 0 6px rgba(255,255,255,.9);
}

/* ---- "tap to start" hint, shown only when the browser blocks autoplay ---- */
.tap-hint{
  position:absolute;left:50%;transform:translateX(-50%);
  bottom:calc(clamp(20px,4vh,42px) + 114px);
  z-index:6;padding:8px 16px;font-size:12.5px;font-weight:500;
  white-space:nowrap;pointer-events:none;opacity:0;visibility:hidden;
  transition:opacity .3s var(--ease);
}
.tap-hint.show{opacity:1;visibility:visible;animation:hint-pulse 2.4s ease-in-out infinite;}
@keyframes hint-pulse{0%,100%{opacity:1;}50%{opacity:.5;}}

/* ---- empty state: no tracks listed yet ---- */
.player.empty .scrub,
.player.empty .time,
.player.empty #shuffle-btn,
.player.empty #prev-btn,
.player.empty #next-btn,
.player.empty .volume-wrap{display:none;}
.player.empty .track-info{padding:2px 0;}

@keyframes drop-in{from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}
@keyframes rise-in{from{opacity:0;transform:translateY(14px) translateX(var(--tx,0));}to{opacity:1;transform:translateY(0) translateX(var(--tx,0));}}
.signboard{--tx:-50%;}
.player{--tx:-50%;}

@media (prefers-reduced-motion: reduce){
  .online .dot{animation:none;}
  .topbar,.signboard,.player{animation:none;}
  .tap-hint.show{animation:none;}
  /* the spinning record is the point of the player — keep it, just slower */
  .art-wrap{animation:spin 20s linear infinite;animation-play-state:paused;}
}

/* ---- tablets / narrow desktops: keep the pill off the screen edges ---- */
@media (max-width:900px){
  .player{width:min(calc(100vw - 32px),680px);gap:18px;padding:13px 24px 13px 15px;}
  .controls{gap:11px;margin-left:8px;}
}

/* ---- phones ---- */
@media (max-width:600px){
  .topbar{gap:10px;padding:max(14px, env(safe-area-inset-top, 14px)) 14px 10px;}
  .clock{font-size:clamp(24px,7vw,30px);letter-spacing:.5px;}
  .online{padding:7px 13px 7px 10px;font-size:11.5px;}
  /* not enough bar left for the handle — the glyph carries it */
  .ig-link{padding:8px 10px;}
  .ig-handle{display:none;}
  .ig-link svg{width:17px;height:17px;}
  /* and the theme switch has to give up some width too */
  .topbar-right{gap:8px;}
  .theme-toggle{padding:8px 12px;gap:8px;}
  .theme-toggle .theme-icon{width:16px;height:16px;}
  .theme-toggle .theme-track{width:34px;height:20px;}
  .theme-toggle .theme-thumb{width:14px;height:14px;top:2px;left:2.5px;}
  .theme-toggle.dark .theme-thumb{transform:translateX(15px);}
  /* narrow screens leave the sign looking lost — scale it up against the viewport */
  .signboard{top:11%;max-width:94vw;}
  .signboard .signboard-main{font-size:clamp(38px,12vw,72px);}
  .vignette-top{height:180px;}
  .vignette-bottom{height:250px;}
  .player{
    bottom:max(16px, env(safe-area-inset-bottom, 16px));
    width:calc(100vw - 20px);
    padding:10px 16px 10px 11px;
    gap:12px;
  }
  .art-wrap, .player img{width:54px;height:54px;}
  .art-wrap::before{width:18px;height:18px;}
  .art-wrap::after{width:7px;height:7px;}
  .track-info .title{font-size:15px;}
  .track-info .artist{font-size:12px;margin-bottom:4px;}
  .time{font-size:11px;margin-top:4px;}
  .controls{gap:9px;margin-left:6px;}
  /* phones use their hardware volume keys — the slider only steals space here */
  .volume-wrap{display:none;}
  .controls button{width:30px;height:30px;}
  .controls svg{width:17px;height:17px;}
  .play-btn{width:44px!important;height:44px!important;}
  .play-btn svg{width:20px;height:20px;}
  .tap-hint{bottom:calc(max(16px, env(safe-area-inset-bottom, 16px)) + 88px);}
}

/* ---- small phones: single row runs out of width, so stack the controls ---- */
@media (max-width:430px){
  .player{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    grid-template-areas:"art info" "controls controls";
    align-items:center;
    row-gap:8px;column-gap:12px;
    border-radius:26px;
    padding:12px 16px 10px;
  }
  .art-wrap{grid-area:art;}
  .track-info{grid-area:info;}
  .controls{grid-area:controls;justify-content:center;gap:20px;margin-left:0;}
  .controls button{width:34px;height:34px;}
  .track-info .artist{margin-bottom:6px;}
  .tap-hint{bottom:calc(max(16px, env(safe-area-inset-bottom, 16px)) + 148px);font-size:11.5px;}
  .signboard .signboard-main{line-height:1.22;}
}

/* ---- very small phones (≤360px) ---- */
@media (max-width:360px){
  .player{padding:10px 12px 9px;column-gap:10px;}
  .art-wrap, .player img{width:48px;height:48px;}
  .art-wrap::before{width:16px;height:16px;}
  .track-info .title{font-size:14px;}
  .controls{gap:16px;}
  /* the bigger clock leaves little room here — shrink the whole bar to fit */
  .topbar{padding-left:10px;padding-right:10px;gap:6px;}
  .clock{font-size:20px;letter-spacing:0;}
  .clock .ampm{font-size:.4em;letter-spacing:.5px;}
  .topbar-right{gap:6px;}
  .online{padding:6px 10px 6px 8px;font-size:10.5px;gap:6px;}
  .ig-link{padding:6px 8px;}
  .ig-link svg{width:16px;height:16px;}
  .online .dot{width:6px;height:6px;}
  .theme-toggle{padding:6px 10px;gap:7px;}
  .theme-toggle .theme-icon{width:15px;height:15px;}
  .theme-toggle .theme-track{width:30px;height:18px;}
  .theme-toggle .theme-thumb{width:12px;height:12px;top:2px;left:2.5px;}
  .theme-toggle.dark .theme-thumb{transform:translateX(13px);}
}

/* ---- short / landscape screens: signboard must not crash into the pill ---- */
@media (max-height:520px) and (orientation:landscape){
  .signboard{top:8%;}
  .signboard .signboard-main{font-size:clamp(20px,4.2vh,44px);}
  .vignette-top{height:100px;}
  .vignette-bottom{height:160px;}
  .player{bottom:max(10px, env(safe-area-inset-bottom, 10px));padding:8px 20px 8px 10px;gap:14px;}
  .art-wrap, .player img{width:46px;height:46px;}
  .art-wrap::before{width:15px;height:15px;}
  .art-wrap::after{width:6px;height:6px;}
  .track-info .title{font-size:14px;}
  .track-info .artist{font-size:11.5px;margin-top:1px;margin-bottom:3px;}
  .time{font-size:10.5px;margin-top:3px;}
  .play-btn{width:40px!important;height:40px!important;}
  .play-btn svg{width:18px;height:18px;}
  .controls button{width:28px;height:28px;}
  .tap-hint{display:none;}
}

/* ---- large displays: stop the pill looking lost at the bottom ---- */
@media (min-width:1600px){
  .player{width:min(94vw,760px);padding:16px 34px 16px 20px;}
  .art-wrap, .player img{width:78px;height:78px;}
  .track-info .title{font-size:18px;}
  .track-info .artist{font-size:15px;}
  /* taller pill at this size — push the hint clear of it */
  .tap-hint{bottom:calc(clamp(20px,4vh,42px) + 134px);}
}



