.controls{
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn_play{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: cubic-bezier(0.23, 1, 0.320, 1) 300ms;
}
.btn_play:hover { transform: scale(1.2); }
.btn_play:active { transform: scale(0.96); }
.btn_play svg { width: 18px; height: 18px; fill: var(--text); }
.progress_wrap{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.progress_bar--bg{
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition:cubic-bezier(0.23, 1, 0.320, 1) 300ms;
}
.progress_bar--bg:hover{
    height: 12px;
    scale: 101%;
    margin-top: 5px;
}
.progress_bar--fill{
    height: 100%;
    background: var(--text);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.time_row{
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--muted);
}

audio { display: none; }
