body {
	max-width: 100vw;
}

.content-box {
	width: 100%;
	height: auto;
	display: flex;
	padding: 0px;
	flex-wrap: wrap;
	justify-content: space-between;

}

.ct_inner_box {
	width: 30%;
	position: sticky;
	top: 0;
	bottom: auto;
}

.hot_box {
	width: 80%;
	margin: auto;
}

.bottom_inner_box {
	width: 70% !important;
	margin: 20px auto;
}

.app_content {
	max-width: 75%;
	min-width: 75%;
	height: auto;
}




.content_inner {
	width: 80%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.app_box {
	width: 100%;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}

.app_box::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, #F3F3F3 8%, transparent 50%);
}



.app_bg {
	width: 100%;
	height: 100%;
	inset: 0px;
	--transform-scale: scale(1.5);
	background-blend-mode: luminosity, overlay, normal;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
	--filter-params: blur(25px) saturate(4) contrast(80%);
	filter: blur(25px) saturate(4) contrast(80%);
	transform: 1.5 translate3d(0, 0, 0);
}

.app_info {
	width: 100%;
	height: auto;
	padding: 30px 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.ap_top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	gap: 30px;
	flex-wrap: wrap;
}

.ap_header {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	min-width: 280px;
}

.ap_img {
	width: 90px;
	height: 90px;
	min-width: 90px;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	object-fit: cover;
	background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.ap_text {
	flex: 1;
}

.ap_name {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: -0.5px;
}

.ap_category {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.95);
	margin: 8px 0 0 0;
	font-weight: 400;
}

.ap_rating_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 24px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	min-width: 140px;
}

.ap_rating_score {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.ap_rating_stars {
	font-size: 16px;
	color: #ffc107;
	margin: 6px 0;
	letter-spacing: 2px;
}

.ap_rating_count {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
}

.ap_meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	width: 100%;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.ap_meta_item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
}

.ap_meta_icon {
	font-size: 24px;
}

.ap_meta_content {
	display: flex;
	flex-direction: column;
}

.ap_meta_value {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.ap_meta_label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 2px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ap_tags_box {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.ap_tags_title {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.ap_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
}

.ap_tag {
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.ap_tag:hover {
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
}

.ap_category_link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 150, 60, 0.1));
	backdrop-filter: blur(10px);
	border-radius: 12px;
	border: 1px solid rgba(0, 200, 83, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-decoration: none;
}

.ap_category_link:hover {
	background: linear-gradient(135deg, rgba(0, 200, 83, 0.25), rgba(0, 150, 60, 0.2));
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
}

.ap_category_icon {
	font-size: 20px;
}

.ap_category_text {
	flex: 1;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.95);
}

.ap_category_text strong {
	color: #fff;
	font-weight: 600;
}

.ap_category_arrow {
	color: rgba(255, 255, 255, 0.7);
	transition: transform 0.3s ease;
}

.ap_category_link:hover .ap_category_arrow {
	transform: translateX(4px);
	color: #fff;
}

.ap_actions {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	flex-wrap: wrap;
}

.ap_size_info {
	display: flex;
	flex-direction: column;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.ap_size_label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ap_size_value {
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	margin-top: 4px;
}

.ap_btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #fff;
	font-weight: 700;
	border-radius: 50px;
	padding: 16px 40px;
	background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.ap_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.ap_btn:hover::before {
	left: 100%;
}

.ap_btn:hover {
	background: linear-gradient(135deg, #00a844 0%, #008c38 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 200, 83, 0.5);
}

.ap_btn:active {
	transform: translateY(-1px) scale(1);
	box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.play_icon {
	width: 22px;
	height: 22px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.game_iframe_container {
	width: 100%;
	height: 500px;
	background: linear-gradient(145deg, #1a1a2e, #16213e);
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.game_iframe {
	width: 100%;
	height: 100%;
	border-radius: 16px;
}

.iframe_placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(145deg, #1a1a2e, #16213e);
	color: #fff;
}

.placeholder_icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(0, 200, 83, 0.2);
}

.placeholder_icon svg {
	color: #00c853;
}

.placeholder_text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.fullscreen_btn {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.fullscreen_btn:hover {
	background: rgba(0, 200, 83, 0.8);
	transform: scale(1.05);
}

.fullscreen_btn svg {
	width: 18px;
	height: 18px;
}

.game_iframe_container:fullscreen .fullscreen_btn,
.game_iframe_container:-webkit-full-screen .fullscreen_btn {
	background: rgba(0, 0, 0, 0.8);
}

.game_iframe_container:fullscreen,
.game_iframe_container:-webkit-full-screen {
	border-radius: 0;
}

.app_wrapper {
	width: 96%;
	height: auto;
	padding: 10px 2%;
	overflow-x: auto;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid hsl(240 5.9% 90%)
}

.aw_title {
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
	margin: 10px 0;
	border-bottom: 1px solid hsl(240 5.9% 90%);
}

.aw_banner_box {
	width: auto;
	display: inline-flex;
	flex-wrap: nowrap;
	overflow-y: scroll;
	overflow-x: auto;
	margin-top: 10px;
}

.aw_banner {
	width: 200px;
	height: 350px;
	margin-right: 10px;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;

}

.app_description {
	width: 92%;
	min-height: 300px;
	padding: 10px 2%;
	margin-top: 20px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid hsl(240 5.9% 90%)
}

.ade_text {
	color: #74757a;
	font-size: 14px;
	line-height: 1.5;
	transition: max-height 0.3s ease;
	line-height: 1.5;
}

.original_content {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid hsl(240 5.9% 90%);
}

.oc_section {
	margin-bottom: 24px;
}

.oc_title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0 0 12px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.oc_text {
	color: #555;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.oc_features,
.oc_tips {
	margin: 0;
	padding-left: 20px;
	color: #555;
	font-size: 14px;
	line-height: 1.8;
}

.oc_features li,
.oc_tips li {
	margin-bottom: 6px;
}

.oc_features li::marker,
.oc_tips li::marker {
	color: #00c853;
}

.show-more-btn {
	display: none;
	margin-top: 10px;
	padding: 8px 15px;
	/* background-color: #f0f0f0; */
	color: #2259e5;
	border-radius: 4px;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
}





.ct_box_one {
	padding: 0;
}

.similar_box {
	width: 100%;
	position: sticky;
	top: 0;
	bottom: auto;
}



.ct_two_box {
	width: 100%;
	box-shadow: none;
}

.ct-text_tow p:nth-of-type(1) {
	font-size: 16px;
}

.ct_one_box {
	margin: 0 8px 20px 0;
}

.ct_four_box {
	width: 96%;
	padding: 10px 2%;
	box-shadow: 0 4px 20px 0 rgba(43, 64, 115, .12);
	border-bottom: none;
}

.ct_box_one .ct_four_box {
	width: 28%;

}

.ct_four_box img {
	width: 33%;
	height: 79px;
}

.ct-text_four p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.ct-text_four p:nth-of-type(1) {

	-webkit-line-clamp: 1;
}

.ct-text_four p:nth-of-type(2) {
	margin: 5px 0;
	-webkit-line-clamp: 1;
}

.ct-text_four {
	width: 63%;
}

.ct_box_three {
	width: 100%;
	display: block;
	margin: 0 auto;
	/* border: none; */
}

.ct_three_box {
	width: 100%;
}

.caption_text {
	margin: 10px 0;
	font-size: 25px;

}

.ct_three_box img {
	width: 35%;
	height: 120px;
	border-radius: 5px;
}

.ct-text_three {
	width: 62%;
}

.ct-text_three p:nth-of-type(2) {
	font-size: 18px;
	overflow: hidden;
	font-weight: 600;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	/* display: none; */
}

.ct-text_three p {
	margin-bottom: 2px;
}

.ca-text {
	min-height: 100px;
}

.ct_box_four {
	width: 100%;
	padding: 0;
}

.ct_box_four .ct_four_box img {
	width: 28%;
}

.ct_box_four .ct-text_four {
	width: 67%;

}

.ct-text_tow p:nth-of-type(1) {
	font-size: 15px;
}

.ct_two_box img {
	width: 25%;
}

@media (max-width:759px) {
	.app_box{
		min-height: 950px;
	}
	.aw_title {
		position: sticky;
		left: 0;
	}

	.app_description {
		width: 96%;
	}



	.content_inner {
		flex-wrap: wrap;
	}

	.ct_two_box img {
		width: 30%;
		/* height: 90px; */
	}

	.ct-text_tow p:nth-of-type(1) {
		font-size: 13px;
	}

	.ct-text_tow p:nth-of-type(2) {
		font-size: 12px;
		margin-bottom: 0px;
	}

	.content-box {
		width: 100%;
		flex-wrap: wrap;
	}

	.content_inner {
		width: 100%;
	}

	.bottom_inner_box {
		width: 96% !important;
	}

	.gameInfo {
		width: 100%;
	}

	.app_content {
		max-width: 95% !important;
		margin: auto;

	}

	.hot_box {
		width: 95%;
	}

	.app_info {
		width: 100%;
		padding: 16px 4%;
		top: 50%;
		gap: 16px;
	}

	.ap_header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		min-width: auto;
		gap: 12px;
	}

	.ap_top {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.ap_rating_box {
		padding: 12px 18px;
		min-width: 120px;
	}

	.ap_rating_score {
		font-size: 32px;
	}

	.ap_rating_stars {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.ap_rating_count {
		font-size: 11px;
	}

	.ap_meta {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		padding: 14px;
	}

	.ap_meta_item {
		justify-content: center;
		flex-direction: column;
		text-align: center;
		gap: 6px;
		padding: 10px 6px;
		background: rgba(255, 255, 255, 0.06);
		border-radius: 10px;
	}

	.ap_meta_icon {
		font-size: 22px;
	}

	.ap_meta_value {
		font-size: 14px;
	}

	.ap_meta_label {
		font-size: 10px;
	}

	.ap_tags_box {
		justify-content: center;
		flex-direction: column;
		gap: 10px;
	}

	.ap_tags_title {
		width: 100%;
		text-align: center;
		font-size: 13px;
	}

	.ap_tags {
		justify-content: center;
		gap: 6px;
	}

	.ap_tag {
		padding: 5px 12px;
		font-size: 11px;
	}

	.ap_category_link {
		padding: 12px 16px;
	}

	.ap_category_text {
		font-size: 13px;
	}

	.ap_category_icon {
		font-size: 18px;
	}

	.ap_img {
		width: 72px;
		height: 72px;
		min-width: 72px;
		border-radius: 16px;
	}

	.ap_name {
		font-size: 22px;
	}

	.ap_category {
		font-size: 13px;
	}

	.ap_btn {
		width: 100%;
		justify-content: center;
		padding: 16px 28px;
		border-radius: 50px;
		font-size: 16px;
		gap: 8px;
	}

	.play_icon {
		width: 20px;
		height: 20px;
	}

	.game_iframe_container {
		height: 400px;
	}

	.fullscreen_btn {
		padding: 8px 16px;
		font-size: 13px;
	}

	.ct_inner_box {
		width: 96%;
		margin: 10px auto;
	}

	.app_wrapper {
		width: 100%;
	}

	.m-box {
		position: relative;
	}

	.game-box {
		width: 96%;
	}

	.ap_text {
		width: 100%;
		margin-left: 0;
	}
}