html,body {
    height: 100dvh;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

#container_title {
    display: none;
}

.shorts-wrapper {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position:relative;
    overflow: hidden;
    /* overflow-y: scroll;
    scroll-snap-type: y mandatory; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: hidden; */
}

html::-webkit-scrollbar,
.shorts-wrapper::-webkit-scrollbar {
    display: none;
}

.go_main {
    position: absolute;
    left: 30px;
    top: 20px;
    z-index: 2;
    border-radius: 100%;
    z-index: 2;
}

.shorts-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f2f3;
    transition: transform 0.35s ease;
    will-change: transform;
    /* scroll-snap-align: start;  ← 삭제 */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 100%;
    max-height: 85.25vh;
    aspect-ratio: 9 / 16;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto;
    border: 0;
    border-radius:12px;
}

.video-overlay {
    width: 100%;
    height: 80%;
    position: absolute;
    top: 5%;
    left: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}

.sound-hint {
    /* width: 100%; */
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    /* top:0; */
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.78);
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.sound-hint.show { opacity: 1; }

@media screen and (max-width:780px){
    .shorts-wrapper {
        max-width: 460px;
        margin:0 auto;
    }

    .go_main {
        left:20px;
    }
    
    .video-container {
        max-height: 100%;
    }

    .video-container iframe {
        border-radius: 0;
    }
}