/* Add at the end of styles.css */
.urgent-banner {
    display: inline-block;
    font-size: 42px; /* Increased size */
    font-weight: 800; /* Bolder font */
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #111111, #444444, #ffffff, #444444, #111111); /* Black and white combination */
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    padding: 12px 32px;
    margin-bottom: 24px;
    animation: pulseGlowBW 2s infinite, shineBW 4s linear infinite;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

@keyframes pulseGlowBW {
    0% { transform: scale(1); text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); }
    50% { transform: scale(1.08); text-shadow: 0 4px 35px rgba(255, 255, 255, 0.4); }
    100% { transform: scale(1); text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); }
}

@keyframes shineBW {
    to {
        background-position: 200% center;
    }
}
