position: relative;
font-weight: bold;
color: #f9d71c; /* Bright yellow lightning color */
text-shadow:
0 0 5px #f9d71c,
0 0 10px #f9d71c,
0 0 20px #f9d71c,
0 0 30px #ff8f00,
0 0 40px #ff8f00,
0 0 50px #ff8f00;
animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
0%, 100% {
text-shadow:
0 0 5px #f9d71c,
0 0 10px #f9d71c,
0 0 20px #f9d71c,
0 0 30px #ff8f00,
0 0 40px #ff8f00,
0 0 50px #ff8f00;
}
50% {
text-shadow:
0 0 2px #f9d71c,
0 0 5px #f9d71c,
0 0 10px #f9d71c,
0 0 20px #ff8f00;
}