/* Custom Styles & High-End Animations */

/* Ambient Pulsing Glow behind hero */
.ambient-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, rgba(5, 5, 5, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.shadow-glow-electric {
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.shadow-glow-emerald {
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
}

/* Terminal Mockup */
.terminal-mockup {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Terminal text typing animation classes */
.log-line {
    opacity: 0;
    transform: translateY(10px);
    animation: fade-up 0.3s ease forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
