.vmj-pwa-splash {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 28%, rgba(56, 189, 248, .22), transparent 28%),
        linear-gradient(160deg, #06151d 0%, #073425 48%, #0b7d37 100%);
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility .35s ease;
}

html.vmj-pwa-boot .vmj-pwa-splash {
    display: flex;
}

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

.vmj-pwa-splash-card {
    width: min(88vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vmj-pwa-logo-wrap {
    position: relative;
    width: 156px;
    height: 156px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.vmj-pwa-logo-wrap::before,
.vmj-pwa-logo-wrap::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .28);
}

.vmj-pwa-logo-wrap::before {
    border-top-color: #f6b83f;
    border-right-color: #5eead4;
    animation: vmjSplashSpin 1.15s linear infinite;
}

.vmj-pwa-logo-wrap::after {
    inset: -19px;
    border-color: rgba(255, 255, 255, .12);
    border-left-color: rgba(255, 255, 255, .5);
    animation: vmjSplashSpinReverse 1.9s linear infinite;
}

.vmj-pwa-logo {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 132px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .34));
    user-select: none;
    -webkit-user-drag: none;
}

.vmj-pwa-splash-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.vmj-pwa-splash-subtitle {
    min-height: 22px;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.45;
}

.vmj-pwa-progress {
    position: relative;
    width: min(76vw, 260px);
    height: 5px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
}

.vmj-pwa-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f6b83f, #5eead4);
    animation: vmjSplashProgress 1.25s ease-in-out infinite;
}

@keyframes vmjSplashSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes vmjSplashSpinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes vmjSplashProgress {
    0% {
        transform: translateX(-110%);
    }

    55% {
        transform: translateX(65%);
    }

    100% {
        transform: translateX(250%);
    }
}

@media (max-width: 420px) {
    .vmj-pwa-logo-wrap {
        width: 138px;
        height: 138px;
    }

    .vmj-pwa-logo {
        width: 116px;
        height: 116px;
    }

    .vmj-pwa-splash-title {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vmj-pwa-logo-wrap::before,
    .vmj-pwa-logo-wrap::after,
    .vmj-pwa-progress span {
        animation-duration: 2.8s;
    }
}
