main {
	width: calc((100% - 40px));
	max-width: 1365px;
	/* max-width: 1350px; */
	min-height: 80vh;
	margin: auto;
	/* background-color:#ffffff; */
	/* border-radius: 10px; */
	overflow: hidden;
}

.games_des_ul{
	width: 100%;
	padding-left: 30px;
	font-size: 19px;
	padding-top: 20px;
	color: #fff;
	font-weight: 500;
}

.games_des_ul li{
	cursor: pointer;
}
.game_des_txt h6{
	color:#fff;
}
.latestGames,.hotGamesContent{
	padding: 20px;
}

.screenshots-container {
    display: flex;
    overflow: hidden;
    transition: all .3s ease-in-out;
    width: auto;
}

.pic-content {
    border-radius: 12px;
    height: auto;
    margin-bottom: 10px;
    margin-right: 22px;
    position: relative;
    text-align: center;
    text-decoration: none;
    width: 24%;
	max-width: 425px;
}

.pic-screen {
    -webkit-border-top-left-radius: 12px;
    -webkit-border-top-right-radius: 12px;
    height: 238px;
    width: 100%;
    z-index: 4;
	display: block;
}

.pic-info {
    background-color: #fff;
    -webkit-border-bottom-left-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 12px 10px;
}

.pic-info img{
	width: auto;
	height: 100%;
}

.hotGamesContent {
	align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(3,400px);
    grid-template-rows: repeat(3,105px);
    justify-items: sb;
    margin-top: 14px;
    justify-content: space-between;
}

.hotGamesContent .game-container {
    border-radius: 6px;
    box-shadow: 0 2px 6px #645c00;
    display: flex;
    height: 90px;
    overflow: hidden;
    text-decoration: none;
	background-color: #fff;
}

.hotGamesContent .game-container .pic {
    width: 105px;
}

.hotGamesContent .game-container .game-introduction {
    align-items: center;
    background-color: #fff;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1fr 1fr 1fr;
    padding: 14px 12px;
    row-gap: 5px;
    max-width: 318px;
}

.hotGamesContent .game-container .game-introduction .row-1 .appName {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #757810;
    display: -webkit-box;
    font-size: 18px;
    font-weight: 700;
    overflow: hidden;
    text-align: left;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    width: 156px;
    word-break: break-word;
}


.game-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #a69800;
    display: -webkit-box;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    overflow: hidden;
    text-align: left;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    word-break: break-word;
}

.game-name {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #564f00;
    display: -webkit-box;
    font-size: 20px;
    overflow: hidden;
    text-align: left;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    width: 238px;
    word-break: break-word;
}

	#tag-list {
		margin-top: 15px;
		display: grid;
		gap: 23px;
		grid-auto-columns: 210px;
		grid-auto-flow: row dense;
		grid-auto-rows: 100px;
		grid-template-columns: repeat(7,210px);
		grid-template-rows: repeat(auto-fill,100px);
		justify-content: center;
	}

	@media screen and (min-width:1600px) and (max-width:1700px) {
		#tag-list {
			margin-top: 15px;
			display: grid;
			gap: 23px;
			grid-auto-columns: 210px;
			grid-auto-flow: row dense;
			grid-auto-rows: 100px;
			grid-template-columns: repeat(6,210px);
			grid-template-rows: repeat(auto-fill,100px);
			justify-content: center;
		}
	}

	@media screen and (min-width:1300px) and (max-width:1600px) {
		#tag-list {
			margin-top: 15px;
			display: grid;
			gap: 23px;
			grid-auto-columns: 210px;
			grid-auto-flow: row dense;
			grid-auto-rows: 100px;
			grid-template-columns: repeat(5,210px);
			grid-template-rows: repeat(auto-fill,100px);
			justify-content: center;
		}
	}

	
	@media screen and (min-width:1100px) and (max-width:1300px) {
		#tag-list {
			margin-top: 15px;
			display: grid;
			gap: 23px;
			grid-auto-columns: 210px;
			grid-auto-flow: row dense;
			grid-auto-rows: 100px;
			grid-template-columns: repeat(4,210px);
			grid-template-rows: repeat(auto-fill,100px);
			justify-content: center;
		}
	}

	@media screen and (min-width:960px) and (max-width:1100px) {
		#tag-list {
			margin-top: 15px;
			display: grid;
			gap: 23px;
			grid-auto-columns: 210px;
			grid-auto-flow: row dense;
			grid-auto-rows: 100px;
			grid-template-columns: repeat(3,210px);
			grid-template-rows: repeat(auto-fill,100px);
			justify-content: center;
		}
	}


	@media screen and (max-width:960px) {
		#tag-list {
			margin-top: 15px;
			display: grid;
			gap: 23px;
			grid-auto-columns: 0;
			grid-auto-flow: row dense;
			grid-auto-rows: 100px;
			grid-template-columns: repeat(1,100%);
			grid-template-rows: repeat(auto-fill,100px);
			justify-content: center;
		}
	}

	#tag-list .grid-tag {
		background-color: #3c1e6e;
		border: 2px solid #3c1e6e;
		box-shadow: none;
	}

	#tag-list .grid-tag {
		align-items: center;
		background-color: #3c1f6d;
		border: 2px solid #3c1f6d;
		border-radius: 10px;
		box-shadow: 0 0 8px #36365c;
		display: flex;
		height: 100px;
		justify-content: center;
		outline: none;
		text-decoration: none;
		width: 206px;
	}

	#tag-list .grid-tag img {
		background-color: #000;
		border-radius: 10px;
		filter: unset;
		height: 90px;
		margin-left: 3px;
		overflow: hidden;
		width: 90px;
	}

	#tag-list .grid-tag span {
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		color: #171721;
		display: inline-block;
		display: -webkit-box;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.5;
		margin-left: 9px;
		overflow: hidden;
		text-align: left;
		text-overflow: ellipsis;
		width: 100px;
	}

	#tag-list .grid-tag span, #tag-list .grid-tag-text span {
		color: #fff;
	}

.clipbox {
	-webkit-clip-path: polygon(0 100%, 50% 0, 60% 100%, 100% 0, 100% 100%);
	clip-path: polygon(0 100%, 50% 0, 60% 100%, 100% 0, 100% 100%);
	height: 50px;
	background: #fff;
	position: relative;
	bottom: -1px;
}

.desTitle{
	width: calc((100% - 80px));
	max-width: 1365px;
	font: 500 24px Torus, sans-serif;
    margin: 16px auto 0;
	/* background: url("../images/titlebg.png") no-repeat; */
	font-weight: 600;
	font-weight: 700;
    font-size: 24px;
    line-height: 33px;
    color: #fff;
}

.game_des {
	width:calc((100% - 80px));
	max-width: 1365px;
	margin: auto;
	/* margin: 24px 38px; */
	padding: 18px 24px;
	background: #401ddd;
	color: #fff !important;
	-webkit-box-shadow: rgba(0, 0, 0, .24) 0 6px 12px 0;
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .24);
	line-height: 1.8em;
	margin-top: 20px;
	/* border-radius: 10px; */
	margin-bottom: 50px;
	border-radius: 20px;
}

@media screen and (max-width:960px) {

	#tag-list .grid-tag{
		width: 95%;
		margin: auto;
	}
	.game_des {
		width: 95%;
		margin: 10px;
		border-radius: 10px;
	}

	#tag-list .grid-tag span{
		width: 100%;
	}

	#tag-list .grid-tag img{
		width: 130px;
	}

	.listTitle{
		width: 95% !important;
		margin: auto;
	}
}


.game_title {
	font-weight: 700;
	font-size: 20px;
	line-height: normal;
	font-family: Torus, sans-serif;
	margin-bottom: 8px;
	color: #fff;
}

.game_des_txt {
	margin: 24px 0;
	font-size: 14px;
	color: #fff;
}

.game_title {
	font-weight: 700;
	font-size: 18px;
	line-height: normal;
	font-family: Torus, sans-serif;
	margin-bottom: 8px;
	color: #fff;
}

.game_des_txt h1{
	font-weight: 700;
	font-size: 18px;
	line-height: normal;
	font-family: Torus, sans-serif;
	margin-bottom: 8px;
	color: #fff;
}

.game_des_txt {
	margin: 24px 0;
	font-size: 14px;
	color: #fff;
}

.game_tags span {
	margin: 4px 4px 0 0;
	padding: 4px 10px;
	border: 2px solid #fff;
	border-radius: 100px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.content {
	width: 95%;
	max-width: 1800px;
	border-radius: 20px;
	padding: 40px 30px;
	margin: auto;
	background-color: #1F6ED4;
	background-size: cover;
	box-shadow: 0 15px 11px -11px #000;
}

.content h1,
.content h2,
.content h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 24px;
}

.content p,
.content li {
	color: #fff;
	line-height: 1.5;
	margin-bottom: 20px;
}

.smallList span img {
	width: auto;
	height: 16px;
	margin-right: 3px;
}

.smallList span {
	color: #fff;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.spanBox {
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}


.logoBox {
	width: 100%;
	position: inherit;
}

.goldleftOne {
	padding: 0px;
}

.logoBoxFiexd {
	width: 100%;
	display: none;
}

.smallListBox {
	width: 100%;
}

.container {
	width: 100%;
	display: none;
}

.logoBtn {
	width: auto;
	height: 50%;
}


.listTitle {
	width: 100%;
	margin: auto;
	height: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 23px;
	color: #fff;
	/* padding: 0px 20px; */
	border-radius: 16px;
	padding-left: 20px;
	margin-top: 20px;
}

.game_des_txt p{
	line-height: 3;
	margin-top: 20px;
	color: #fff;
}

.game_destitle{
	color: #fff;
		font-size: 36px;
		margin: 30px auto;
		text-align: center;
}

.listTitle p {
	display: flex;
	align-items: center;
}

.listTitle img {
	height: 40px;
	width: auto;
	margin-right: 10px;
}

.viewAll{
	font-weight: 500;
	color: #40f1ed;
}

/* .tagBox{
	width: 87%;
	height: auto;
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
} */

@keyframes shake {

	28%,
	46% {
		-webkit-transform: translate3d(0, 0, 0) rotate(0);
		transform: translate3d(0, 0, 0) rotate(0);
	}

	28.4%,
	45.3% {
		-webkit-transform: translate3d(-1px, -1px, 0) rotate(5deg);
		transform: translate3d(-1px, -1px, 0) rotate(5deg);
	}

	30.5%,
	43.2% {
		-webkit-transform: translate3d(2px, -4px, 0) rotate(-2deg);
		transform: translate3d(2px, -4px, 0) rotate(-2deg);
	}

	32.6%,
	36.8%,
	41.1% {
		-webkit-transform: translate3d(-4px, -1px, 0) rotate(3deg);
		transform: translate3d(-4px, -1px, 0) rotate(3deg);
	}

	34.7%,
	38.9% {
		-webkit-transform: translate3d(4px, 2px, 0) rotate(-4deg);
		transform: translate3d(4px, 2px, 0) rotate(-4deg);
	}
}


.container {
	width: 71%;
	/* margin: auto; */
	border-radius: 20px;
	color: #fff;
	position: relative;
	padding: 2rem;
	background: #000;
	box-shadow: 0 6px 12px 0 rgb(0 0 0 / 24%);
	background-color: #2b2c51;
	box-shadow: 0px 0px 21px -6px #fff;
	margin: 80px auto;
}

.container h1 {
	color: #fff;
	font-size: 20px;
}

.container p {
	font-size: 14px;
	margin-top: 5px;
	line-height: 2;
	font-weight: 500;
	font-family: Poppins, sans-serif;
}

.masonry,
.masonryTwo {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0px 40px;
}

.listLi {
	display: flex;
	width: calc((100% - 120px)/7);
	height: 100px;
	box-shadow: 0 6px 12px 0 rgb(0 0 0 / 24%);
	border-radius: 20px;
	overflow: hidden;
	justify-content: center;
	transition: 0.3s;
	margin-right: 20px;
	margin-bottom: 20px;
	background-color: #fff;
	position: relative;
	cursor: pointer;
}

.listLi:nth-of-type(7n) {
	margin-right: 0px;
}

.listLi img {
	width: 50%;
	height: 100%;
	border: none;
}

.listLi p {
	width: 50%;
	padding: 20px 5px 20px 10px;
	font-size: 12px;
	font-weight: 700;
	color: #c13180;
	overflow: hidden;
	text-transform: uppercase;
	align-items: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 5;
}

.smallListBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.smallList {
	width: calc((100% - 140px)/8);
	height: auto;
	border-radius: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.4s;
	cursor: pointer;
}

.smallList:hover {
	transform: scale(1.02) translateY(-4px);
}

.smallList:nth-of-type(8n) {
	margin-right: 0px;
}

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


.smallList:hover p {
	opacity: 1;
	bottom: 0px;
}



.logoBox {
	width: 255px;
	height: 90px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	margin-bottom: 20px
}

.logoBoxFiexd {
	width: 200px;
	height: 90px;
	margin-bottom: 20px;
}

.logoBtn {
	width: auto;
	height: auto;
	cursor: pointer;
}

.rightLogoBox {
	width: 25%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	border-left: 2px solid gainsboro;
}

.rightLogoBox img {
	width: auto;
	display: block;
	height: 20px;
	cursor: pointer;
}

.zlogoBox {
	width: 75%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zhomeBox,
.zsearchBox {
	width: 100%;
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


.zhomeBox {
	border-bottom: 2px solid gainsboro;
}



.leftOneBottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.leftOneBottom .goldRightLi {
	width: 100%;
	margin-right: 0px;
}

.goldleftOne {
	padding-right: 20px;
}

.goldleftTwo {
	padding-right: 10px;
	padding-left: 0px;
}

.textBox {
	width: calc((100% - 40px));
	background-color: #042456;
	margin: 30px 20px;
	border-radius: 10px;
}

.site-info {
	background: #002258;
	border-radius: 8px;
	padding: 15px;
	font-size: 13px;
	line-height: 25px;
	color: #fff;
	margin-bottom: 25px;
}

.site-info h2,
.site-info h4 {
	font-size: 14px;
	color: #fcd91a;
	font-weight: 900;
	margin: 10px 0 10px 0;
	line-height: 38px;
}

.site-info p {
	font-size: 13px;
	line-height: 25px;
	color: #fff;
	margin-bottom: 25px;
}

.site-info h6 {
	font-size: 14px;
}

@media screen and (max-width:960px) {

	.clipbox {
		height: 20px;
	}

	.masonry {
		padding: 0;
	}

	.classTitle {
		padding: 0px 20px;
	}

	main {
		width: 95%;
		min-height: 75vh;
		padding: 0px;
	}

	.listLi {
		width: 100%;
		margin-right: 0px;
	}

	.smallList {
		width: calc((100% - 20px)/3);
		height: auto;
		margin-right: 10px;
		/* display: flex; */
		flex-wrap: wrap;
		/* align-items: center; */
		/* justify-content: center; */
		border-radius: 0px;
		margin-bottom: 10px;
		border: none;
		border-radius: 10px;
		overflow: hidden;
		background-color: #05142d;
	}

	.smallListBox {
		/* padding: 0px 3%; */
		margin: 10px 0px 5px;
	}

	.smallList:nth-of-type(8n) {
		margin-right: 10px;
	}

	.spanBox {
		padding: 0 5px;
	}

	.smallList:nth-of-type(3n) {
		margin-right: 0px;
	}

	.smallList p {
		width: 100%;
		color: #fff;
		font-size: 13px;
		font-weight: 400;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.smallList img {
		width: 100%;
		height: 100%;
		margin-bottom: 5px;
	}

	.poGameBox {
		width: 100%;
		height: auto;
		display: flex;
		overflow-x: scroll;
		position: relative;
		padding: 10px;
	}

	.poGameBox::-webkit-scrollbar {
		display: none;
	}

	.poGameLi {
		display: inline;
		margin-right: 20px;
		border-radius: 20px;
		/* overflow: hidden; */
		box-shadow: 3px 2px 6px 3px #f6f8ff;
		padding-bottom: 10px;
	}

	.poGameLi img {
		width: 300px;
		height: 200px;
		border-radius: 20px 20px 0 0;
	}

	.poGameLi p {
		width: 300px;
		height: auto;
		border-radius: 0 0 20px 20px;
		background-color: #fff;
		font-size: 16px;
		font-weight: 500;
		padding: 0 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.poGameLi p:nth-of-type(1) {
		margin: 5px 0px;
	}

	.poGameLi p:nth-of-type(2) {
		color: #959595;
		font-weight: 400;
		font-size: 14px;
	}

	.baseGameBox::-webkit-scrollbar {
		display: none;
	}

	.baseGameBox {
		width: 100%;
		height: auto;
		display: flex;
		overflow-x: scroll;
		position: relative;
		padding: 10px 0px;
	}

	.baseGameLi {
		display: inline;
		margin-right: 15px;
		padding-bottom: 10px;
	}

	.baseGameLi img {
		width: 100px;
		height: 100px;
		border-radius: 20px;
	}

	.baseGameLi p {
		width: 100px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.logoBox {
		width: 100%;
		position: inherit;
	}

	.goldleftOne {
		padding: 0px;
	}

	.logoBoxFiexd {
		width: 100%;
		display: none;
	}

	.smallListBox {
		width: 100%;
	}

	.container {
		width: 100%;
		display: none;
	}

	.logoBtn {
		width: auto;
		height: 50%;
	}

	.masonryTwo {
		padding: 0;
	}

}


@media screen and (min-width:960px) {




	.smallListBox {
		margin: 10px 20px;
		width: calc((100% - 40px));
	}


	.smallList {
		border-radius: 10px;
		overflow: hidden;
		background-color: #05142d;
	}

	.smallList p {
		width: 100%;
		height: 40px;
		line-height: 40px;
		color: #fff;
		font-size: 12px;
		font-weight: 600;
		text-align: center;
		padding: 0px 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.smallList img {
		width: 100%;
		height: 100%;
		margin-bottom: 5px;

	}

	.poGameBox {
		width: 100%;
		height: auto;
		display: flex;
		flex-wrap: wrap;
		/* overflow-x: scroll; */
		position: relative;
		padding: 10px;
	}

	.poGameBox::-webkit-scrollbar {
		display: none;
	}

	.poGameLi {
		width: calc((100% - 80px)/5);
		display: block;
		margin-right: 20px;
		border-radius: 20px;
		/* overflow: hidden; */
		box-shadow: 3px 2px 6px 3px #f6f8ff;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}

	.poGameLi:nth-of-type(5n) {
		margin-right: 0px;
	}

	.poGameLi img {
		width: 100%;
		height: 200px;
		border-radius: 20px 20px 0 0;
	}

	.poGameLi p {
		width: auto;
		height: auto;
		border-radius: 0 0 20px 20px;
		background-color: #fff;
		font-size: 16px;
		font-weight: 500;
		padding: 0 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.poGameLi p:nth-of-type(1) {
		margin: 5px 0px;
	}

	.poGameLi p:nth-of-type(2) {
		color: #959595;
		font-weight: 400;
		font-size: 14px;
	}

	.baseGameBox::-webkit-scrollbar {
		display: none;
	}

	.baseGameBox {
		width: 100%;
		height: auto;
		display: flex;
		overflow-x: scroll;
		position: relative;
		padding: 10px 0px;
	}

	.baseGameLi {
		display: inline;
		margin-right: 15px;
		padding-bottom: 10px;
	}

	.baseGameLi img {
		width: 100px;
		height: 100px;
		border-radius: 20px;
	}

	.baseGameLi p {
		width: 100px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}


}

@media screen and (max-width:960px) {
	.screenshots-container{
		flex-wrap: wrap;
	}

	.pic-content{
		width: 100%;
		margin-right: 0px;
	}

	.latestGames, .hotGamesContent{
		padding: 10px;
	}


	.pic-screen{
		width: 100%;
		margin-right: 0px;
	}

	.hotGamesContent .game-container{
		width: 100%;
	}

	.hotGamesContent .game-container .game-introduction{
		width: 80%;
	}

	.listTitle{
		padding-left: 0;
	}
}