/* Player Controls */
.player-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.player-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.player-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.player-button.play-pause {
    width: 48px;
    height: 48px;
}

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

.player-button:active {
    transform: scale(0.95);
}

.player-button svg {
    fill: white;
}

.player-heart-button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.player-heart-button.hearted {
    color: #FF6B35;
}

.player-info {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.player-artist-name {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-track-info {
    font-size: 0.75rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
