
@keyframes advancedSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.6) rotate(-15deg);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Application de l'animation améliorée */
.slider_container {
    width: 1300px;
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
    animation: advancedSlideIn 2.5s ease-in-out;
}

/* Les autres styles restent inchangés */
.slider_container .list {
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}

.slider_container .list img {
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.slider_container .buttons {
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.slider_container .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider_container .dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider_container .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider_container .dots li.active {
    width: 30px;
}

@media screen and (max-width: 768px) {
    .slider_container {
        height: 400px;
    }
}

@media (min-width: 768px) {
    .slider_container {
        display: none;
    }
}
