html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#container_title {
    display: none;
}

.shorts-wrapper {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
.shorts-wrapper::-webkit-scrollbar {
    display: none;
}

.shorts-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start; 
    background: #fff;
}

.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; }