/* 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;
    }
}

/* Global blue -> purple visual override */
:root {
    --site-purple: #9f35ff;
    --site-purple-dark: #7f22d9;
    --site-purple-soft: #f4e9ff;
}

a,
a:visited,
.wblue,
.wb,
.text-blue,
.blue {
    color: var(--site-purple-dark) !important;
}

.bg_blue,
.bg_b,
.blueClass,
.btn-primary,
[class*=" blue"],
[class^="blue"] {
    background-color: var(--site-purple) !important;
    border-color: var(--site-purple-dark) !important;
}

[bgcolor="#0000FF"],
[bgcolor="#00f"],
[bgcolor="#3366FF"],
[bgcolor="#409DFF"],
[bgcolor="#4292EF"] {
    background-color: var(--site-purple) !important;
}

font[color="#0000FF"],
font[color="blue"],
font[color="#3366FF"],
font[color="#409DFF"] {
    color: var(--site-purple-dark) !important;
}

[style*="color:#0000FF"],
[style*="color: #0000FF"],
[style*="color:blue"],
[style*="color: blue"],
[style*="color:#3366FF"],
[style*="color: #3366FF"],
[style*="color:#409DFF"],
[style*="color: #409DFF"] {
    color: var(--site-purple-dark) !important;
}

[style*="background:#0000FF"],
[style*="background: #0000FF"],
[style*="background:#00f"],
[style*="background: #00f"],
[style*="background-color:#0000FF"],
[style*="background-color: #0000FF"],
[style*="background-color:#3366FF"],
[style*="background-color: #3366FF"],
[style*="background-color:#4292EF"],
[style*="background-color: #4292EF"],
[style*="background-color:#409DFF"],
[style*="background-color: #409DFF"] {
    background-color: var(--site-purple) !important;
}

[style*="border-color:#0000FF"],
[style*="border-color: #0000FF"],
[style*="border-color:#3366FF"],
[style*="border-color: #3366FF"],
[style*="border:1px solid #0000FF"],
[style*="border: 1px solid #0000FF"] {
    border-color: var(--site-purple-dark) !important;
}