#pageLoader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.1); /* 10% opacity */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px); /* optional premium look */
}

/* Spinner wrapper */
.spinner-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Spinner ring */
.spinner-ring {
    position: absolute;
    inset: 0;
    border: 6px solid rgba(0,0,0,0.15);
    border-top: 6px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Logo center */
.spinner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    transform: translate(-50%, -50%);
}

/* Animation */
@keyframes spin {
    100% { transform: rotate(360deg); }
}