/* ========================================
   SPINNER NEON ANIMATION - Global
   ======================================== */

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.spinner {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #00fb02);
    animation: neonSpin 2s linear infinite;
}

@keyframes neonSpin {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        filter: hue-rotate(0deg);
    }
}

.spinner::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #000;
    border-radius: 50%;
    z-index: 1000;
}

.spinner::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(45deg, transparent, transparent 40%, #00fb02);
    border-radius: 50%;
    z-index: 1;
    filter: blur(30px);
}

/* Responsive - tamaño del spinner */
@media (max-width: 768px) {
    .spinner {
        width: 120px;
        height: 120px;
    }
}