/* ========================================================================
   1. LE FOOTER FIXÉ EN BAS (FOND NOIR, TEXTE BLANC, LIGNE ROUGE)
   ======================================================================== */
body {
    padding-bottom: 60px; /* Laisse de la place en bas pour ne pas cacher ton site */
}

.news-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #000000; /* FOND NOIR */
    border-top: 2px solid #cc0000; /* Ligne rouge au-dessus */
    color: #ffffff;
    padding: 12px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999; 
}

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

.news-ticker-wrapper:hover {
    animation-play-state: paused;
}

.news-ticker-item {
    display: inline-block;
    padding-right: 80px; 
    font-size: 15px;
    font-weight: 500;
}

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

.news-ticker-item a:hover {
    color: #cc0000; 
}

@keyframes news-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* ========================================================================
   2. L'ALERTE DANS LE HEADER (FOND ROUGE, TEXTE BLANC)
   ======================================================================== */
.header-ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #cc0000; /* FOND ROUGE */
    color: #ffffff;
    padding: 10px 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

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

.header-ticker-wrapper:hover {
    animation-play-state: paused;
}

.header-ticker-item {
    display: inline-block;
    padding-right: 100px; 
    font-size: 16px;
}

@keyframes header-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}