/* css/style.css */

/* --- SECTION HERO GAMES SHOWCASE ET AUTRES GRILLES SCROLLABLES --- */
.carousel-wrapper { 
    overflow-x: auto;
    overflow-y: hidden; /* Empêche tout défilement vertical non désiré */
    /* NOUVEAU : Active le défilement par "aimantation" sur l'axe horizontal. */
    scroll-snap-type: x mandatory;
    position: relative; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-padding-left: 2px;
}
.carousel-wrapper::-webkit-scrollbar { 
    display: none; 
}
.carousel-container {
    position: relative;
}