.app-loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-loading__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.app-loading__logo {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 16px;
    background: #1677ff;
    box-shadow: 0 12px 30px rgba(22, 119, 255, 0.22);
}

.app-loading__logo svg {
    width: 30px;
    height: 30px;
}

.app-loading__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.app-loading__status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7b8494;
    font-size: 13px;
}

.app-loading__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(22, 119, 255, 0.18);
    border-top-color: #1677ff;
    border-radius: 50%;
    animation: app-loading-spin 0.8s linear infinite;
}

@keyframes app-loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .app-loading__spinner {
        animation-duration: 1.8s;
    }
}