/* 異世界転生確率診断ツール専用スタイル */

.game-container {
	background: #1e1e2e;
	border: 1px solid #313244;
	border-radius: 12px;
	padding: 24px;
	margin: 16px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	color: #cdd6f4;
}

.game-intro {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 24px;
	text-align: center;
}

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

.progress-container {
	margin-bottom: 24px;
}

.progress-text {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 8px;
	color: #a6adc8;
}

.progress-bar-bg {
	background: #313244;
	border-radius: 6px;
	height: 10px;
	width: 100%;
	overflow: hidden;
}

.progress-bar-fill {
	background: linear-gradient(90deg, #1e90ff, #00fa9a);
	height: 100%;
	width: 0%;
	transition: width 0.3s ease;
}

.question-box {
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	border-bottom: 1px solid #313244;
}

.question-text {
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	color: #f5c2e7;
	line-height: 1.5;
}

.answer-buttons {
	gap: 16px;
	justify-content: center;
}

.btn-answer {
	flex: 1;
	max-width: 200px;
	padding: 16px 24px;
	font-size: 1.1rem;
	font-weight: bold;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-yes {
	background-color: #1e90ff;
	color: #ffffff;
}

.btn-yes:hover {
	background-color: #3b9eff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
}

.btn-no {
	background-color: #ff69b4;
	color: #ffffff;
}

.btn-no:hover {
	background-color: #ff85c2;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

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

.result-evaluation-box {
	background: #252538;
	border-left: 4px solid #00fa9a;
	padding: 16px;
	border-radius: 0 8px 8px 0;
	margin: 20px 0;
}

.result-evaluation-box p {
	margin: 0;
	line-height: 1.6;
	color: #cdd6f4;
}

#result-percent {
	color: #00fa9a;
}

.result-detail {
	display: block;
	font-size: 0.9rem;
	margin-top: 8px;
	color: #a6adc8;
}

table th:first-child,
table td:first-child {
	text-align: center;
	width: 150px;
}

.text-left {
	text-align: left !important;
	white-space: normal;
}