.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.loader-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;

    border: 5px solid rgba(124, 58, 237, 0.15);
    border-top: 5px solid #7c3aed;

    animation: spin 0.9s linear infinite;
}

/* Smooth animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}