/* BBB Music — Frontend Styles */
.bbb-audio-player { max-width: 600px; margin: 0 auto; }
.bbb-player-main { transition: background 0.3s; }
.bbb-player-cover { box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.bbb-play-btn { transition: transform 0.15s; }
.bbb-play-btn:hover { transform: scale(1.1); }
.bbb-playlist-item:hover { background: #faf5ff !important; }
.bbb-playlist-item.active { background: #faf5ff !important; }
.bbb-playlist-item.playing .bbb-track-num { color: #9333ea; font-weight: 700; }
.bbb-protected-audio { transition: border-color 0.2s; }
.bbb-protected-audio:hover { border-color: #9333ea; }
.bbb-preview-btn { transition: transform 0.15s; }
.bbb-preview-btn:hover { transform: scale(1.1); }
.bbb-preview-btn.playing { background: #ef4444 !important; }

/* Sticky player bar */
#bbb-sticky-player-container.active { display: flex !important; align-items: center; gap: 16px; }
.bbb-sticky-cover { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; }
.bbb-sticky-info { flex: 1; min-width: 0; }
.bbb-sticky-title { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bbb-sticky-artist { font-size: 12px; opacity: 0.7; }
.bbb-sticky-controls { display: flex; align-items: center; gap: 8px; }
.bbb-sticky-btn { background: none; border: none; color: #fff; cursor: pointer; font-size: 18px; padding: 4px 8px; }
.bbb-sticky-btn:hover { opacity: 0.8; }
.bbb-sticky-progress { width: 120px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; }
.bbb-sticky-progress-fill { height: 100%; background: #9333ea; border-radius: 2px; transition: width 0.1s; }
.bbb-sticky-close { background: none; border: none; color: #fff; cursor: pointer; opacity: 0.6; font-size: 16px; }
.bbb-sticky-close:hover { opacity: 1; }
