/* 1. Votre texte signature avec animation de vague de couleur */
.navigation-bar::after {
    content: "⚡ Powered by Road FM.";
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding-top: 15px;
    cursor: pointer;
    pointer-events: auto;

    /* On crée un dégradé plus large que le texte pour pouvoir le faire bouger */
    background: linear-gradient(to right, #00BFFF, #8A2BE2, #FF1493, #00BFFF);
    background-size: 200% auto;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    /* Liaison avec l'animation définie plus bas (durée 4 secondes, en boucle) */
    animation: roadFMWave 4s linear infinite;
}

/* Optionnel : Si on passe la souris dessus, l'animation s'accélère un peu pour réagir au survol */
.navigation-bar::after:hover {
    animation-duration: 1.5s;
    filter: brightness(1.2);
}

/* === Définition de l'animation de défilement === */
@keyframes roadFMWave {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

