/* Main Content */
.main-content {
	max-width: 480px;
	margin: 0 auto;
	padding: 20px;
}

/* Game Hero */
.game-hero {
	margin-bottom: 12px;
}

.game-card {
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-thumbnail {
	position: relative;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 285px;
}

.game-thumbnail img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(135deg, #4dd4ff 0%, #0088ff 100%);
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 136, 255, 0.4);
	transition: transform 0.2s ease;
}

.play-btn:hover {
	transform: translate(-50%, -50%) scale(1.05);
}

.play-btn:active {
	transform: translate(-50%, -50%) scale(0.98);
}

/* Section Title */
.section-title {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	margin-bottom: 16px;
}

/* Similar Games Grid */
.similar-games {
	margin-bottom: 30px;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.game-item {
	position: relative;
	aspect-ratio: 1;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.game-item:hover {
	transform: scale(1.05);
}

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

.game-rating {
	position: absolute;
	bottom: 6px;
	left: 6px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 4px 8px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
}

.star {
	font-size: 14px;
}

/* Game Story */
.game-story {
	margin-bottom: 30px;
}

.story-content {
	background: white;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-content p {
	color: #333;
	line-height: 1.6;
	margin-bottom: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	transition: all 0.3s ease;
}

.story-content.expanded p {
	-webkit-line-clamp: unset;
	display: block;
}
.story-content .story-content-footer {
	display: flex;
	justify-content: flex-end;
}

.more-btn {
	background: none;
	border: none;
	color: #0088ff;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	font-size: 14px;
	transition: color 0.2s ease;
	touch-action: manipulation;
	min-height: 44px;
	min-width: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.more-btn:hover {
	color: #0066cc;
}

.more-btn:active {
	opacity: 0.7;
}

/* Rating Section */
.rating-section {
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
}

.rating-display {
	background: #6b6b6b;
	display: inline-block;
	padding: 8px 20px;
	border-radius: 20px;
	height: 40px;
}

.rating-score {
	color: white;
	font-size: 16px;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 480px) {
	.games-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.main-content {
		padding: 16px;
	}
}
