	/* Game Detail Page Styles */
	.game-detail-container {
	    display: flex;
	    gap: 30px;
	    margin-bottom: 40px;
	    background: #fff;
	    border-radius: 12px;
	    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	    overflow: hidden;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.game-image-section {
	    flex: 0 0 40%;
	    max-width: 500px;
	    position: relative;
	    overflow: hidden;
	}

	.game-main-image {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    border-radius: 12px 0 0 12px;
	    transition: transform 0.3s ease;
	}

	.game-content-section {
	    flex: 1;
	    padding: 30px;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	}

	.game-header {
	    margin-bottom: 20px;
	}

	.game-title {
	    font-size: 32px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin: 0 0 15px 0;
	    line-height: 1.2;
	    text-transform: uppercase;
	    letter-spacing: -0.5px;
	}

	.game-tags {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 8px;
	}

	.tag-button {
	    background: linear-gradient(135deg, #667eea, #764ba2);
	    color: white;
	    padding: 8px 16px;
	    border-radius: 25px;
	    font-size: 12px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	}

	.game-action {
	    margin-bottom: 25px;
	}

	.play-now-btn {
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    color: white;
	    border: none;
	    padding: 15px 40px;
	    font-size: 18px;
	    font-weight: 700;
	    border-radius: 50px;
	    cursor: pointer;
	    text-transform: uppercase;
	    letter-spacing: 1px;
	    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
	    transition: all 0.3s ease;
	    display: inline-flex;
	    align-items: center;
	    gap: 10px;
	}

	.play-now-btn:hover {
	    transform: translateY(-2px);
	    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5);
	    background: linear-gradient(135deg, #f5576c, #f093fb);
	}

	.play-now-btn:active {
	    transform: translateY(0);
	}

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

/* Game Meta Info */
.game-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 30px;
}

.game-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 500;
	color: #555;
	background: #f8f9fa;
	border: 1px solid #eef0f2;
	transition: all 0.3s ease;
}

.game-meta-item:hover {
	background: #fff;
	border-color: #ddd;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
	transform: translateY(-1px);
}

.game-meta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	font-size: 11px;
	flex-shrink: 0;
}

.game-meta-item.developer .game-meta-icon {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
}

.game-meta-item.published .game-meta-icon {
	background: linear-gradient(135deg, #f093fb, #f5576c);
	color: #fff;
}

.game-meta-item.updated .game-meta-icon {
	background: linear-gradient(135deg, #43e97b, #38f9d7);
	color: #fff;
}

.game-meta-text {
	line-height: 1.4;
}

.game-meta-label {
	font-size: 10px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.game-meta-value {
	font-size: 13px;
	color: #333;
	font-weight: 600;
}

	.game-summary {
	    margin-top: 20px;
	}

	.game-summary h3 {
	    font-size: 20px;
	    font-weight: 600;
	    color: #34495e;
	    margin-bottom: 15px;
	    border-left: 4px solid #f5576c;
	    padding-left: 15px;
	}

	.game-summary h3.no-border {
	    border-left: none;
	    padding-left: 0;
	}

	.game-summary p {
	    font-size: 16px;
	    line-height: 1.8;
	    color: #555;
	    margin-bottom: 20px;
	}

	/* Similar Games Section */
	.similar-games-section {
	    padding: 50px 0;
	}

	.similar-games-header {
	    text-align: center;
	    margin-bottom: 40px;
	}

	.similar-games-header h2 {
	    font-size: 36px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin: 0;
	    text-transform: uppercase;
	    letter-spacing: -1px;
	    position: relative;
	    display: inline-block;
	}

	.similar-games-header h2::after {
	    content: '';
	    position: absolute;
	    bottom: -10px;
	    left: 50%;
	    transform: translateX(-50%);
	    width: 80px;
	    height: 4px;
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    border-radius: 2px;
	}

	.similar-games-grid {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 30px 0;
	    justify-content: flex-start;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

		.game-card {
			background: white;
			border-radius: 12px;
			overflow: hidden;
			box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
			width: 100%;
			max-width: 280px;
			box-sizing: border-box;
		}

	.game-card:hover {
	    transform: translateY(-5px);
	    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	}

	.game-card a {
	    text-decoration: none;
	    color: inherit;
	    display: block;
	}

	.game-image {
	    position: relative;
	    height: 200px;
	    overflow: hidden;
	}

	.game-image img {
	    width: 100%;
	    height: 100%;
	    object-fit: cover;
	    transition: transform 0.3s ease;
	}

	.game-card:hover .game-image img {
	    transform: scale(1.1);
	}

	.game-overlay {
	    position: absolute;
	    top: 0;
	    left: 0;
	    right: 0;
	    bottom: 0;
	    background: rgba(0, 0, 0, 0.7);
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    opacity: 0;
	    transition: opacity 0.3s ease;
	}

	.game-card:hover .game-overlay {
	    opacity: 1;
	}

	.play-button {
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    color: white;
	    padding: 10px 20px;
	    border-radius: 25px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: 0.5px;
	}

	.game-info {
	    padding: 20px;
	}

	.game-info h4 {
	    font-size: 18px;
	    font-weight: 600;
	    color: #2c3e50;
	    margin: 0 0 10px 0;
	    line-height: 1.3;
	}

	.game-info .game-tags {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 5px;
	}

	.game-info .tag {
	    background: #e3f2fd;
	    color: #1976d2;
	    padding: 4px 10px;
	    border-radius: 12px;
	    font-size: 11px;
	    font-weight: 500;
	}

	/* ===== Comments Section ===== */
.comments-section {
    max-width: 100%;
    margin: 0 0 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    box-sizing: border-box;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comments-count {
    font-size: 0.95rem;
    color: #999;
    font-weight: 500;
}

/* Comment Form */
.comment-form {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.comment-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.comment-form-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8fbf00, #6c9e00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-form-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-form-author {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
}

.comment-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.comment-form-rating label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.rating-star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-star:hover,
.rating-star.active {
    color: #f0ad4e;
    transform: scale(1.15);
}

.comment-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'PT Sans', sans-serif;
    resize: vertical;
    min-height: 100px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.comment-form-textarea:focus {
    outline: none;
    border-color: #8fbf00;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(143,191,0,0.1);
}

.comment-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.btn-comment-submit {
    padding: 10px 28px;
    background: linear-gradient(135deg, #8fbf00, #6c9e00);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(143,191,0,0.3);
}

.btn-comment-submit:hover {
    background: linear-gradient(135deg, #7aa800, #5a8500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143,191,0,0.4);
}

.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Login Hint */
.comment-login-hint {
    padding: 15px 25px;
    text-align: center;
    font-size: 1rem;
    color: #636e72;
    border-bottom: 1px solid #f0f0f0;
}

.comment-login-hint .login-link-hint {
    color: #8fbf00;
    font-weight: 600;
    text-decoration: none;
}

.comment-login-hint .login-link-hint:hover {
    text-decoration: underline;
}

/* Comments List */
.comments-list {
    padding: 5px 25px;
}

.comments-loading {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 1rem;
}

/* Comment Item */
.comment-item {
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

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

.comment-author {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}

.comment-star {
    margin-left: auto;
    font-size: 0.85rem;
    color: #f0ad4e;
}

.comment-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding-left: 58px;
}

/* Empty State */
.comments-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.comments-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.comments-empty p {
    font-size: 1.05rem;
    margin: 0;
    color: #636e72;
}

/* Load More Button */
.load-more-comments {
    text-align: center;
    padding: 5px 25px 25px;
}

.btn-load-more {
    padding: 10px 30px;
    background: transparent;
    color: #8fbf00;
    border: 2px solid #8fbf00;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #8fbf00;
    color: #fff;
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toast Notification */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    font-family: 'PT Sans', sans-serif;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-message.success {
    background: linear-gradient(135deg, #8fbf00, #6c9e00);
}

.toast-message.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.toast-message.warning {
    background: linear-gradient(135deg, #f0ad4e, #e8900c);
}

	/* FAQ Section */
.faq-section {
	margin: 0 0 30px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.faq-title {
	font-size: 28px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0;
	padding: 20px 25px;
	cursor: pointer;
	user-select: none;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 2px solid #f0f0f0;
	transition: background 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.faq-title:hover {
	background: #fafafa;
}

.faq-section-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	font-size: 14px;
	transition: transform 0.3s ease, background 0.3s ease;
	flex-shrink: 0;
}

.faq-section.collapsed .faq-section-toggle {
	transform: rotate(90deg);
}

.faq-list {
	padding: 10px 25px 25px;
	transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
	overflow: hidden;
}

.faq-section.collapsed .faq-list {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.faq-item {
	border-bottom: 1px solid #f0f0f0;
	padding: 18px 0;
}

.faq-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.faq-question {
	font-size: 16px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 10px;
	padding-left: 16px;
	position: relative;
	line-height: 1.6;
	cursor: pointer;
	transition: color 0.3s ease;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.faq-question::before {
	content: 'Q';
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f093fb, #f5576c);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	position: static;
}

.faq-question:hover {
	color: #f5576c;
}

.faq-answer {
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	padding-left: 34px;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.faq-answer::before {
	content: 'A';
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	position: static;
	margin-top: 2px;
}

/* Responsive Design */
	/* Prevent horizontal scroll on mobile */
	html, body {
		overflow-x: hidden;
		max-width: 100%;
		width: 100%;
	}

	.single,
	.blog-to,
	.container {
		max-width: 100%;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	@media(max-width:992px) {
		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

			.game-detail-container {
				flex-direction: column;
				gap: 15px;
				width: 100%;
				box-sizing: border-box;
				overflow: hidden;
			}

			.game-image-section {
				flex: 1;
				max-width: 100%;
				height: 400px;
			}

			.game-main-image {
				border-radius: 12px 12px 0 0;
			}

			.game-content-section {
				padding: 25px;
			}

			.game-title {
				font-size: 28px;
			}

			.similar-games-grid {
				gap: 20px;
			}

			.game-card {
				max-width: 320px;
			}
	}

	@media(max-width:768px) {
		html, body {
			overflow-x: hidden;
			max-width: 100%;
			width: 100%;
		}

		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

	    .game-detail-container {
	        gap: 10px;
	        width: 100%;
	        box-sizing: border-box;
	    }

	    .game-content-section {
	        padding: 20px;
	    }

	    .game-title {
	        font-size: 24px;
	    }

	    .play-now-btn {
	        padding: 12px 30px;
	        font-size: 16px;
	    }

	    .similar-games-header h2 {
	        font-size: 28px;
	    }

	    .game-card {
	        max-width: 100%;
	    }
	}

	@media(max-width:480px) {
		.single {
			width: 100%;
			overflow-x: hidden;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
		}

	    .game-detail-container {
	        gap: 5px;
	    }

	    .game-image-section {
	        height: 250px;
	    }

	    .game-content-section {
	        padding: 15px;
	    }

	    .game-title {
	        font-size: 20px;
	    }

	    .play-now-btn {
	        padding: 10px 20px;
	        font-size: 14px;
	    }

	    .similar-games-header h2 {
	        font-size: 24px;
	    }

	    .comments-header {
	        padding: 16px 18px 12px;
	    }

	    .comments-title {
	        font-size: 1.25rem;
	    }

	    .comment-form {
	        padding: 15px 18px;
	    }

	    .comments-list {
	        padding: 5px 18px;
	    }

	    .comment-content {
	        padding-left: 0;
	    }

	    .comment-form-textarea {
	        padding: 12px;
	        font-size: 0.95rem;
	    }

	    .btn-comment-submit {
	        width: 100%;
	        text-align: center;
	    }
	}