/* ===== GOLD MINI PLAYER ===== */
.gold-mini-player {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg,#2b1b0e,#4a2f16,#d4af37);
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 12px;
  z-index: 9999;
  transition: bottom .35s ease;
  box-shadow: 0 -8px 30px rgba(0,0,0,.45);
}

.gold-mini-player.active {
  bottom: 0;
}

.gold-mini-player img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255,215,0,.7);
}

.lmp-info {
  flex: 1;
  overflow: hidden;
}

.lmp-info div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#lmpTitle {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

#lmpSinger {
  font-size: 12px;
  color: #f5e6b3;
}

#lmpPlayBtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  background: #ffd700;
  color: #000;
}

/* Desktop */
@media (min-width:768px) {
  .gold-mini-player {
    padding: 12px 20px;
  }
}
