.content-box {
	width: 70%;
	height: auto;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
}

.gameInfo {
	width: 70%;
	padding: 10px;
}

.g_inner_box {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.game-header {
	display: flex;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 30px;
	gap: 30px;
	align-items: flex-start;
}

.game-cover {
	flex-shrink: 0;
	width: 280px;
	height: 210px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.game-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.game-info {
	flex: 1;
	color: #fff;
}

.game-title {
	font-size: 32px;
	font-weight: bold;
	margin: 0 0 15px 0;
	line-height: 1.3;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.game-meta {
	margin-bottom: 15px;
}

.game-category {
	display: inline-block;
	background: rgba(255,255,255,0.2);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 12px;
	backdrop-filter: blur(10px);
}

.game-stats {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.stars {
	color: #ffd700;
	font-size: 16px;
	letter-spacing: 2px;
}

.rating-value {
	font-weight: bold;
	font-size: 18px;
}

.plays {
	font-size: 14px;
	opacity: 0.9;
}

.game-instructions {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0.95;
	max-width: 500px;
}

.play-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #764ba2;
	padding: 14px 40px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.play-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	background: #f8f9fa;
}

.play-icon {
	font-size: 20px;
}

.game-details {
	padding: 30px;
	background: #fff;
}

.detail-section {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #f0f0f0;
}

.detail-section:last-of-type {
	border-bottom: none;
}

.detail-section h2 {
	font-size: 22px;
	color: #073b54;
	margin: 0 0 15px 0;
	font-weight: 600;
}

.detail-section p {
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	margin: 0;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	background: #f0f4f8;
	color: #073b54;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	transition: all 0.2s ease;
}

.tag:hover {
	background: #073b54;
	color: #fff;
}

.game-actions {
	display: flex;
	gap: 15px;
	margin-top: 25px;
	padding-top: 20px;
	border-top: 2px solid #f0f0f0;
}

.original-content {
	background: #f8fafc;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.original-content h2 {
	color: #1e3a5f;
	font-size: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.original-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.original-content li {
	position: relative;
	padding: 10px 0 10px 28px;
	color: #4a5568;
	font-size: 15px;
	line-height: 1.6;
	border-bottom: 1px dashed #e2e8f0;
}

.original-content li:last-child {
	border-bottom: none;
}

.original-content li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 10px;
	color: #48bb78;
	font-weight: bold;
	font-size: 16px;
}

.feature-list li::before {
	content: "★";
	color: #ed8936;
}

.love-list li::before {
	content: "♥";
	color: #e53e3e;
}

.tips-list li::before {
	content: "💡";
	font-size: 14px;
}

.pro-tips {
	background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
	border: 1px solid #667eea30;
}

.pro-tips h2 {
	color: #553c9a;
}

.pro-tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.pro-tip-card {
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #667eea;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	font-size: 14px;
	color: #4a5568;
	line-height: 1.6;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pro-tip-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.action-btn.primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.action-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.action-btn.secondary {
	background: #f0f4f8;
	color: #073b54;
}

.action-btn.secondary:hover {
	background: #e2e8f0;
}

.ct_inner_box {
	padding: 10px 0;
	position: relative;
}

.Categories {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.c-bottom {
	width: 93%;
	padding: 10px 2%;
}

.Categories a {
	font-size: 16px;
	padding: 10px 20px;
	margin: 0 10px 20px 0;
	border-radius: 5px;
	box-shadow: 0 4px 20px 0 rgba(43, 64, 115, .12);
	font-size: 17px;
	border-radius: 4px;
	transition: all 0.2s linear;
	color: #4f535d;
}

.Categories a:hover {
	background-color: #5E47E8;
	color: #fff;
}

.ct_box_one {
	padding: 0;
}

.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;
}

.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;
}

.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%;
}

@media (max-width: 960px) {
	.game-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px;
	}
	
	.game-cover {
		width: 100%;
		max-width: 320px;
		height: auto;
		aspect-ratio: 4/3;
	}
	
	.game-info {
		width: 100%;
	}
	
	.game-title {
		font-size: 26px;
	}
	
	.game-stats {
		justify-content: center;
	}
	
	.game-instructions {
		max-width: 100%;
	}
	
	.game-actions {
		flex-direction: column;
	}
	
	.action-btn {
		justify-content: center;
	}
	
	.original-content {
		padding: 15px;
	}
	
	.pro-tips-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 759px) {
	.content-box {
		width: 96%;
		flex-wrap: wrap;
	}
	
	.gameInfo {
		width: 100%;
	}
	
	.game-header {
		padding: 20px;
	}
	
	.game-title {
		font-size: 22px;
	}
	
	.game-details {
		padding: 20px;
	}
	
	.Categories a {
		font-size: 16px;
		padding: 10px 6px;
	}
	
	.ct_four_box img {
		width: 29%;
	}
	
	.ct_box_one .ct_four_box {
		width: 100%;
	}
	
	.ct_four_box img {
		width: 30%;
		height: 85px;
	}
	
	.ct-text_four {
		width: 67%;
	}
	
	.ct_inner_box {
		width: 96%;
		margin: auto;
	}
	
	.tag-list {
		gap: 8px;
	}
	
	.tag {
		font-size: 12px;
		padding: 6px 12px;
	}
	
	.original-content {
		padding: 12px;
		margin: 0 -5px 15px -5px;
	}
	
	.original-content h2 {
		font-size: 18px;
	}
	
	.original-content li {
		font-size: 14px;
		padding: 8px 0 8px 24px;
	}
	
	.pro-tip-card {
		padding: 12px;
		font-size: 13px;
	}
}

@media (min-width: 759px) {
	.ct_box_four {
		position: sticky;
		top: 0px;
		bottom: auto;
	}
}