/* Loading Splash Screen */
#loadingSplash {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background-color: #121212;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
    pointer-events: none;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    box-sizing: border-box;
}

@supports (height: 100dvh) {
    #loadingSplash {
        height: 100dvh;
        min-height: 100dvh;
    }
}

#loadingSplash.fade-out {
    opacity: 0;
}

#loadingSplash.hidden {
    display: none;
}

#loaderCanvas {
    display: block;
    width: auto;
    height: auto;
}
