/* Animations and Visual Effects */

@keyframes glow-pulse {
    0% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.6)); }
}

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

@keyframes pulse-multicolor {
    0%, 100% { 
        background: linear-gradient(45deg, var(--text-accent), var(--text-question));
        transform: scale(1);
        box-shadow: 
            0 0 10px var(--text-accent),
            0 0 20px rgba(255, 170, 0, 0.3);
    }
    50% { 
        background: linear-gradient(45deg, var(--text-question), var(--text-accent));
        transform: scale(1.1);
        box-shadow: 
            0 0 15px var(--text-question),
            0 0 25px rgba(0, 255, 136, 0.3);
    }
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
}

/* Enhanced cursor glow effect for desktop - placeholder for JS implementation */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3), transparent);
    border-radius: 50%;
    z-index: 9999;
    transition: all 0.1s ease;
}
