/* 
====================================
  JARVIS ANIMATIONS
  Effects: Glow, Pulse, Slide
====================================
*/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(0, 243, 255, 0.4);
    }
}

@keyframes scanline {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

.glow-effect {
    animation: glowPulse 3s infinite;
}

/* Loading Screen Animation */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 243, 255, 0.3);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}