/* Contener bienvenue et compteur videos */

.welcome-banner {
    background-color: #0F0F0F;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-family: Helvetica, Arial, sans-serif;
    border-bottom: 1px solid #222; /* petit effet de séparation */
}

.welcome-text {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: 500;
}
.video-count {
    display: inline-flex;  /* pour que l'icône et texte restent ensemble */
    align-items: center;
    font-size: 16px;
    margin: 10px 0 0 0;
    color: #ff3366;
    font-weight: 600;
    background-color: rgba(255, 51, 102, 0.3); /* rose transparent */
    padding: 4px 12px;
    border-radius: 8px;
}
.video-count i {
    margin-right: 6px; /* espace entre icône et texte */
    font-size: 18px;
    color: #fff;       /* icône blanche */
}

/* Fin contener bienvenue et compteur videos */

/* Video en background sur page index */

#bg-video {
    position: relative;
    top: 0;
    left: 0%;
    width: 100vw;
    height: 80vh;
    border-radius:5px;
    object-fit: cover;
    z-index: -1;
    background: #000;
}

/* Fin video en background sur page index */

/* Contener abonnement */

.overlay-banner {
    position: relative;
    bottom: 0;
    left: 0;
    width: 99.5%;
    border-radius:5px;
    background: fuchsia;
    color: white;
    text-align: center;
    padding: 5px 5px;
    font-size: 18px;
    z-index: 20;
}
/* Boutons contener abonnement */
/* BOUTONS STYLE */
.btn-subscribe2 {
    background:white;
    color:black;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    margin-top:25px;
}
.btn-subscribe2:hover { 
    background:#A12782; 
}
.btn-login2 {
    color: white;
    background: transparent;
    padding: 8px 8px;
    border-radius: 20px;
    border: 1px solid white;   /* <- la bonne façon */
    text-decoration: none;
    display: inline-block;     /* pour garder une belle forme */
    transition: all 0.3s ease; /* petit effet au survol */
}

.btn-login2:hover {
    background: white;
    color: #111; /* contraste au hover */
}

/* Fin contener abonnement */