main {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.main-con {
    width: 1300px;
    height: auto;
    background-color: #FFFFFF;
    margin: auto;
}
.bigBox{
    display: flex;
    justify-content: space-between;
}
.game-play-box {
    width: 65%;
    height: 600px;
    position: relative;
    /* border: 1px solid; */
    margin: 10px 0px;
}
.gameRight{
    width: 32%;
    height: 600px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}
.gameRightLi{
    width: 48%;
    height: 190px;
    position: relative;
    overflow: hidden;
}
.gameRightLi img{
    width: 100%;
    height: 100%;
}
.gameRightLi p{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);
    transition: all 0.3s;
    color: #FFFFFF;
    line-height: 2;
    font-size: 12px;
    padding: 0px 10px;
}
.gameRightLi:hover p{
    bottom: 0px;
}

.game-filter-box {
    width: 100%;
    height: 100%;
    /* border: 1px solid; */
    overflow: hidden;
}

.game-filter {
    width: 100%;
    height: 100%;
    background-image: url("../images/1.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    filter: blur(20px);
}

.game-filter img {
    width: 100%;
    height: 100%;
}

.playTopBox {
    width: 100%;
    height: 110px;
    margin: auto;
    /* border: 1px solid; */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gainsboro;
}

.playBox {
    width: 200px;
    height: 200px;
    /* border: 1px solid; */
    position: absolute;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    top: 0px;
}

.playBox img {
    width: 100%;
    height: 80%;
    border-radius: 10px;
}

.playBox p {
    width: 100%;
    height: 25%;
    margin: auto;
    text-align: center;
    line-height: 2;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    border-radius: 20px;
    text-transform: uppercase;
    /* background-color: pink; */
    background: linear-gradient(#aed409, #77952b);
    border: 2px solid white;
    margin-top: 20px;
}

.gameLi {
    width: 100px;
    height: 80%;
    /* border: 1px solid; */
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 5px;
}

.gameLi img {
    width: 100%;
    height: 100%;
}

.gameDescription {
    width: 98%;
    min-height: 300px;
    border: 1px solid gainsboro;
    border-radius: 10px;
    margin: auto;
}

.gameDescriptionTitle,
.recommendedGamesTitle {
    width: 100%;
    height: 60px;
    padding: 0px 10px;
    text-transform: uppercase;
    color: #3c3b47;
    font-size: 20px;
    line-height: 60px;
    font-weight: 600;
}

.gameDescriptionTxt {
    width: 100%;
    height: 240px;
    border-top: 1px solid gray;
    padding: 0px 10px;
    line-height: 1.5;
    color: gray;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    padding-left: 10px;
}

.recommendedGames {
    width: 98%;
    height: auto;
    border: 1px solid gainsboro;
    border-radius: 10px;
    margin-top: 10px;
    margin: 20px auto;
}

.recommendedGamesList {
    width: 100%;
    height: auto;
    border-top: 1px solid gray;
    padding: 0px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommendedlist {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 5px 0px grey;
    margin: 10px 0px;
    transition: all 0.3s;
}

.recommendedlist img {
    width: 100%;
    height: 80%;
}

.recommendedlist p {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    font-size: 14px;
    color: gray;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-left: 10px;
}

@media screen and (max-width:960px) {
    .main-con {
        width: 100%;
    }

    .playTopBox {
        width: 95%;
        flex-wrap: wrap;
        height: auto;
        justify-content: space-between;
    }

    .gameLi {
        width: 23%;
        margin: 0px;
        height: 80px;
        margin-bottom: 10px;
    }

    .gameLi:nth-last-child(1) {
        display: none;
    }

    .gameLi:nth-last-child(2) {
        display: none;
    }

    .game-play-box {
        width: 95%;
        margin: auto;
        height: 330px;
        margin-bottom: 20px;
    }

    .recommendedlist {
        width: 23%;
        height: 90px;
    }

    .recommendedlist:nth-last-child(1) {
        display: none;
    }

    .recommendedlist:nth-last-child(2) {
        display: none;
    }

    .playBox {
        width: 150px;
        height: 150px;
    }

    .recommendedlist p {
        padding-top: 0px;
        font-size: 10px;
        padding-left: 4px;
    }

    .gameDescription {
        width: 95%;
        border-radius: 5px;
    }

    .recommendedGames {
        width: 95%;
        border-radius: 5px;
    }
    .gameRight{
        display: none;
    }
}