/* Mozart Player Floating Styles */
.music-player-float {
    animation: musicFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes musicFloat {
    0%, 100% { 
        transform: translateY(0px); 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    50% { 
        transform: translateY(-5px); 
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
}

.play-button-pulse {
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(147, 51, 234, 0.7);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 0 10px rgba(147, 51, 234, 0);
    }
}

.track-item.active {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-left: 3px solid #9333ea;
}

/* Volume Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-track {
    background: #e5e7eb;
    height: 4px;
    border-radius: 2px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #9333ea;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-track {
    background: #e5e7eb;
    height: 4px;
    border-radius: 2px;
}

input[type="range"]::-moz-range-thumb {
    background: #9333ea;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Progress Bar Animation */
.progress-bar-animation {
    transition: width 0.3s ease;
}

/* Hover Effects */
.music-player-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .music-player-float {
        bottom: 2rem;
        right: 2rem;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .music-player-float {
        bottom: 1rem;
        right: 1rem;
        max-width: 260px;
    }
}
