	/* Game Detail Page Styles */
	/* 缩减各个盒子区块之间的间距 */
	.single {
		padding: 0 15px 0 !important;
	}

	.blog-to {
		padding: 5px 0 !important;
	}

	.game-detail-container {
	    display: flex;
	    gap: 10px;
	    margin-bottom: 5px;
	    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: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.game-developer,
.game-publish-date,
.game-update-time {
    font-size: 14px;
    color: #7f8c8d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}

.game-developer::before {
    content: '👤';
    font-size: 14px;
}

.game-publish-date::before {
    content: '📅';
    font-size: 14px;
}

.game-update-time::before {
    content: '🔄';
    font-size: 14px;
}

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

	.tag-button {
	    background: linear-gradient(135deg, #667eea, #764ba2);
	    color: white;
	    padding: 4px 10px;
	    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: 10px;
	}

	.play-now-btn {
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    color: white;
	    border: none;
	    padding: 10px 24px;
	    font-size: 16px;
	    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: 8px;
	}

	.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-summary {
	    margin-top: 10px;
	}

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

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

	.game-summary p {
	    font-size: 15px;
	    line-height: 1.7;
	    color: #555;
	    margin-bottom: 8px;
	}

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

.faq-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: background 0.2s ease;
    background: #fafbfc;
    border-bottom: 1px solid #eef1f5;
}

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

.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;
    flex-shrink: 0;
}

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

.faq-section.open .faq-list {
    display: block;
}

.faq-list {
    display: none;
}

.faq-item {
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.15s ease;
}

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

.faq-item:hover {
    background: #fafbfc;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
    padding: 10px 35px 10px 15px;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 400;
    color: #667eea;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #667eea;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-question {
    color: #667eea;
}

.faq-item.open .faq-question::after {
    content: '−';
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-color: transparent;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 15px 10px 15px;
}

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

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

	.similar-games-header h2 {
	    font-size: 28px;
	    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: -6px;
	    left: 50%;
	    transform: translateX(-50%);
	    width: 60px;
	    height: 3px;
	    background: linear-gradient(135deg, #f093fb, #f5576c);
	    border-radius: 2px;
	}

	.similar-games-grid {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 10px 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: 160px;
	    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: 10px;
	}

	.game-info h4 {
	    font-size: 16px;
	    font-weight: 600;
	    color: #2c3e50;
	    margin: 0 0 6px 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;
	}

	/* Comment Section */
	.single-bottom {
	    padding: 15px 0;
	    background: white;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.single-bottom h3 {
	    font-size: 24px;
	    font-weight: 700;
	    color: #2c3e50;
	    margin-bottom: 10px;
	    text-align: center;
	    text-transform: uppercase;
	}

	.single-bottom form {
	    margin: 0 auto;
	    width: 100%;
	    max-width: 100%;
	    box-sizing: border-box;
	}

	.comment {
	    margin-bottom: 8px;
	}

	.comment input {
	    width: 100%;
	    padding: 8px;
	    border: 2px solid #e9ecef;
	    border-radius: 8px;
	    font-size: 14px;
	    transition: all 0.3s ease;
	    background: #f8f9fa;
	}

	.comment input:focus {
	    outline: none;
	    border-color: #f5576c;
	    background: white;
	}

	.single-bottom textarea {
	    width: 100%;
	    padding: 8px;
	    border: 2px solid #e9ecef;
	    border-radius: 8px;
	    font-size: 14px;
	    resize: vertical;
	    min-height: 100px;
	    transition: all 0.3s ease;
	    background: #f8f9fa;
	    font-family: inherit;
	}

	.single-bottom textarea:focus {
	    outline: none;
	    border-color: #f5576c;
	    background: white;
	}

	.single-bottom input[type="submit"] {
		background: linear-gradient(135deg, #f093fb, #f5576c) !important;
		color: white !important;
		border: none !important;
		padding: 10px 30px !important;
		font-size: 15px !important;
		font-weight: 700 !important;
		border-radius: 50px !important;
		cursor: pointer !important;
		text-transform: uppercase !important;
		letter-spacing: 1px !important;
		transition: all 0.3s ease !important;
		margin-top: 8px !important;
		box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4) !important;
		width: auto !important;
		text-align: center !important;
	}

	.single-bottom input[type="submit"]:hover {
		transform: translateY(-2px) !important;
		box-shadow: 0 12px 30px rgba(245, 87, 108, 0.5) !important;
		background: linear-gradient(135deg, #f5576c, #f093fb) !important;
	}

	/* 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;
			padding: 0 15px 0 !important;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
			padding: 5px 0 !important;
		}

			.game-detail-container {
				flex-direction: column;
				gap: 10px;
				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: 12px;
			}

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

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

			.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;
			padding: 0 10px 0 !important;
		}

		.blog-to {
			width: 100%;
			overflow-x: hidden;
			padding: 3px 0 !important;
		}

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

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

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

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

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

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

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

		.blog-to {
			width: 100%;
			overflow-x: hidden;
			padding: 2px 0 !important;
		}

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

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

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

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

	    .play-now-btn {
	        padding: 8px 16px;
	        font-size: 13px;
	    }

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

    .faq-title {
        font-size: 18px;
        padding: 10px 12px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px 30px 10px 12px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 0 12px;
    }

    .faq-item.open .faq-answer {
        padding: 0 12px 10px 12px;
    }

    .single-bottom {
	        padding: 10px 0;
	    }

	    .single-bottom h3 {
	        font-size: 20px;
	    }

	    .comment input,
	    .single-bottom textarea {
	        padding: 8px;
	        font-size: 13px;
	    }
	}