/* 스크롤은 되지만 표시 안됨 */
html, body {
    overflow: auto; /* 스크롤 동작 */
    height: 100%;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

/* Firefox */
body {
    scrollbar-width: none; /* Firefox 스크롤 숨기기 */
    -ms-overflow-style: none; /* IE 10+ */
}

/* 특정 영역에도 적용 가능 */
.scroll-hidden {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-hidden::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}