/**
 * ═══════════════════════════════════════════════════════════════════════════════
 * MUSICFLOW PWA - Player CSS
 * ═══════════════════════════════════════════════════════════════════════════════
 */

/* PLAYER BAR */
.player-bar { position:fixed; bottom:0; left:0; right:0; height:var(--player-height,90px); background:rgba(15,23,42,0.98); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-top:1px solid var(--border-color); z-index:var(--z-player,800); transition:transform 0.3s ease; }
.player-bar.hidden { transform:translateY(100%); }

/* Progress Top */
.player-progress-top { position:absolute; top:-3px; left:0; right:0; height:6px; cursor:pointer; z-index:10; }
.progress-bar-mini { position:absolute; top:2px; left:0; right:0; height:3px; background:var(--glass-bg); transition:height 0.2s ease; }
.player-progress-top:hover .progress-bar-mini { height:6px; top:0; }
.progress-fill-mini { height:100%; background:var(--gradient-primary); width:0%; transition:width 0.1s linear; }
.progress-buffered-mini { position:absolute; height:100%; background:rgba(255,255,255,0.1); width:0%; }

/* Player Inner */
.player-bar-inner { display:flex; align-items:center; justify-content:space-between; height:100%; padding:0 1.5rem; max-width:1400px; margin:0 auto; gap:1rem; }

/* TRACK INFO */
.player-track-info { display:flex; align-items:center; gap:1rem; flex:1; min-width:0; max-width:300px; }
.player-cover-wrapper { position:relative; width:56px; height:56px; flex-shrink:0; }
.player-cover { width:100%; height:100%; object-fit:cover; border-radius:var(--radius-md); box-shadow:var(--shadow-md); }
.player-cover-overlay { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.5); border-radius:var(--radius-md); opacity:0; transition:opacity var(--transition-fast); }
.player-cover-wrapper:hover .player-cover-overlay { opacity:1; }
.player-meta { flex:1; min-width:0; }
.player-title { font-size:var(--font-size-sm); font-weight:var(--font-weight-semibold); color:var(--text-primary); margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.player-title-link { color:inherit; text-decoration:none; }
.player-title-link:hover .player-title { color:var(--primary); }
.player-artist { font-size:var(--font-size-xs); color:var(--text-muted); margin:0.25rem 0 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.player-artist-link { color:inherit; text-decoration:none; }
.player-artist-link:hover { color:var(--text-primary); }
.player-favorite.active i { color:var(--danger); }

/* CONTROLS */
.player-controls { display:flex; flex-direction:column; align-items:center; gap:0.5rem; flex:2; max-width:600px; }
.player-buttons { display:flex; align-items:center; gap:0.75rem; }

/* Buttons */
.btn-icon { width:40px; height:40px; display:flex; align-items:center; justify-content:center; background:transparent; border:none; border-radius:var(--radius-full); color:var(--text-secondary); font-size:1.25rem; cursor:pointer; transition:all var(--transition-fast); }
.btn-icon:hover { color:var(--text-primary); background:var(--glass-bg); }
.btn-icon.active { color:var(--primary); }
.btn-icon.btn-sm { width:32px; height:32px; font-size:1rem; }
.btn-icon.btn-lg { width:48px; height:48px; font-size:1.5rem; }
.btn-play { width:44px; height:44px; display:flex; align-items:center; justify-content:center; background:white; border:none; border-radius:var(--radius-full); color:var(--bg-primary); font-size:1.25rem; cursor:pointer; transition:all var(--transition-fast); }
.btn-play:hover { transform:scale(1.05); box-shadow:var(--shadow-glow-sm); }
.btn-play-lg { width:64px; height:64px; font-size:1.75rem; }

/* Progress */
.player-progress { display:flex; align-items:center; gap:0.75rem; width:100%; }
.progress-bar { flex:1; height:4px; background:var(--glass-bg); border-radius:var(--radius-full); position:relative; cursor:pointer; }
.progress-bar:hover { height:6px; }
.progress-bar-lg { height:6px; }
.progress-buffered { position:absolute; height:100%; background:rgba(255,255,255,0.1); border-radius:var(--radius-full); width:0%; }
.progress-fill { position:absolute; height:100%; background:var(--gradient-primary); border-radius:var(--radius-full); width:0%; transition:width 0.1s linear; }
.progress-handle { position:absolute; top:50%; left:0%; width:12px; height:12px; background:white; border-radius:var(--radius-full); transform:translate(-50%,-50%) scale(0); transition:transform var(--transition-fast); box-shadow:var(--shadow-md); }
.progress-bar:hover .progress-handle, .progress-bar:active .progress-handle { transform:translate(-50%,-50%) scale(1); }
.time-display { font-size:var(--font-size-xs); color:var(--text-muted); min-width:40px; font-variant-numeric:tabular-nums; }

/* EXTRA CONTROLS */
.player-extra { display:flex; align-items:center; gap:0.5rem; flex:1; justify-content:flex-end; max-width:300px; }
.volume-control { display:flex; align-items:center; gap:0.5rem; }
.volume-slider-wrapper { width:80px; overflow:hidden; transition:width var(--transition-fast); }
.volume-slider { width:100%; height:4px; -webkit-appearance:none; appearance:none; background:var(--glass-bg); border-radius:var(--radius-full); cursor:pointer; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance:none; width:12px; height:12px; background:white; border-radius:var(--radius-full); cursor:pointer; box-shadow:var(--shadow-sm); }
.volume-slider::-moz-range-thumb { width:12px; height:12px; background:white; border:none; border-radius:var(--radius-full); cursor:pointer; }

/* VISUALIZER */
.player-visualizer { position:absolute; bottom:0; left:0; right:0; height:40px; pointer-events:none; opacity:0.3; }

/* LOADING */
.player-loading { position:absolute; inset:0; display:none; align-items:center; justify-content:center; background:rgba(15,23,42,0.9); z-index:20; }
.loading-spinner { width:32px; height:32px; border:3px solid var(--glass-bg); border-top-color:var(--primary); border-radius:var(--radius-full); animation:spin 0.8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* FULLSCREEN PLAYER */
.player-fullscreen { position:fixed; inset:0; background:var(--bg-primary); z-index:calc(var(--z-player) + 100); transform:translateY(100%); transition:transform 0.4s cubic-bezier(0.4,0,0.2,1); overflow:hidden; }
.player-fullscreen.active { transform:translateY(0); }
.fullscreen-bg { position:absolute; inset:0; background-size:cover; background-position:center; filter:blur(50px) brightness(0.3); transform:scale(1.2); }
.fullscreen-content { position:relative; z-index:1; height:100%; display:flex; flex-direction:column; padding:2rem; max-width:500px; margin:0 auto; overflow-y:auto; }
.fullscreen-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5rem; flex-shrink:0; }
.fullscreen-context { font-size:var(--font-size-sm); color:var(--text-muted); text-align:center; }

/* Fullscreen Cover cu Visualizer PESTE cover */
.fullscreen-cover-wrapper { position:relative; width:100%; max-width:350px; margin:0 auto 1.5rem; aspect-ratio:1; overflow:visible; flex-shrink:0; }
.fullscreen-cover { width:100%; height:100%; object-fit:cover; border-radius:var(--radius-xl); box-shadow:var(--shadow-2xl); position:relative; z-index:1; }
.fullscreen-visualizer { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; z-index:3; border-radius:var(--radius-xl); opacity:0.7; }

/* Fullscreen Info - ascunde artist gol */
.fullscreen-info { text-align:center; margin-bottom:1rem; flex-shrink:0; }
.fullscreen-title { font-size:var(--font-size-xl); font-weight:var(--font-weight-bold); color:var(--text-primary); margin:0; line-height:1.3; }
.fullscreen-artist { font-size:var(--font-size-base); color:var(--text-secondary); margin:0.5rem 0 0; }
.fullscreen-artist:empty { display:none; }
.fullscreen-artist-link:has(.fullscreen-artist:empty) { display:none; }
.fullscreen-artist-link { text-decoration:none; }

/* Fullscreen Actions - doar Favorite */
.fullscreen-actions { display:flex; align-items:center; justify-content:center; gap:1.5rem; margin-bottom:1.5rem; flex-shrink:0; }
.fullscreen-action-btn { width:48px; height:48px; font-size:1.5rem; background:var(--glass-bg); border-radius:var(--radius-full); }
.fullscreen-action-btn:hover { background:var(--glass-bg-strong); }
.fullscreen-action-btn.active i, .fullscreen-action-btn.favorited i { color:var(--danger); }

/* Fullscreen Progress */
.fullscreen-progress { margin-bottom:1.5rem; flex-shrink:0; }
.fullscreen-times { display:flex; justify-content:space-between; margin-top:0.5rem; font-size:var(--font-size-sm); color:var(--text-muted); }

/* Fullscreen Controls */
.fullscreen-controls { display:flex; align-items:center; justify-content:center; gap:1.5rem; margin-bottom:1.5rem; flex-shrink:0; }

/* Fullscreen Extra - Volume vizibil pe mobile */
.fullscreen-extra { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:auto; flex-shrink:0; padding-bottom:1rem; }
.fullscreen-volume { display:flex !important; align-items:center; gap:0.5rem; flex:1; max-width:180px; }
.fullscreen-volume .volume-slider { flex:1; height:6px; }
.fullscreen-volume .btn-icon { flex-shrink:0; }

/* EQUALIZER PANEL */
.equalizer-panel { position:absolute; inset:0; background:rgba(15,23,42,0.98); backdrop-filter:blur(20px); z-index:10; display:flex; flex-direction:column; transform:translateY(100%); transition:transform 0.3s ease; }
.equalizer-panel.active { transform:translateY(0); }
.equalizer-header { display:flex; align-items:center; justify-content:space-between; padding:1.5rem; border-bottom:1px solid var(--border-color); flex-shrink:0; }
.equalizer-header h4 { font-size:var(--font-size-lg); color:var(--text-primary); margin:0; display:flex; align-items:center; gap:0.5rem; }
.equalizer-content { flex:1; overflow-y:auto; padding:1.5rem; }

/* EQ Presets */
.eq-presets { margin-bottom:1.5rem; }
.eq-presets label { display:block; font-size:var(--font-size-sm); color:var(--text-muted); margin-bottom:0.5rem; }
.eq-preset-select { width:100%; padding:0.75rem 1rem; background:var(--glass-bg); border:1px solid var(--border-color); border-radius:var(--radius-md); color:var(--text-primary); font-size:var(--font-size-base); cursor:pointer; }
.eq-preset-select:focus { outline:none; border-color:var(--primary); }
.eq-preset-select option { background:var(--bg-secondary); color:var(--text-primary); }

/* EQ Sliders */
.eq-sliders { display:flex; justify-content:space-between; gap:0.25rem; margin-bottom:2rem; padding:1rem 0; }
.eq-band { display:flex; flex-direction:column; align-items:center; gap:0.5rem; flex:1; }
.eq-slider { writing-mode:vertical-lr; direction:rtl; width:24px; height:100px; -webkit-appearance:none; appearance:none; background:var(--glass-bg); border-radius:var(--radius-full); cursor:pointer; }
.eq-slider::-webkit-slider-thumb { -webkit-appearance:none; width:16px; height:16px; background:var(--primary); border-radius:var(--radius-full); cursor:pointer; box-shadow:var(--shadow-glow-sm); }
.eq-slider::-moz-range-thumb { width:16px; height:16px; background:var(--primary); border:none; border-radius:var(--radius-full); cursor:pointer; }
.eq-label { font-size:10px; color:var(--text-muted); text-align:center; }

/* Crossfade */
.eq-crossfade { margin-bottom:1.5rem; padding:1rem; background:var(--glass-bg); border-radius:var(--radius-lg); }
.eq-crossfade label { display:flex; align-items:center; justify-content:space-between; font-size:var(--font-size-sm); color:var(--text-primary); margin-bottom:0.75rem; }
.eq-crossfade label i { margin-right:0.5rem; color:var(--primary); }
.eq-crossfade label span { color:var(--primary); font-weight:var(--font-weight-semibold); }
.crossfade-slider { width:100%; height:6px; -webkit-appearance:none; appearance:none; background:var(--glass-bg-strong); border-radius:var(--radius-full); cursor:pointer; }
.crossfade-slider::-webkit-slider-thumb { -webkit-appearance:none; width:18px; height:18px; background:var(--primary); border-radius:var(--radius-full); cursor:pointer; box-shadow:var(--shadow-glow-sm); }
.crossfade-slider::-moz-range-thumb { width:18px; height:18px; background:var(--primary); border:none; border-radius:var(--radius-full); cursor:pointer; }

/* Toggle Buttons */
.eq-toggle-row { display:flex; align-items:center; justify-content:space-between; padding:1rem; background:var(--glass-bg); border-radius:var(--radius-lg); margin-bottom:1rem; }
.eq-toggle-row label { display:flex; align-items:center; gap:0.5rem; font-size:var(--font-size-sm); color:var(--text-primary); }
.eq-toggle-row label i { color:var(--primary); }
.toggle-btn { width:52px; height:28px; background:var(--glass-bg-strong); border:none; border-radius:14px; cursor:pointer; position:relative; transition:background 0.3s ease; }
.toggle-btn.active { background:var(--primary); }
.toggle-slider { position:absolute; top:3px; left:3px; width:22px; height:22px; background:white; border-radius:50%; transition:transform 0.3s ease; box-shadow:var(--shadow-sm); }
.toggle-btn.active .toggle-slider { transform:translateX(24px); }

/* QUEUE PANEL */
.queue-panel { position:fixed; top:0; right:0; bottom:var(--player-height); width:380px; max-width:100%; background:var(--bg-secondary); border-left:1px solid var(--border-color); z-index:calc(var(--z-player) - 1); transform:translateX(100%); transition:transform 0.3s ease; display:flex; flex-direction:column; overflow:hidden; }
.queue-panel.open { transform:translateX(0); }
.queue-overlay { position:fixed; inset:0; bottom:var(--player-height); background:rgba(0,0,0,0.5); z-index:calc(var(--z-player) - 2); opacity:0; visibility:hidden; transition:all 0.3s ease; }
.queue-overlay.open { opacity:1; visibility:visible; }
.queue-header { display:flex; align-items:center; justify-content:space-between; padding:1.25rem 1.5rem; border-bottom:1px solid var(--border-color); }
.queue-header h4 { font-size:var(--font-size-lg); font-weight:var(--font-weight-semibold); color:var(--text-primary); margin:0; }
.queue-actions { display:flex; gap:0.5rem; }
.queue-now-playing { padding:1rem 1.5rem; border-bottom:1px solid var(--border-color); }
.queue-now-playing h5, .queue-upcoming h5 { font-size:var(--font-size-xs); font-weight:var(--font-weight-semibold); color:var(--text-muted); text-transform:uppercase; letter-spacing:0.05em; margin:0 0 0.75rem; }
.queue-upcoming { flex:1; overflow:hidden; display:flex; flex-direction:column; padding:1rem 0; }
.queue-upcoming h5 { padding:0 1.5rem; }
.queue-list { flex:1; overflow-y:auto; padding:0 1rem; }
.queue-track { display:flex; align-items:center; gap:0.75rem; padding:0.625rem 0.5rem; border-radius:var(--radius-md); cursor:pointer; transition:background var(--transition-fast); }
.queue-track:hover { background:var(--glass-bg); }
.queue-track.playing { background:rgba(var(--primary-rgb),0.1); }
.queue-track-cover { width:44px; height:44px; border-radius:var(--radius-sm); overflow:hidden; position:relative; flex-shrink:0; }
.queue-track-cover img { width:100%; height:100%; object-fit:cover; }
.queue-playing-indicator { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; gap:2px; background:rgba(0,0,0,0.6); }
.queue-playing-indicator span { width:3px; height:16px; background:var(--primary); border-radius:1px; animation:queueBars 0.8s ease-in-out infinite; }
.queue-playing-indicator span:nth-child(2) { animation-delay:0.2s; }
.queue-playing-indicator span:nth-child(3) { animation-delay:0.4s; }
@keyframes queueBars { 0%,100%{height:6px;} 50%{height:16px;} }
.queue-track-info { flex:1; min-width:0; }
.queue-track-title { font-size:var(--font-size-sm); font-weight:var(--font-weight-medium); color:var(--text-primary); margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.queue-track.playing .queue-track-title { color:var(--primary); }
.queue-track-artist { font-size:var(--font-size-xs); color:var(--text-muted); margin:0.125rem 0 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.queue-remove { opacity:0; transition:opacity var(--transition-fast); }
.queue-track:hover .queue-remove { opacity:1; }
.queue-empty { text-align:center; padding:3rem 2rem; color:var(--text-muted); }
.queue-empty i { font-size:3rem; opacity:0.4; display:block; margin-bottom:1rem; }

/* LYRICS PANEL */
.lyrics-panel { position:absolute; inset:0; background:rgba(0,0,0,0.95); z-index:10; display:flex; flex-direction:column; transform:translateY(100%); transition:transform 0.3s ease; }
.lyrics-panel.active { transform:translateY(0); }
.lyrics-header { display:flex; align-items:center; justify-content:space-between; padding:1.5rem; border-bottom:1px solid var(--border-color); }
.lyrics-header h4 { font-size:var(--font-size-lg); color:var(--text-primary); margin:0; }
.lyrics-content { flex:1; overflow-y:auto; padding:2rem; text-align:center; }
.lyrics-text { font-size:var(--font-size-lg); line-height:2; color:var(--text-secondary); }
.lyrics-line { font-size:var(--font-size-xl); line-height:2.5; color:var(--text-muted); transition:all 0.3s ease; cursor:pointer; margin:0; padding:0.25rem 0; }
.lyrics-line:hover { color:var(--text-secondary); }
.lyrics-line.active { font-size:var(--font-size-2xl); color:var(--text-primary); font-weight:var(--font-weight-semibold); }
.lyrics-line.past { color:var(--text-muted); opacity:0.5; }
.lyrics-empty { color:var(--text-muted); font-style:italic; }

/* MODAL */
.modal { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:all 0.3s ease; }
.modal.active { opacity:1; visibility:visible; }
.modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.7); }
.modal-content { position:relative; width:90%; max-width:400px; max-height:80vh; background:var(--bg-secondary); border-radius:var(--radius-xl); overflow:hidden; transform:scale(0.95); transition:transform 0.3s ease; z-index:10000; }
.modal.active .modal-content { transform:scale(1); }
.modal-header { display:flex; align-items:center; justify-content:space-between; padding:1.25rem 1.5rem; border-bottom:1px solid var(--border-color); }
.modal-header h4 { font-size:var(--font-size-lg); font-weight:var(--font-weight-semibold); color:var(--text-primary); margin:0; }
.modal-body { padding:1rem; max-height:400px; overflow-y:auto; }
.create-playlist-btn { display:flex; align-items:center; gap:1rem; width:100%; padding:1rem; background:var(--glass-bg); border:1px dashed var(--border-color); border-radius:var(--radius-lg); color:var(--text-secondary); font-size:var(--font-size-base); cursor:pointer; transition:all var(--transition-fast); margin-bottom:1rem; }
.create-playlist-btn:hover { background:var(--glass-bg-strong); color:var(--text-primary); border-color:var(--primary); }
.create-playlist-btn i { font-size:1.5rem; }
.user-playlists { display:flex; flex-direction:column; gap:0.5rem; }
.playlist-option { display:flex; align-items:center; gap:0.75rem; padding:0.75rem; background:transparent; border:none; border-radius:var(--radius-md); width:100%; text-align:left; cursor:pointer; transition:background var(--transition-fast); }
.playlist-option:hover { background:var(--glass-bg); }
.playlist-option-cover { width:48px; height:48px; border-radius:var(--radius-sm); object-fit:cover; }
.playlist-option-info { flex:1; min-width:0; }
.playlist-option-name { font-size:var(--font-size-sm); font-weight:var(--font-weight-medium); color:var(--text-primary); margin:0; display:block; }
.playlist-option-count { font-size:var(--font-size-xs); color:var(--text-muted); margin:0.125rem 0 0; display:block; }
.create-playlist-btn { display:flex; align-items:center; gap:0.75rem; width:100%; padding:0.875rem 1rem; background:var(--glass-bg); border:1px dashed var(--border-color); border-radius:var(--radius-md); color:var(--text-primary); cursor:pointer; transition:all var(--transition-fast); margin-bottom:0.75rem; }
.create-playlist-btn:hover { background:var(--primary); border-color:var(--primary); color:white; }
.create-playlist-btn i { font-size:1.25rem; }
.user-playlists { display:flex; flex-direction:column; gap:0.25rem; }
.empty-playlists, .error-message { text-align:center; padding:2rem; color:var(--text-muted); font-size:var(--font-size-sm); }
.loading-spinner { text-align:center; padding:2rem; color:var(--text-muted); }
.loading-spinner i { font-size:1.5rem; }

/* RESPONSIVE */
@media (max-width:991px) { 
    .volume-slider-wrapper { width:0; opacity:0; } 
    .volume-control:hover .volume-slider-wrapper { width:80px; opacity:1; } 
}

@media (max-width:767px) { 
    .player-bar { height:var(--player-height-mobile,70px); } 
    .player-bar-inner { padding:0 1rem; } 
    .player-track-info { max-width:none; flex:1; } 
    .player-cover-wrapper { width:48px; height:48px; } 
    .player-controls { display:none; } 
    .player-extra { flex:0; gap:0.25rem; } 
    .player-extra .btn-sm { display:none; } 
    .player-extra #btnExpand { display:flex; } 
    .volume-control { display:none; } 
    .queue-panel { width:100%; bottom:0; } 
    
    /* Fullscreen Mobile Optimizations */
    .fullscreen-content { padding:1rem; padding-bottom:env(safe-area-inset-bottom, 1rem); } 
    .fullscreen-header { margin-bottom:1rem; }
    .fullscreen-cover-wrapper { max-width:280px; margin-bottom:1rem; } 
    .fullscreen-title { font-size:var(--font-size-lg); }
    .fullscreen-artist { font-size:var(--font-size-sm); }
    .fullscreen-info { margin-bottom:0.75rem; }
    .fullscreen-actions { gap:1rem; margin-bottom:1rem; }
    .fullscreen-action-btn { width:40px; height:40px; font-size:1.1rem; }
    .fullscreen-progress { margin-bottom:1rem; }
    .fullscreen-controls { gap:1rem; margin-bottom:1rem; }
    .fullscreen-extra { gap:0.75rem; flex-wrap:wrap; justify-content:center; }
    
    /* Volume vizibil pe mobile fullscreen */
    .fullscreen-volume { max-width:150px; order:2; width:100%; justify-content:center; margin-top:0.5rem; }
    
    /* EQ Sliders mai mici pe mobile */
    .eq-sliders { gap:0.15rem; }
    .eq-slider { height:80px; width:20px; }
    .eq-label { font-size:9px; }
}

@media (max-width:480px) { 
    .player-bar { height:64px; } 
    .player-cover-wrapper { width:44px; height:44px; } 
    .player-title { font-size:var(--font-size-xs); } 
    .fullscreen-cover-wrapper { max-width:220px; } 
    .fullscreen-controls { gap:0.75rem; }
    .fullscreen-title { font-size:var(--font-size-base); }
    .btn-play-lg { width:56px; height:56px; font-size:1.5rem; }
    .fullscreen-actions { gap:0.75rem; }
    .fullscreen-action-btn { width:36px; height:36px; font-size:1rem; }
}

/* MOBILE PLAY BUTTON */
.btn-play-mobile { display:none; }
@media (max-width:767px) { 
    .btn-play-mobile { 
        display:flex; 
        align-items:center; 
        justify-content:center; 
        width:48px; 
        height:48px; 
        min-width:48px;
        border-radius:50%; 
        background:var(--primary); 
        color:white; 
        border:none; 
        cursor:pointer; 
        font-size:1.5rem; 
        margin-left:auto;
        margin-right:0.5rem;
        transition:all 0.2s ease;
        box-shadow:0 4px 15px rgba(139,92,246,0.3);
    }
    .btn-play-mobile:hover, .btn-play-mobile:active { 
        transform:scale(1.05); 
        background:var(--primary-dark,#7c3aed); 
    }
    .player-favorite { margin-right:0.25rem; }
    .player-meta { flex:1; min-width:0; }
}
@media (max-width:480px) { 
    .btn-play-mobile { width:44px; height:44px; min-width:44px; font-size:1.25rem; } 
}

/* BODY STATES */
body.has-player { padding-bottom:var(--player-height); }
body.player-fullscreen-open { overflow:hidden; }
body.queue-open { overflow:hidden; }
@media (max-width:767px) { body.has-player { padding-bottom:var(--player-height-mobile,70px); } }
