/* Bandeau principal */
.promo-banner {
    position: relative;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Conteneur des slides */
.promo-banner-content {
    position: relative;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slides individuels */
.promo-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.promo-slide.active {
    display: block;
    opacity: 1;
}

/* Lien obfusqué - tout le texte est cliquable */
.obf-link {
    cursor: pointer;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    background: transparent;
    outline: none;
}

/* Couleurs par marque */
.promo-motoblouz {
    color: #f1ab00;
}

.promo-maxxess {
    color: #fff;
    font-weight: 500;
}

.promo-speedway {
    color: #00ae42;
}


/* Effet hover - soulignement de la couleur du texte */
.obf-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transform: translateY(-1px);
}

/* Couleur de soulignement par marque */
.promo-motoblouz:hover {
    color: #f1ab00;
    text-decoration-color: #f1ab00;
}

.promo-maxxess:hover {
    color: #fff;
    text-decoration-color: #fff;
}

.promo-speedway:hover {
    color: #00ae42;
    text-decoration-color: #00ae42;
}
/* S'assurer que la couleur du texte ne change pas au survol */
.promo-motoblouz:hover {
    color: #f1ab00;
}

.promo-maxxess:hover {
    color: #fff;
}

.promo-speedway:hover {
    color: #00ae42;
}

/* Focus pour l'accessibilité */
.obf-link:focus {
    outline: 2px dashed #fff;
    outline-offset: 4px;
}

/* Dots de navigation */
.promo-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #999;
    transform: scale(1.2);
}

.dot.active {
    background-color: #ccc;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .promo-banner {
        padding: 12px 15px;
    }
    
    .obf-link {
        font-size: 16px;
        padding: 8px 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 10px;
    }
    
    .obf-link {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .promo-dots {
        margin-top: 8px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promo-banner {
    animation: fadeIn 0.5s ease-out;
}

/* Suppression de la sélection du texte lors du clic rapide */
.obf-link {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

