.neon-text {
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8),
                 0 0 10px currentColor,
                 0 0 20px currentColor,
                 0 0 40px currentColor,
                 0 0 80px currentColor;
    animation: flicker 1.5s infinite alternate;
}

/* Animaci¨®n de parpadeo */
@keyframes flicker {
    0% { opacity: 1; text-shadow: 0 0 10px currentColor, 0 0 20px currentColor; }
    50% { opacity: 0.5; text-shadow: 0 0 5px currentColor, 0 0 10px currentColor; }
    100% { opacity: 1; text-shadow: 0 0 10px currentColor, 0 0 20px currentColor; }
}
