/* Rainbow Strobe */
@keyframes rainbow_strobe {
    0%   { color: red; }
    20%  { color: yellow; }
    40%  { color: lime; }
    60%  { color: cyan; }
    80%  { color: blue; }
    100% { color: magenta; }
}

#rainbow {
    animation: rainbow_strobe 0.5s infinite;
}

/* Black-Red Slow Pulse */
@keyframes ominous_red_strobe {
    50%   { color: red; }
    20%  { color: rgb(0, 0, 0); }
    50%   { color: red; }
}

/* Apply to IDs */
#ominous {
    animation: ominous_red_strobe 4s ease-in-out infinite;
}

/* Apply to Classes */
.ominous {
    animation: ominous_red_strobe 4s ease-in-out infinite;
}

/* Nanotrasen Name Color Gradient (Green-Blue)*/
.nanotrasen {
    background: linear-gradient(90deg, #2fff00, #1a7ebc, #0073e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Syndicate Name Gradient (Red / Black) ("Very Armadan!" -Z) */
.syndicate {
    background: linear-gradient(0deg, #ff0000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sha'Sarak Name Color */
.sarak {
    background: firebrick;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}