body.page-is-loading {
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 99999;
}

.preloader-spotlight {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 25, 102, 0.15), transparent 60%);
    border-radius: 50%;
    animation: preloader-pulse 2.5s infinite;
}

@keyframes preloader-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.preloader-logo {
    width: 200px;
    max-width: 60vw;
    z-index: 2;
    transform-style: preserve-3d;
    filter: drop-shadow(0 20px 30px rgba(26, 25, 102, 0.25));
}
