/**
 * Hide scrollbars while keeping overflow scroll (Firefox + WebKit + legacy Edge).
 * v2: stronger rules for nested scroll areas and game shells.
 */
html {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
html::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent !important;
}

body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
    background: transparent !important;
}

*,
*::before,
*::after {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
*::-webkit-scrollbar,
*::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-track {
    width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    display: none !important;
    background: transparent !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
