.loading {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000000;
}

.lds-loading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 16px 22px;
    transform: translateY(-50%);
    background: rgba(var(--brand-gradient-end-rgb), 0.95);
    border: 2px solid rgba(var(--brand-primary-light-rgb), 0.7);
    border-radius: 14px;
}

.lds-label {
    display: block;
    color: white;
    font-size: 12px;
    text-align: center;
}

.loading-sakura {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    animation: brand-spin 2s linear infinite;
}

@keyframes brand-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
