/* Music Player Styles */

.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 2px solid #e94560;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.music-player.active {
    transform: translateY(0);
}

.playlist-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.playlist-item:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: #e94560;
}

.playlist-item.active {
    background: rgba(233, 69, 96, 0.3);
    border-color: #e94560;
}

.waveform {
    height: 60px;
    background: linear-gradient(90deg, #e94560, #4ecdc4, #45b7d1);
    background-size: 200% 100%;
    animation: waveAnimation 2s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes waveAnimation {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.volume-slider {
    width: 100px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e94560, #4ecdc4);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

/* Album Cover Animations */
.album-cover {
    transition: transform 0.3s ease;
}

.album-cover:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Vinyl Record Animation */
.vinyl-record {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1a1a1a, #333);
    position: relative;
    animation: spin 10s linear infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 50%;
}