/* play_full - 100% 너비 플레이바 (바만) */

/* 컨트롤 숨김 (바만 스킨) */
.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_full .playbar_controls {
    display: none !important;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_full .playbar_inner {
    flex: 1;
    width: 100%;
    height: var(--playbar-thickness, 3px);
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_full .playbar_progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary, #667eea);
    width: 0%;
    transition: width 0.1s linear;
}

.MAIN_TOP_TOTAL .playbar_wrap.playbar_play_full.autoplay_running .playbar_progress {
    animation: playbar_progress var(--swiper-autoplay-delay, 5000ms) linear forwards;
}

@keyframes playbar_progress {
    from { width: 0%; }
    to { width: 100%; }
}

@media screen and (max-width: 768px) {
    .MAIN_TOP_TOTAL .playbar_wrap.playbar_play_full .playbar_inner {
        height: var(--playbar-thickness, 2px);
    }
}
