
body {
    /* font-family: Arial, sans-serif;
    background-color: #1b1f3b;
    margin: 0;
    padding: 20px 0;
    /* display: flex; */
     justify-content: center; 
}

.containa {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto ;
    margin-bottom: 100px;
}

/* 1. Conteneur principal Swiper */
.swiper {
    width: 100%;
    height: auto;
    padding: 30px 0;
}

/* 2. Style des slides (blocs) */
.swiper-slide {
    background: #0d101ebe;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 350px; /* Hauteur fixe pour un affichage uniforme */
    color: #e0e0e0;
    overflow: hidden;
}

/* 3. Style de l'image (Lazy Load) */
.slide-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* Couleur de fond avant le chargement */
}

/* Les images Swiper avec lazy load utilisent la classe swiper-lazy */
.swiper-lazy {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Assure que l'image couvre le conteneur */
}

/* Style de l'indicateur de chargement (Spinner) */
.swiper-lazy-preloader {
    border-color: #333;
    display: none;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slide-content h3 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    color: #01c973;
    font-size: 1.3rem;
    font-weight: 900;
    border: 1px solid #01c973;
    border-radius: 50px;
    background: #333;
    margin-bottom: 20px;
    animation: bounce 2s infinite ease;
    animation-delay: 2s;
    transition: .5s;
}

@keyframes bounce {
    0% {
        margin-top: 0;
    }
    50% {
        margin-top: -10px;
        transform: scale(1.1);
    }
    100% {
        margin-top: 0;
        opacity: 0.4;
    }
}

.slide-content p {
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 900;
    font-family: Orbitron;
    color: #d12142;
}

/* 4. Navigation et Pagination */
.swiper-pagination-bullet-active {
    background: #01c973;
}
.button-prev, .button-next {
    color: #01c973;
    position: absolute;
    font-weight: 200;
}

.button-prev:hover,
 .button-next:hover {
    color: #d12142;
    cursor: pointer;
}

.button-prev {
    color: #01c973;  
    top: 0;
    right: 30px;
}

.button-next {
    color: #01c973;
    top: 0;
    right: 0;
}
