.games-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    overflow: visible;
    position: relative;
}

/* =========================================
   CARD / GAME STRIP
   ========================================= */
.game-strip {
    display: flex;
    width: 100%;
    min-height: 700px;
    overflow: visible;
    position: relative;
    flex-direction: row;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

.game-strip:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}


.crumbs, .witch, .hiraeth {
    z-index: 10;
}
.crumbs:hover,
.witch:hover,
.hiraeth:hover {
    z-index: 11;
}


.crumbs, .hiraeth {
    flex-direction: row; 
}

.witch {
    flex-direction: row;
}

/* =========================================
   VISUAL SIDE (IMAGE DE FOND)
   ========================================= */
.visual-side {
    flex: 1 1 60%;
    position: relative;
    background-size: 150%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
    overflow: hidden;
    will-change: transform;
}

.hiraeth .visual-side {
    background-size: 190%;
}

/* =========================================
   INFO SIDE (BANDE TEXTE)
   ========================================= */
.info-side {
    flex: 1 1 20%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    box-sizing: border-box;
    color: white;
    z-index: 5;
}

.text-content {
    background: rgba(0, 0, 0, 0.25);
    padding: 20px;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* =========================================
   MINI-GALERIE / CARROUSEL
   ========================================= */
.mini-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.mini-gallery::-webkit-scrollbar {
    display: none;
}

.mini-gallery img {
    height: 125px;
    width: auto;
    flex-shrink: 0;
    object-fit: cover;
    transition: none;
}

/* =========================================
   LOGOS : gauche / droite
   ========================================= */
.logo-left {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 300px;
    max-width: 60%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    z-index: 10;
}

.logo-right {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 300px;
    max-width: 60%;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    z-index: 10;
}

/* =========================================
   COULEURS PAR JEU
   ========================================= */
.crumbs .info-side {
    background: linear-gradient(180deg, #df8409 0%, #aa4d22 100%);
}

.witch .info-side {
    background: linear-gradient(180deg, #e70b90 0%, #a618e0 100%);
}

.hiraeth .info-side {
    background: linear-gradient(180deg, #1459a6 0%, #014759 100%);
}

/* =========================================
   TITRE OUR GAMES
   ========================================= */
.our-games-title {
    font-family: 'Erica One', sans-serif;
  font-size: 9vw;
  line-height: 0.85;
  color: #a01abf;
  margin: 0;
  font-weight: 1000;
  letter-spacing: -1px;
    text-align: center;
}
.games-title-style {
  align-items: flex-start;
  background-color: #fffbf3;
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding-bottom: 50px;
}

/* =========================================
   CARROUSEL HIRAETH (Desktop)
   ========================================= */
.hiraeth .mini-gallery {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hiraeth .carousel-track {
    display: flex;
    gap: 10px;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ==============================
   TABLET
   ============================== */
@media (max-width: 1200px) {
  .logo-centre {
    width: 30vw;
    margin-top: 210px;
  }
  .nuage {
    width: 1200px;
    max-width: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1024px) {
    
    .game-strip {
        flex-direction: column; 
        min-height: auto;
    }
    .crumbs, .hiraeth { flex-direction: column; }
    .witch { flex-direction: column-reverse; }
    
    .visual-side {
        flex: none;
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: center;
    }

    .info-side {
        flex: none;
        width: 100%;
        min-width: auto;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .logo-left, .logo-right {
        width: 200px;
        max-width: 80%;
        bottom: 20px;
    }
    .logo-left { left: 50%; transform: translateX(-50%); }
    .logo-right { right: 50%; transform: translateX(50%); }
    .hiraeth .mini-gallery {
        display: block;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .hiraeth .carousel-track {
        display: flex;
        gap: 10px;
        width: max-content;
        
        animation: scroll 40s linear infinite; 
    }

    .hiraeth .mini-gallery img {
        height: 100px;
        width: auto;
        flex-shrink: 0;
        object-fit: cover;
    }

    .hiraeth .visual-side { background-size: 300%; }
    .witch .visual-side { background-size: 170%; }
}
