/* INTERLINKS BLINK */
#Interlinks > li:first-child > a {
    -webkit-animation: textColorBlink 1.5s ease-in-out infinite alternate;
    font-weight: bold;
}

@keyframes textColorBlink {
    0% {
        color: #00ff00;
    }
    33% {
        color: #00ff00;
    }
    34% {
        color: red;
    }
    66% {
        color: red;
    }
    67% {
        color: yellow;
    }
    100% {
        color: yellow;
    }
}
/* INTERLINKS BLINK */

/* Spare URL area style (match reference blue bar + flashing text) */
.spareURL,
.box.spareURL {
    background-image: linear-gradient(46deg, #4304ef 10%, #4304ef 100%) !important;
    border: 1px solid #2f00b3 !important;
    border-radius: 4px;
}

.spareURL a,
.box.spareURL a {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.55);
    display: inline-block;
    animation: spareUrlTextPulse 0.9s ease-in-out infinite;
}

@keyframes spareUrlTextPulse {
    0% {
        transform: scale(1);
        opacity: 1;
        color: #ffffff;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.82;
        color: #fff06a;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        color: #ffffff;
    }
}