.angaza-page-loading {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
    color: #ffffff;
    text-align: center;
    background: rgba(4, 31, 43, 0.84);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.16s ease;
}

.angaza-page-loading.is-visible {
    display: flex;
    opacity: 1;
}

.angaza-page-loading[hidden] {
    display: none !important;
}

.angaza-page-loading-spinner {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border: 5px solid rgba(255, 255, 255, 0.25);
    border-top-color: #f1bd54;
    border-radius: 50%;
    animation: angaza-page-loading-spin 0.9s linear infinite;
}

.angaza-page-loading-title {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
}

.angaza-page-loading-message {
    max-width: 460px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
}

body.angaza-page-loading-active {
    cursor: progress;
}

@keyframes angaza-page-loading-spin {
    to {
        transform: rotate(360deg);
    }
}
