.omnissiah-glow {
    animation: mechanicusGlow 10s ease-in-out;
}

@keyframes mechanicusGlow {
    0% {
        filter: drop-shadow(0 0 0px #ff0000);
    }
    20% {
        filter: drop-shadow(0 0 8px #ff0000) drop-shadow(0 0 16px #ff4444);
    }
    50% {
        filter: drop-shadow(0 0 14px #ff0000) drop-shadow(0 0 28px #ff4444) drop-shadow(0 0 40px #ff8888);
    }
    80% {
        filter: drop-shadow(0 0 8px #ff0000) drop-shadow(0 0 16px #ff4444);
    }
    100% {
        filter: drop-shadow(0 0 0px #ff0000);
    }
}
