.gameBox {
	width: 100%;
	height: auto;
}

.gameCon {
	width: 90%;
	min-width: 1400px;
	margin: auto;
	height: 100%;
	margin: auto;
}

.pName {
	width: 100%;
	font-size: 26px;
	margin-bottom: 20px;
	color: #fff;
	font-weight: 600;
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gameAd {
	width: 80%;
	margin: 30px auto;
	height: 100px;
	background-color: #FFFFFF;
	padding: 0px 10px;
	overflow-x: auto;
	position: relative;
}

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

.gameAdList {
	width: 90px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	position: absolute;
	top: 0px;
	bottom: 0px;
	margin: auto;
}

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

.gamePlay {
	width: 100%;
	height: 900px;
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

.gameplayOne {
	width: 100%;
	height: 100%;
	border: 1px solid red;
	background-image: url(../images/1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	filter: blur(20px);
	position: relative;
}

.gameplayTwo {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 888;
	display: none;
}

.gameplayTwo iframe{
	width: 100%;
	height: 100%;
}

.gameDet {
	width: 97%;
	min-height: 300px;
	border: 1px solid #4ca5a9;
	margin: 30px auto;
	overflow: hidden;
}

.gameDetTop {
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #4ca5a9;
	padding: 0px 20px;
	color: #fff;
	font-weight: 600;
	font-size: 26px;
	line-height: 50px;
	text-transform: capitalize;
}

.gameDetBottom {
	padding: 20px 20px;
	line-height: 1.8;
	color: #fff;
}

.gameLiBox {
	width: 100%;
	padding: 0px 30px;
	height: auto;
	margin: auto;
	margin-bottom: 30px;
}

.gameListBox {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}

.gameListBox .pName {
	height: auto;
	border: none;
	font-size: 16px;
}

.playBtn {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	margin: auto;
	z-index: 10;
	animation: playBtn 1.5s linear infinite;
	cursor: pointer;
}

@keyframes playBtn {
	0% {
		transform: scale(0.88);
	}

	50% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(0.88);
	}
}

@media screen and (max-width:768px) {
	.gameCon{
		width: 100%;
		min-width: 100%;
		padding: 0px;
	}
	.gameDet{
		width: 100%;
		margin: 0px auto;
		border-radius: 0px;
	}
	.gameAd{
		width: 100%;
		
	}
	.gameLiBox{
		width: 100%;
		padding: 0px;
	}
	.gameBox{
		width: 95%;
		margin: auto;
	}
	main{
		width: 95%;
		min-width: 95%;
		margin: auto;
	}
	.pName{
		height: 30px;
	}
	.gamePlay{
		height: 300px;
	}
}