/* ===== Sticky Bottom Mini Player ===== */
.js-bottom-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  display: none;
  align-items: center;
  padding: 10px 12px;
  z-index: 99999;
  box-shadow: 0 -4px 12px rgba(0,0,0,.35);
}

.js-bottom-player.active {
  display: flex;
}

.js-bottom-player img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  margin-right: 10px;
}

.gp-info {
  flex: 1;
  overflow: hidden;
}

#gpTitle {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gpSinger {
  font-size: 12px;
  color: #cfcfcf;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gpPlayBtn {
  background: linear-gradient(135deg,#f5d76e,#e7b84c);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
  color: #111;
}
