/* =====================================
   GAME PAGE
===================================== */

.game-page{
    padding:80px 0;
}


/* =====================================
   HERO
===================================== */

.game-hero{

    position:relative;
    height:550px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);

}


.game-banner{

    width:100%;
    height:100%;
    object-fit:cover;

}



.game-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(10,10,15,1),
        rgba(10,10,15,.25)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:50px;

}


.game-logo{

    width:180px;
    max-height:100px;
    object-fit:contain;
    margin-bottom:20px;

}



.game-overlay h1{

    color:white;
    font-size:55px;
    margin:0 0 10px;

}


.game-overlay p{

    color:#ddd;
    font-size:20px;

}



/* Boutons */

.game-buttons{

    display:flex;
    gap:15px;
    margin-top:25px;

}


.game-buttons a{

    text-decoration:none;

    padding:15px 30px;

    border-radius:12px;

    display:flex;
    align-items:center;

    gap:10px;

    font-weight:700;

}


.game-buttons .purple{

    background:#7c3aed;
    color:white;

}


.game-buttons .dark{

    background:#18181f;
    color:white;

}




/* =====================================
   VIDEO PLAYER
===================================== */


.game-video{

    margin-top:60px;

}


.game-video h2,
.game-description h2,
.config h2,
.gallery h2,
.reviews h2{

    color:white;

    font-size:32px;

    margin-bottom:25px;

}



.game-video iframe{

    width:100%;
    height:500px;

    border-radius:20px;

    border:none;

}




/* =====================================
   INFOS
===================================== */


.game-info-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin:60px 0;

}



.info-card{

    background:#15151d;

    padding:30px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}



.info-card:hover{

    transform:translateY(-5px);

    border-color:#7c3aed;

}



.info-card h3{

    color:#aaa;

    margin-bottom:15px;

}


.info-card strong{

    color:white;

    font-size:24px;

}





/* =====================================
   DESCRIPTION
===================================== */


.game-description{

    background:#15151d;

    padding:35px;

    border-radius:20px;

    margin-bottom:60px;

}


.game-description p{

    color:#bbb;

    line-height:1.8;

    font-size:17px;

}





/* =====================================
   CONFIGURATION
===================================== */


.config{

    margin-bottom:60px;

}



.config-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}



.config-grid div{

    background:#15151d;

    padding:30px;

    border-radius:20px;

    border-left:4px solid #7c3aed;

}



.config-grid h3{

    color:#8b5cf6;

}


.config-grid p{

    color:#ccc;

    line-height:1.8;

}





/* =====================================
   GALERIE
===================================== */


.gallery{

    margin-bottom:60px;

}



.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}



.gallery-grid img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:18px;

    transition:.3s;

}


.gallery-grid img:hover{

    transform:scale(1.04);

}





/* =====================================
   AVIS
===================================== */


.review-card{

    background:#15151d;

    padding:30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}


.review-card b{

    color:#8b5cf6;

}


.review-card p{

    color:#ccc;

}





/* =====================================
   RESPONSIVE
===================================== */


@media(max-width:768px){


    .game-hero{

        height:450px;

    }


    .game-overlay{

        padding:30px;

    }


    .game-overlay h1{

        font-size:38px;

    }


    .game-logo{

        width:130px;

    }


    .game-buttons{

        flex-direction:column;

    }


    .game-video iframe{

        height:250px;

    }

}