/* play_half_ctrl - 50% 너비 플레이바 + 컨트롤 버튼 */

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 25px;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_progress_wrap {
    width: 120px;
    height: var(--playbar-thickness, 3px);
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary, #667eea);
    border-radius: 2px;
    width: 0%;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl.autoplay_running .playbar_progress {
    animation: playbar_progress var(--swiper-autoplay-delay, 5000ms) linear forwards;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn {
    width: 26px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: opacity 0.3s;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn:hover {
    opacity: 0.7;
}

/* i 태그 방식 */
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn i {
    font-size: inherit;
    color: inherit;
    line-height: 1;
}

/* ::before 비활성화 */
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn::before,
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn::after {
    content: none;
}

/* 정지 짝대기 */
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .btn_pause {
    gap: 2px;
}
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .pause_bar {
    display: block;
    width: 2px;
    height: 10px;
    background: #fff;
    border-radius: 1px;
}

@keyframes playbar_progress {
    from { width: 0%; }
    to { width: 100%; }
}

@media screen and (max-width: 768px) {
    .MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_inner {
        padding: 6px 12px;
        gap: 8px;
    }

    .MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_progress_wrap {
        width: 80px;
    }

    .MAIN_TOP_TOTAL .playbar_wrap.playbar_play_half_ctrl .playbar_btn {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}
