/* Basic styles for player (exported from prototype) */
.mini-player-container { display:flex; justify-content:center; align-items:center; width:100%; }
.mini-player { border-radius:14px; padding:12px; box-shadow:0 6px 20px rgba(0,0,0,0.3); position:relative; overflow:hidden; width:460px; max-width:100%; background-size:cover; background-position:center; }
.mini-player::after { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.5); backdrop-filter:blur(6px); z-index:0; }
.cover img{ width:60px; height:60px; border-radius:10px; object-fit:cover; }
.stream-status{ font-size:11px; font-weight:bold; padding:2px 8px; border-radius:12px; display:inline-block; margin-bottom:4px; opacity:0.85; z-index:1; }
.stream-live{ background:#dc2626; color:#fff; animation:pulseStatus 1.5s infinite; }
.stream-auto{ background:#a855f7; color:#fff; }
@keyframes pulseStatus{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}
.info{ display:flex; flex-direction:column; justify-content:center; height:60px; flex:1; overflow:hidden; z-index:1; }
.title{ font-size:14px; font-weight:bold; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.artist{ font-size:12px; color:#e5e5e5; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.controls{ display:flex; align-items:center; gap:8px; z-index:1; }
.play-btn{ background:linear-gradient(135deg,#a855f7,#ec4899); border:none; width:42px; height:42px; border-radius:50%; color:#fff; font-size:20px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(0,0,0,0.3); }
.volume{ width:80px; accent-color:#ec4899; }
.listeners{ width:42px; height:42px; border-radius:50%; background:rgba(168,85,247,0.15); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:bold; color:#fff; animation:pulse 2s infinite; z-index:1; }
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(168,85,247,0.7)}70%{box-shadow:0 0 0 12px rgba(168,85,247,0)}100%{box-shadow:0 0 0 0 rgba(168,85,247,0)}}
.btn-playlist{ background:#a855f7 !important; color:#fff !important; border:none; z-index:1; }
.btn-playlist:hover{ background:#9333ea !important; }
