#globalLoader {
    position: fixed;
    inset: 0;
    background: rgba(0, 8, 40, 0.85);
    backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    z-index: 999999;
}

.loader-spinner {
    width: 70px;
    height: 70px;

    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #ffffff;

    border-radius: 50%;

    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 20px;

    color: white;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 1px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}