/* Fullscreen loader */

#loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px #fff;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#loader.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
