.player-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.progress-buffer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--text-secondary);
    opacity: 0.35;
    pointer-events: none;
}

.progress-fill {
    position: relative;
    z-index: 2;
}

.small-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
    color: var(--text-secondary);
}

.small-btn:hover {
    color: var(--text-primary);
}

.small-btn.active {
    color: var(--primary-color);
    position: relative;
}

.small-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
}

.repeat-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    background: var(--primary-color);
    color: #121212;
}

#btnRepeat.repeat-one .repeat-badge {
    display: inline-flex;
}
