	/* --- Q&A 區塊設計 --- */
	.faq-container {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.faq-group {
		background: rgba(255, 255, 255, 0.03);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 8px;
		padding: 20px;
	}

	.group-title {
		color: var(--primary-gold, #fbb750);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding-bottom: 10px;
		margin-bottom: 15px;
		font-size: 1.4rem;
	}

	.group-title i {
		margin-right: 10px;
		color: var(--accent-red, #d7423c);
	}

	.faq-item {
		margin-bottom: 20px;
		border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
		padding-bottom: 15px;
	}

	.faq-item:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.faq-q {
		color: #fff;
		font-weight: bold;
		font-size: 1.1rem;
		margin-bottom: 8px;
	}

	.faq-q::before {
		content: "Q.";
		color: var(--accent-red, #d7423c);
		margin-right: 5px;
		font-weight: 900;
	}

	.faq-a {
		color: #ccc;
		font-size: 1rem;
		line-height: 1.6;
		padding-left: 20px;
	}

	/* --- 連結樣式 --- */
	.link-text {
		color: #4db8ff;
		text-decoration: none;
	}

	.link-text:hover {
		text-decoration: underline;
		color: #fff;
	}

	.highlight {
		color: #fbb750;
		font-weight: bold;
	}

	.note-green {
		display: block;
		margin-top: 5px;
		color: #6eff6e;
		/* 亮綠色，原本的 .green */
		font-size: 0.9em;
	}

	/* --- 表格樣式 (Wiki Table) --- */
	.table-responsive {
		overflow-x: auto;
	}

	.wiki-table {
		width: 100%;
		border-collapse: collapse;
		background: rgba(0, 0, 0, 0.3);
		margin-top: 10px;
	}

	.wiki-table th,
	.wiki-table td {
		border: 1px solid rgba(255, 255, 255, 0.1);
		padding: 10px;
		text-align: center;
		color: #ddd;
	}

	.wiki-table th {
		background: rgba(251, 183, 80, 0.1);
		/* 金色淡底 */
		color: var(--primary-gold, #fbb750);
	}

	.wiki-table .sub-header {
		background: rgba(255, 255, 255, 0.05);
		color: #fff;
		text-align: left;
		padding-left: 20px;
	}

	.wiki-table td.gold {
		color: #fbb750;
		font-weight: bold;
	}

	/* --- FAQ 按鈕 Grid (給短連結用) --- */
	.faq-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
		gap: 10px;
	}

	.faq-btn {
		display: block;
		text-align: center;
		padding: 10px;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		color: #ccc;
		text-decoration: none;
		border-radius: 4px;
		transition: all 0.3s;
	}

	.faq-btn:hover {
		background: var(--accent-red, #d7423c);
		color: #fff;
		transform: translateY(-2px);
		border-color: var(--accent-red, #d7423c);
	}

	/* --- 底部導覽 (複用 home-info-grid，這裡微調讓它適應內頁) --- */
	.game-info-grid {
		/* 這裡通常沿用 home.css，若沒引入需補上 grid 樣式 */
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 15px;
	}

	@media (max-width: 768px) {
		.game-info-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}