@keyframes glowVictory {
    0% { text-shadow: 0 0 10px #28a745, 0 0 20px #28a745, 0 0 30px #28a745, 0 0 40px #28a745; }
    100% { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #00ff00; }
}
@keyframes glowLoss {
    0% { text-shadow: 0 0 10px #dc3545, 0 0 20px #dc3545, 0 0 30px #dc3545, 0 0 40px #dc3545; }
    100% { text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000; }
}
#VictoryTxt {
    animation: glowVictory 1.5s ease-in-out infinite alternate;
}
#LossTxt {
    animation: glowLoss 1.5s ease-in-out infinite alternate;
}
#VictoryTxt {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    animation: glow 1.5s ease-in-out infinite alternate;
}

#LossTxt {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
    }
    to {
        text-shadow: 0 0 20px currentColor, 0 0 30px currentColor;
    }
}