.listeners-widget{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin:18px auto 12px;
}
.listener-pill{
  display:flex;
  align-items:center;
  gap:9px;
  border-radius:999px;
  padding:10px 16px;
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 28px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
}
.listener-pill strong{
  min-width:28px;
  text-align:center;
  font-size:1.05rem;
  padding:3px 9px;
  border-radius:999px;
  background:rgba(0,0,0,.25);
}
.listener-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
  box-shadow:0 0 14px currentColor;
}
.active-listeners{
  background:linear-gradient(135deg, rgba(20,185,92,.95), rgba(5,120,63,.92));
}
.active-listeners .listener-dot{
  background:#62ff9b;
  color:#62ff9b;
}
.passive-listeners{
  background:linear-gradient(135deg, rgba(225,55,55,.95), rgba(145,22,22,.92));
}
.passive-listeners .listener-dot{
  background:#ff7676;
  color:#ff7676;
}
@media(max-width:640px){
  .listener-pill{width:100%; justify-content:space-between; max-width:360px;}
  .listeners-widget{gap:9px;}
}
