.global-player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #181818;
    border-top: 1px solid #282828;
    padding: 10px 0;
    z-index: 1000;
}
.player-wrapper { display: flex; flex-direction: column; gap: 10px; }
.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    padding: 0 10px;
}
#progress-bar {
    width: 100%;
    height: 5px;
    background-color: #444;
    border-radius: 5px;
    cursor: pointer;
}
#progress {
    width: 0;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 5px;
}
.player-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.player-track-details { flex: 1; min-width: 0; text-align: left; }
#track-title-display {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-text-color);
}
#track-author-display { font-size: 0.8rem; color: var(--secondary-text-color); }
.player-main-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}
.player-btn {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-volume-controls {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.volume-slider-group { display: flex; align-items: center; gap: 8px; }
.volume-slider-group input[type="range"] {
    width: 70px;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #4d4d4d;
    outline: none;
    cursor: pointer;
}
.volume-slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary-text-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .player-bottom-row { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .player-track-details { order: 1; width: 100%; text-align: center; margin-bottom: 5px; }
    .player-main-controls { order: 2; }
    .player-volume-controls { order: 3; width: 100%; justify-content: center; }
}
