/* --- BANDEAU DÉFILANT TYPE NEWS --- */
.news-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #000000; /* Fond noir */
    border-bottom: 2px solid #cc0000; /* Ligne rouge */
    color: #ffffff;
    padding: 12px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.news-ticker-wrapper {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: news-scroll 30s linear infinite;
}

/* Pause au survol pour faciliter le clic */
.news-ticker-wrapper:hover {
    animation-play-state: paused;
}

.news-ticker-item {
    display: inline-block;
    padding-right: 80px; /* Espace entre les messages */
    font-size: 15px;
    font-weight: 500;
}

.news-ticker-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.news-ticker-item a:hover {
    color: #cc0000; /* Devient rouge au survol */
}

/* Animation fluide de droite à gauche */
@keyframes news-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}