/* Standalone popup web player (NanoFM vibe) */
body.nanofmWebPlayer{
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 40% 0%, rgba(0,207,255,0.08), transparent 60%),
    linear-gradient(180deg, #050b11, #070b12);
}
.wpWrap{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 16px;
}
.wpCard{
  width: min(520px, calc(100vw - 24px));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(18,22,30,0.68), rgba(6,10,16,0.68));
  box-shadow:
    0 18px 52px rgba(0,0,0,0.55),
    0 0 26px rgba(0,207,255,0.05);
  backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
}
.wpHead{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 14px;
}
.wpLogo{ width: 190px; height:auto; display:block; }
.wpBadge{
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  border: 1px solid rgba(0,207,255,0.20);
  color: rgba(255,255,255,0.92);
  background: rgba(0,207,255,0.06);
}
.wpBadge.is-offline{
  border-color: rgba(255,90,120,0.25);
  background: rgba(255,90,120,0.10);
}

.wpNow{
  padding: 10px 0 16px;
  text-align: center;
}
.wpNow__title{
  font-weight: 900;
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wpNow__artist{
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wpControls{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-top: 8px;
}
.wpPlayBtn{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.wpPlayBtn:hover{
  border-color: rgba(0,207,255,0.18);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 0 0 3px rgba(0,207,255,0.06);
}
.wpVol{ flex: 1; accent-color: rgba(0,207,255,0.85); }

@media (max-width: 420px){
  .wpLogo{ width: 170px; }
  .wpPlayBtn{ width: 54px; height: 54px; }
}
