#ludvig-preloader {
    position: fixed;
    inset: 0;
    background: #051629;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

#ludvig-preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.ludvig-preloader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ludvig-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.ludvig-spinner {
    width: 45px;
    height: 45px;

    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid white;

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
