
#bmp-player-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#bmp-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

#bmp-player-controls button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
}

#bmp-player-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#bmp-volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#bmp-volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#bmp-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#bmp-track-info {
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.8;
    text-align: center;
}

.bmp-show-play #bmp-player-container {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive design */
@media (max-width: 768px) {
    #bmp-player-container {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    #bmp-player-controls {
        gap: 8px;
    }
    
    #bmp-volume-slider {
        width: 60px;
    }
}

/* Hide controls option */
.bmp-hidden-controls #bmp-player-controls {
    display: none;
}

/* Fade animations */
.bmp-fade-in {
    animation: fadeIn 2s ease-in-out;
}

.bmp-fade-out {
    animation: fadeOut 2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
