.jf-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    overflow: hidden;
    background: #efffeb;
    opacity: 1;
    visibility: visible;
    transition: opacity 420ms ease, visibility 420ms ease;
}

html.jf-splash-active,
html.jf-splash-active body {
    overflow: hidden;
}

html.jf-splash-active .jf-splash {
    display: block;
}

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

.jf-splash-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #efffeb;
}

@media (prefers-reduced-motion: reduce) {
    .jf-splash {
        display: none !important;
    }
}
