/* Player de música */
.music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.now-playing img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 2;
}

.player-controls button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.player-controls button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

#progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .music-player {
        flex-direction: column;
        padding: 0.75rem;
    }

    .now-playing {
        width: 100%;
        justify-content: center;
    }

    .player-controls {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .progress-container {
        width: 100%;
        margin: 0.5rem 0;
    }
} 