.site-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-splash img {
    width: min(88vw, 360px);
    height: auto;
    object-fit: contain;
    display: block;
}

.site-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.splash-lock {
    overflow: hidden;
}
