    .imgback {
        background-image: url('https://www.linkvisor.fr/images/h1-img-1-1.jpg');
        background-size: cover; /* Ajuste la taille pour couvrir toute la div */
        background-position: center; /* Centre l'image */
        background-repeat: no-repeat; /* Empêche la répétition */
        padding: 20px; /* Ajoute un peu d'espace pour éviter que le contenu touche les bords */
    }
    /**/
    #pub-container {
        width: auto;
        max-width: 100%;
        margin: auto;
        text-align: center; /* Centrer le contenu */
    }

    .pub {
        width: 100%;
        max-width: 300px; /* Largeur max ajustable */
        margin: auto;
        /*padding: 10px;*/
        text-align: center;
        border: 2px solid #a226e4; /* Bordure fine avec couleur */
        border-radius: 10px; /* Coins arrondis */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Légère ombre */
        background: white; /* Fond blanc */
        position: relative; /* Permet d’utiliser ::before sans souci */
        background-clip: padding-box; /* Garde le fond blanc à l’intérieur */
        overflow: hidden; /* Empêche l'effet de bordure de dépasser */
    }
    .pub-180 .pub-image {
        height: 100%; /* Force l'image à occuper toute la hauteur */
        object-fit: cover; /* Évite la déformation */
    }
    .pub-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: auto;
        border-radius: 8px; /* Coins arrondis pour l’image */
    }
    .pub-text {
        display: block;
        font-size: 14px;
        color: #555; /* Gris léger */
        margin-top: 8px;
    }
    .pub::before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        z-index: -1;
        border-radius: 10px;
        background: linear-gradient(45deg, #a226e4, #ff00ff, #00ffff, #a226e4);
        background-size: 400% 400%;
        animation: borderWave 10s infinite linear;
    }
    @keyframes borderWave {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    .pub-footer {
        display: flex;
        justify-content: space-between; /* Place un élément à gauche et un autre à droite */
        align-items: center;
        margin-top: 10px;
        font-size: 14px;
        font-weight: bold;
        color: #333; /* Couleur du texte */
    }
    .pub-info {
        display: flex;
        align-items: center;
    }
    .pub-info i {
        margin-right: 5px; /* Espacement entre l’icône et le texte */
        color: #a226e4; /* Couleur de l’icône */
    }

    #ad-container {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }
    .ad-box {
        width: 100%;
        max-width: 350px;
        padding: 15px;
        border: 2px dashed #a226e4; /* Bordure en pointillés */
        border-radius: 10px;
        background: #f9f9f9; /* Fond légèrement grisé */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    .ad-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 10px;
        border-radius: 5px;
    }
    .ad-info {
        text-align: center;
    }
    .ad-title {
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }
    .ad-text {
        font-size: 14px;
        color: #666;
        margin: 5px 0;
    }
    .ad-contact {
        font-size: 16px;
        font-weight: bold;
        color: #a226e4;
        margin-top: 10px;
    }
    .ad-contact i {
        margin-right: 5px;
    }
    .ad-btn {
        display: inline-block;
        padding: 10px 15px;
        margin-top: 10px;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
        background: #a226e4;
        color: #fff;
        border-radius: 5px;
        transition: background 0.3s;
    }
    .ad-btn:hover {
        background: #8a1bbf;
    }
    /**/
    .card-body-vid {
        display: flex;
        gap: 10px; /* Espacement entre les vidéos */
        flex-wrap: wrap; /* Permet le retour à la ligne si l'écran est trop petit */
        justify-content: center; /* Centrage des vidéos */
    }

    .video-container {
        flex: 1; /* Permet un dimensionnement équilibré */
        min-width: 300px; /* Largeur minimale pour éviter que les vidéos ne deviennent trop petites */
        max-width: 48%; /* Empêche les vidéos d'occuper toute la largeur */
    }

    .video-container iframe {
        width: 100%;
        height: 200px; /* Ajustez selon vos besoins */
    }
    .left {
        text-align: left;
    }

    .right {
        text-align: right;
    }
    /**/
    .navbar_1 {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    /**/
    .dropdown {
        position: relative;
    }
    .dropdown-btn {
        background-color: white;
        color: #a226e4;
        font-size: 16px;
        padding: 6px 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s, color 0.3s;
    }
    .dropdown-btn:hover {
        background-color: #8d1bc4;
        color: white;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 250px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
        z-index: 1;
    }
    .dropdown-content a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
        font-size: 16px;
        transition: background 0.3s;
    }
    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }
    .dropdown:hover .dropdown-content {
        display: block;
    }
    /**/
    .back-home {
        display: inline-block;
        padding: 10px 15px;
        margin: 0 0 10px 0;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        transition: 0.3s;
    }


    a:hover {
        text-decoration: none; /* Assure qu'il ne réapparaît pas au survol */
    }
