.game-detail{
    margin: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: #FF8E81 solid 1px;


}
.game-detail img{
    width: 80%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1 ;
    border-radius: 20px;
}

.game-details-cover {
    position: flex;
    bottom: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: end;
    display: flex;
    flex-direction: column;
}

.game-details-center {
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.game-details-center h2{
   text-align: center;
   color: #000;
   font-size: 1.2rem;
}

.game-detail-text {
    display: flex;
    flex-direction: row;
    color: #000;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    
}

.game-detail-text p {
    margin: 0px;
    font-size: 1.2rem;
    font-weight: bolder;
}

.game-detail-text img {
    width: 50px;
    height: 50px;
}

.game-detail-play-btn {
    background-color: #FF8E81;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:10vh;
    width: 100%;
    height: 7vh;
    margin-bottom: 20px;
}

.game-detail-play-btn img{
    height: 4vh;
    display: block;
}

.game-intro {
    margin:  0px 15px;
    border-radius: 10px;
    padding: 20px;
}

.game-intro h3{
    color: #000;
    margin: 0px;
}

.game-intro p {
    color: #000;
}

.species-title-text {
    display: flex;
     color: #000;
     padding: 10px 15px;
     align-items: center;
     justify-content: space-between;
     border-bottom: #FF8E81 solid 1px;
 }
 
 .species-title-text h3{
     font-size: 1.2rem;
     margin: 0px;
 }

 .re-games-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin: 15px;
}

.recommend-game-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.game {
    display: none;
    width: 100%;
    height: 100vh;
    position: relative;
}

.game img {
    position: absolute;
    top: 4vh;
    left: 10px;
}