/* ── Bhajan captions — minimal chip docked beside the sound button ── */
#bhajanCap{
  position:fixed; left:74px; bottom:27px; z-index:7999;
  display:flex; align-items:center; gap:9px;
  max-width:min(64vw,420px);
  padding:7px 14px 8px; border-radius:999px;
  background:rgba(70,18,34,.82);
  border:1px solid rgba(218,172,82,0.8);
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  opacity:0; pointer-events:none; transform:translateX(-6px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}
#bhajanCap.live{opacity:1; transform:translateX(0)}

#bhajanCap .eq{display:flex;align-items:flex-end;gap:2px;height:10px;flex:0 0 auto}
#bhajanCap .eq i{width:2.5px;border-radius:2px;background:linear-gradient(180deg,#F6D98A,#C9932E);animation:bhjEq 1.1s ease-in-out infinite}
#bhajanCap .eq i:nth-child(2){animation-delay:.18s;animation-duration:.9s}
#bhajanCap .eq i:nth-child(3){animation-delay:.36s;animation-duration:1.3s}
#bhajanCap .eq i:nth-child(4){animation-delay:.09s;animation-duration:1s}
@keyframes bhjEq{0%,100%{height:3px;opacity:.7}50%{height:10px;opacity:1}}

#bhajanCap .om{display:none}

#bhajanCap .line{
  font-family:'Noto Serif Kannada',serif;
  font-size:12.5px; line-height:1.6;
  white-space:nowrap; overflow:hidden;
  mask-image:linear-gradient(90deg,transparent,black 7%,black 93%,transparent);
  -webkit-mask-image:linear-gradient(90deg,transparent,black 7%,black 93%,transparent);
}
#bhajanCap .line .w{display:inline-block;margin:0 .15em;color:rgba(243,226,203,.4);transition:color .3s ease,text-shadow .3s ease}
#bhajanCap .line .w.past{color:rgba(244,220,168,.7)}
#bhajanCap .line .w.now{color:#FFF3CF;text-shadow:0 0 12px rgba(246,217,138,.8)}

@media (prefers-reduced-motion:reduce){
  #bhajanCap .eq i{animation:none;height:6px}
  #bhajanCap .line .w{transition:none}
}
/* mobile — button sits at bottom:84px, dock beside it */
@media (max-width:768px){
  #bhajanCap{left:70px; bottom:87px; max-width:calc(100vw - 150px); padding:6px 12px 7px}
  #bhajanCap .line{font-size:11.5px}
}
