body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.main {
	flex: 1;
	display: block;
}

.main .inner-box {
	width: 96%;
}

.cl-box2 {
	width: 12%;
}

.cont_game2 {
	min-height: 50vh;
	justify-content: flex-start !important;
	align-content: flex-start;

	margin: 20px auto;
}



@media (max-width:699px) {

	.cont_game2 .cl-box2 {
		width: 30%;
		height: 110px;
		margin: 0 14px 20px 0;
	}

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

@media (min-width:699px) {
	.cl-box {
		margin-right: 10px;
	}

	.cl-box:nth-of-type(6n) {
		margin-right: 0px;
	}

	.cont_game2 {
		width: 90%;
	}
}

.footer {
	margin-bottom: 0px !important;
}

/* Category Description Styles */
.category-description {
	width: 90%;
	margin: 25px auto 30px;
	padding: 25px 30px;
	background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f7 100%);
	border-left: 4px solid #1251BE;
	border-radius: 12px;
	line-height: 1.8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-description:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.category-description p {
	margin: 0;
	color: #2c3e50;
	font-size: 15px;
	letter-spacing: 0.3px;
}

/* Hot Games Section Styles */
.hot-games-section {
	margin: 35px auto;
	padding: 25px;
	background: #fafbfc;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
	width: 95%;
	font-size: 26px;
	font-weight: 700;
	margin: 0 auto 20px;
	color: #2c3e50;
	position: relative;
	padding-bottom: 12px;
	transition: color 0.3s ease;
}

.section-title:hover {
	color: #9ac399;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #9ac399 0%, #7fb37e 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.section-title:hover::after {
	width: 100px;
}

.hot-games-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: flex-start;
	gap: 12px;
	margin-bottom: 15px;
	width: 100%;
}

.hot-games-grid .cl-box {
	transition: all 0.3s ease;
	border-radius: 8px;
	overflow: hidden;
	width: calc(16.666% - 10px);
	margin: 0 !important;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hot-games-grid .cl-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(154, 195, 153, 0.25);
}

@media (max-width:699px) {
	.category-description {
		padding: 20px;
		margin: 20px auto 25px;
		border-left-width: 3px;
	}

	.category-description p {
		font-size: 14px;
		line-height: 1.7;
	}

	.hot-games-section {
		padding: 20px 15px;
		margin: 25px auto;
	}

	.section-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.section-title::after {
		width: 50px;
		height: 2.5px;
	}

	.hot-games-grid {
		gap: 10px;
	}

	.category-description {
		padding: 25px 13px;
	}

	.hot-games-grid .cl-box2 {
		width: calc(33.333% - 8px) !important;
		height: 110px;
		margin: 0;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	}
}

@media (min-width:699px) and (max-width: 1200px) {
	.hot-games-grid .cl-box {
		width:
			calc(20% - 10px);
	}



}

@media (min-width:1200px) {
	.hot-games-grid .cl-box {
		width: calc(16.666% - 10px);
	}
}