/**
 * Mobile-first public styles scoped to the HAA SAA game root.
 */
.haa-saa-game {
	--haa-saa-game-ink: #17233a;
	--haa-saa-game-muted: #5f6b7c;
	--haa-saa-game-line: #d9e0e8;
	--haa-saa-game-surface: #ffffff;
	--haa-saa-game-soft: #f4f7fa;
	--haa-saa-game-green: #087f5b;
	--haa-saa-game-green-dark: #056847;
	--haa-saa-game-red: #c42d43;
	--haa-saa-game-red-dark: #9f1f32;
	--haa-saa-game-blue: #2563a7;
	box-sizing: border-box;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: clamp(16px, 4vw, 32px);
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 20px;
	background: var(--haa-saa-game-surface);
	box-shadow: 0 12px 36px rgba(23, 35, 58, 0.09);
	color: var(--haa-saa-game-ink);
	font-family: inherit;
	line-height: 1.5;
}

.haa-saa-game *,
.haa-saa-game *::before,
.haa-saa-game *::after {
	box-sizing: inherit;
}

.haa-saa-game__header {
	margin-bottom: 20px;
	text-align: center;
}

.haa-saa-game__eyebrow,
.haa-saa-game__result-kicker {
	margin: 0 0 4px;
	color: var(--haa-saa-game-blue);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.haa-saa-game__title {
	margin: 0;
	color: var(--haa-saa-game-ink);
	font-size: clamp(1.5rem, 7vw, 2.25rem);
	line-height: 1.2;
}

.haa-saa-game__intro {
	margin: 0 auto 24px;
	max-width: 38rem;
	color: var(--haa-saa-game-muted);
	font-size: 1rem;
	text-align: center;
}

.haa-saa-game__newcomer-tip {
	max-width: 38rem;
	margin: -10px auto 20px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 12px;
	background: var(--haa-saa-game-soft);
	color: var(--haa-saa-game-muted);
}

.haa-saa-game__newcomer-tip summary,
.haa-saa-game__guide-details summary,
.haa-saa-game__reference-details summary {
	display: flex;
	min-height: 44px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 12px;
	color: var(--haa-saa-game-ink);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.haa-saa-game__newcomer-tip summary::-webkit-details-marker,
.haa-saa-game__guide-details summary::-webkit-details-marker,
.haa-saa-game__reference-details summary::-webkit-details-marker {
	display: none;
}

.haa-saa-game__newcomer-tip summary:focus-visible,
.haa-saa-game__guide-details summary:focus-visible,
.haa-saa-game__reference-details summary:focus-visible {
	border-radius: 8px;
	outline: 4px solid rgba(37, 99, 167, 0.28);
	outline-offset: 2px;
}

.haa-saa-game__newcomer-tip summary::after,
.haa-saa-game__guide-details summary::after,
.haa-saa-game__reference-details summary::after {
	content: "＋";
	flex: 0 0 auto;
	color: var(--haa-saa-game-blue);
	font-size: 1.15rem;
	line-height: 1;
}

.haa-saa-game__newcomer-tip[open] summary::after,
.haa-saa-game__guide-details[open] summary::after,
.haa-saa-game__reference-details[open] summary::after {
	content: "−";
}

.haa-saa-game__newcomer-tip > div {
	padding: 0 12px 12px;
}

.haa-saa-game__newcomer-tip p {
	margin: 0;
}

.haa-saa-game__newcomer-tip p + p {
	margin-top: 4px;
}

.haa-saa-game__mode-grid,
.haa-saa-game__answer-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.haa-saa-game__mode-button--daily {
	grid-column: 1 / -1;
	border-color: #7c3aed !important;
	color: #6d28d9;
}

.haa-saa-game button {
	min-height: 48px;
	border: 0;
	border-radius: 14px;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	touch-action: manipulation;
	transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.haa-saa-game button:hover {
	transform: translateY(-1px);
}

.haa-saa-game button:focus-visible {
	outline: 4px solid rgba(37, 99, 167, 0.28);
	outline-offset: 3px;
}

.haa-saa-game button:disabled {
	cursor: wait;
	opacity: 0.58;
	transform: none;
}

.haa-saa-game__mode-button {
	display: flex;
	min-height: 92px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--haa-saa-game-blue) !important;
	background: #ffffff;
	color: var(--haa-saa-game-blue);
}

.haa-saa-game__mode-button strong {
	font-size: 1.1rem;
}

.haa-saa-game__mode-button span {
	font-size: 0.9rem;
	font-weight: 600;
}

.haa-saa-game__progress-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 7px;
	color: var(--haa-saa-game-muted);
	font-size: 0.875rem;
	font-weight: 700;
}

.haa-saa-game__question-reference {
	margin: -3px 0 7px;
	color: var(--haa-saa-game-muted);
	font-size: 0.75rem;
	text-align: right;
}

.haa-saa-game__progress-track {
	height: 8px;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: 999px;
	background: #e7edf3;
}

.haa-saa-game__progress-bar {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--haa-saa-game-blue);
	transition: width 200ms ease;
}

.haa-saa-game__figure {
	position: relative;
	width: 100%;
	aspect-ratio: 800 / 425;
	margin: 0 0 18px;
	overflow: hidden;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 14px;
	background: #ffffff;
}

.haa-saa-game__image,
.haa-saa-game__image-placeholder {
	width: 100%;
	height: 100%;
}

.haa-saa-game__image {
	display: block;
	object-fit: contain;
}

.haa-saa-game__image-placeholder {
	display: grid;
	place-items: center;
	padding: 16px;
	background: var(--haa-saa-game-soft);
	color: var(--haa-saa-game-muted);
	text-align: center;
}

.haa-saa-game__symbol-guide {
	margin: 0 0 18px;
	padding: 11px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 14px;
	background: var(--haa-saa-game-soft);
}

.haa-saa-game__symbol-guide > h3 {
	margin: 0 0 9px;
	font-size: 1rem;
	line-height: 1.3;
}

.haa-saa-game__symbol-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px;
	margin: 0;
}

.haa-saa-game__symbol-grid > div {
	display: grid;
	min-height: 38px;
	grid-template-columns: 1.85rem minmax(0, 1fr);
	align-items: center;
	gap: 3px;
	padding: 5px 6px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 9px;
	background: var(--haa-saa-game-surface);
}

.haa-saa-game__symbol-grid dt {
	margin: 0;
	color: var(--haa-saa-game-blue);
	font-size: 0.92rem;
	font-weight: 900;
	line-height: 1;
}

.haa-saa-game__symbol-grid dd {
	margin: 0;
	font-size: 0.77rem;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.haa-saa-game__guide-details,
.haa-saa-game__reference-details {
	margin-top: 9px;
	border-top: 1px solid var(--haa-saa-game-line);
}

.haa-saa-game__guide-details summary,
.haa-saa-game__reference-details summary {
	padding-right: 4px;
	padding-left: 4px;
	font-size: 0.925rem;
}

.haa-saa-game__guide-content {
	display: grid;
	gap: 12px;
	padding: 2px 4px 12px;
}

.haa-saa-game__guide-content section {
	padding: 10px;
	border-radius: 10px;
	background: var(--haa-saa-game-surface);
}

.haa-saa-game__guide-content h4 {
	margin: 0 0 7px;
	font-size: 0.925rem;
}

.haa-saa-game__guide-content dl {
	display: grid;
	gap: 6px;
	margin: 0;
}

.haa-saa-game__guide-content dl > div {
	display: grid;
	grid-template-columns: 2.8rem minmax(0, 1fr);
	gap: 7px;
}

.haa-saa-game__guide-content dt {
	color: var(--haa-saa-game-blue);
	font-weight: 900;
}

.haa-saa-game__guide-content dd {
	margin: 0;
	color: var(--haa-saa-game-muted);
	font-size: 0.875rem;
}

.haa-saa-game__reference-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 2px 4px 12px;
}

.haa-saa-game .haa-saa-game__reference-card {
	min-height: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 10px;
	background: var(--haa-saa-game-surface);
	color: var(--haa-saa-game-ink);
	text-align: left;
}

.haa-saa-game__reference-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-bottom: 1px solid var(--haa-saa-game-line);
	object-fit: cover;
	object-position: center;
}

.haa-saa-game__reference-card > span {
	display: block;
	padding: 8px;
}

.haa-saa-game__reference-card strong,
.haa-saa-game__reference-card small {
	display: block;
}

.haa-saa-game__reference-card strong {
	font-size: 0.875rem;
}

.haa-saa-game__reference-card small {
	margin-top: 2px;
	color: var(--haa-saa-game-muted);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.3;
}

.haa-saa-game__reference-modal {
	width: min(96vw, 1120px);
	max-width: none;
	height: min(94dvh, 900px);
	max-height: none;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 16px;
	background: var(--haa-saa-game-surface);
	box-shadow: 0 24px 80px rgba(6, 15, 32, 0.34);
	color: var(--haa-saa-game-ink);
}

.haa-saa-game__reference-modal::backdrop {
	background: rgba(6, 15, 32, 0.72);
}

.haa-saa-game__reference-panel {
	display: grid;
	height: 100%;
	grid-template-rows: auto auto minmax(0, 1fr);
}

.haa-saa-game__reference-panel > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--haa-saa-game-line);
}

.haa-saa-game__reference-panel h3 {
	margin: 0;
	font-size: 1.05rem;
}

.haa-saa-game .haa-saa-game__reference-panel header button {
	width: 44px;
	min-height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background: var(--haa-saa-game-soft);
	color: var(--haa-saa-game-ink);
	font-size: 1.5rem;
	line-height: 1;
}

.haa-saa-game__zoom-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 12px;
	border-bottom: 1px solid var(--haa-saa-game-line);
	background: var(--haa-saa-game-soft);
}

.haa-saa-game .haa-saa-game__zoom-controls button {
	min-width: 48px;
	min-height: 44px;
	padding: 6px 12px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 10px;
	background: var(--haa-saa-game-surface);
	color: var(--haa-saa-game-ink);
}

.haa-saa-game__reference-viewport {
	overflow: auto;
	background: #e9edf2;
	overscroll-behavior: contain;
	touch-action: pan-x pan-y pinch-zoom;
}

.haa-saa-game__reference-viewport img {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0 auto;
	transform-origin: top left;
}

.haa-saa-game__question {
	margin: 0 0 14px;
	font-size: clamp(1.15rem, 4.8vw, 1.5rem);
	font-weight: 800;
	text-align: center;
}

.haa-saa-game__answer-button {
	min-height: 66px !important;
	color: #ffffff;
	font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
}

.haa-saa-game__answer-button--yes {
	background: var(--haa-saa-game-green);
}

.haa-saa-game__answer-button--yes:hover {
	background: var(--haa-saa-game-green-dark);
}

.haa-saa-game__answer-button--no {
	background: var(--haa-saa-game-red);
}

.haa-saa-game__answer-button--no:hover {
	background: var(--haa-saa-game-red-dark);
}

.haa-saa-game__feedback {
	padding: 18px;
	border: 2px solid var(--haa-saa-game-line);
	border-radius: 14px;
	background: var(--haa-saa-game-soft);
}

.haa-saa-game__feedback--correct {
	border-color: var(--haa-saa-game-green);
	background: #ecf8f3;
}

.haa-saa-game__feedback--wrong {
	border-color: var(--haa-saa-game-red);
	background: #fff1f3;
}

.haa-saa-game__feedback h3 {
	margin: 0 0 6px;
	font-size: 1.3rem;
}

.haa-saa-game__feedback p {
	margin: 8px 0;
}

.haa-saa-game__feedback-grade {
	font-weight: 800;
}

.haa-saa-game__next-button,
.haa-saa-game__restart-button,
.haa-saa-game__report-submit {
	width: 100%;
	margin-top: 10px;
	background: var(--haa-saa-game-blue);
	color: #ffffff;
}

.haa-saa-game__report-toggle {
	width: 100%;
	min-height: 42px !important;
	margin-top: 8px;
	background: transparent;
	color: var(--haa-saa-game-muted);
	font-size: 0.9rem !important;
	text-decoration: underline;
}

.haa-saa-game__report-form {
	margin-top: 10px;
	padding: 14px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 12px;
	background: #ffffff;
}

.haa-saa-game__report-form label,
.haa-saa-game__report-form label > span {
	display: block;
}

.haa-saa-game__report-form label {
	margin-bottom: 10px;
	font-size: 0.9rem;
	font-weight: 700;
}

.haa-saa-game__report-form select,
.haa-saa-game__report-form textarea {
	width: 100%;
	margin-top: 5px;
	padding: 10px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 8px;
	background: #ffffff;
	color: var(--haa-saa-game-ink);
	font: inherit;
}

.haa-saa-game__report-form textarea {
	resize: vertical;
}

.haa-saa-game__report-status {
	margin: 10px 0 0 !important;
	font-size: 0.9rem;
	font-weight: 700;
}

.haa-saa-game__result-kicker,
.haa-saa-game__result-score,
.haa-saa-game__result-title,
.haa-saa-game__result-percentile,
.haa-saa-game__result-message {
	text-align: center;
}

.haa-saa-game__result-score {
	margin: 8px 0;
	font-size: clamp(3rem, 18vw, 5.5rem);
	font-weight: 900;
	line-height: 1;
}

.haa-saa-game__result-message {
	margin: 14px 0 22px;
	color: var(--haa-saa-game-muted);
	font-size: 1.05rem;
}

.haa-saa-game__result-title {
	margin: 12px 0 2px;
	color: var(--haa-saa-game-blue);
	font-size: 1.25rem;
	font-weight: 900;
}

.haa-saa-game__result-percentile {
	margin: 2px 0 14px;
	color: var(--haa-saa-game-ink);
	font-weight: 800;
}

.haa-saa-game__daily-area {
	margin: 18px 0;
	padding: 16px;
	border: 1px solid #c4b5fd;
	border-radius: 14px;
	background: #f5f3ff;
}

.haa-saa-game__daily-area h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.haa-saa-game__daily-area p {
	margin: 6px 0 12px;
	color: var(--haa-saa-game-muted);
	font-size: 0.9rem;
}

.haa-saa-game__nickname-form label {
	display: block;
	margin-bottom: 5px;
	font-size: 0.9rem;
	font-weight: 800;
}

.haa-saa-game__nickname-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.haa-saa-game__nickname-row input {
	min-width: 0;
	min-height: 48px;
	padding: 9px 11px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 10px;
	background: #ffffff;
	color: var(--haa-saa-game-ink);
	font: inherit;
}

.haa-saa-game__nickname-row button {
	padding: 8px 16px;
	background: #6d28d9;
	color: #ffffff;
}

.haa-saa-game__daily-status {
	min-height: 1.5em;
	font-weight: 800;
}

.haa-saa-game__leaderboard {
	overflow-x: auto;
}

.haa-saa-game__leaderboard-date {
	margin: 8px 0 0;
	color: var(--haa-saa-game-muted);
	font-size: 0.95rem;
}

.haa-saa-game--leaderboard .haa-saa-game__header {
	margin-bottom: 12px;
}

.haa-saa-game__leaderboard-cards {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.haa-saa-game__leaderboard-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 14px;
	background: var(--haa-saa-game-soft);
}

.haa-saa-game__leaderboard-card--gold {
	border-color: #eecf8a;
	background: linear-gradient(135deg, #fff6e0, #fdecc4);
}

.haa-saa-game__leaderboard-card--silver {
	border-color: #c9d0da;
	background: linear-gradient(135deg, #f4f6f9, #e6e9ee);
}

.haa-saa-game__leaderboard-card--bronze {
	border-color: #e3b48c;
	background: linear-gradient(135deg, #fbeee3, #f3dcc8);
}

.haa-saa-game__leaderboard-rank {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 50%;
	background: #ffffff;
	color: var(--haa-saa-game-muted);
	font-size: 0.95rem;
	font-weight: 800;
}

.haa-saa-game__leaderboard-card--gold .haa-saa-game__leaderboard-rank {
	border-color: #c8962c;
	background: #c8962c;
	color: #ffffff;
}

.haa-saa-game__leaderboard-card--silver .haa-saa-game__leaderboard-rank {
	border-color: #8a94a6;
	background: #8a94a6;
	color: #ffffff;
}

.haa-saa-game__leaderboard-card--bronze .haa-saa-game__leaderboard-rank {
	border-color: #b0673a;
	background: #b0673a;
	color: #ffffff;
}

.haa-saa-game__leaderboard-main {
	flex: 1 1 auto;
	min-width: 0;
}

.haa-saa-game__leaderboard-nickname {
	overflow: hidden;
	color: var(--haa-saa-game-ink);
	font-size: 0.98rem;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.haa-saa-game__leaderboard-score {
	margin-top: 2px;
	color: var(--haa-saa-game-muted);
	font-size: 0.82rem;
}

.haa-saa-game__leaderboard-time {
	flex: 0 0 auto;
	color: var(--haa-saa-game-blue);
	font-size: 0.9rem;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	text-align: right;
}

.haa-saa-game__leaderboard-empty {
	padding: 32px 12px;
	color: var(--haa-saa-game-muted);
	text-align: center;
}

.haa-saa-game__leaderboard-empty p {
	margin: 0;
}

.haa-saa-game__leaderboard-empty-emoji {
	display: block;
	margin-bottom: 8px;
	font-size: 2rem;
}

.haa-saa-game__leaderboard-loading {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.haa-saa-game__leaderboard-skeleton {
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(90deg, var(--haa-saa-game-soft) 25%, #eceff3 37%, var(--haa-saa-game-soft) 63%);
	background-size: 400% 100%;
	animation: haa-saa-game-leaderboard-shimmer 1.4s ease infinite;
}

@keyframes haa-saa-game-leaderboard-shimmer {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: 0 0;
	}
}

.haa-saa-game__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.haa-saa-game__leaderboard table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	font-size: 0.9rem;
}

.haa-saa-game__leaderboard th,
.haa-saa-game__leaderboard td {
	padding: 8px 6px;
	border-bottom: 1px solid var(--haa-saa-game-line);
	text-align: left;
	white-space: nowrap;
}

.haa-saa-game__leaderboard th:nth-child(1),
.haa-saa-game__leaderboard td:nth-child(1),
.haa-saa-game__leaderboard th:nth-child(n+3),
.haa-saa-game__leaderboard td:nth-child(n+3) {
	text-align: center;
}

.haa-saa-game__share-area {
	margin: 18px 0 4px;
	padding: 16px;
	border: 1px solid var(--haa-saa-game-line);
	border-radius: 14px;
	background: var(--haa-saa-game-soft);
}

.haa-saa-game__share-heading,
.haa-saa-game__share-status {
	margin: 0 0 10px;
	text-align: center;
}

.haa-saa-game__share-heading {
	font-size: 1.05rem;
	font-weight: 900;
}

.haa-saa-game__share-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 8px;
}

.haa-saa-game__share-button {
	display: grid;
	min-height: 48px;
	place-items: center;
	padding: 8px 10px;
	border: 0;
	border-radius: 12px;
	color: #ffffff;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
}

.haa-saa-game__share-button--native {
	background: var(--haa-saa-game-blue);
}

.haa-saa-game__share-button--line {
	background: #06c755;
}

.haa-saa-game__share-button--copy {
	background: #495567;
}

.haa-saa-game__share-button--download {
	background: #7c3aed;
}

.haa-saa-game__share-status {
	min-height: 1.5em;
	color: var(--haa-saa-game-muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.haa-saa-game__error {
	margin-top: 14px;
	padding: 12px 14px;
	border-left: 4px solid var(--haa-saa-game-red);
	border-radius: 8px;
	background: #fff1f3;
	color: #761526;
	font-weight: 700;
}

.haa-saa-game__live {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.haa-saa-game-is-hidden {
	display: none !important;
}

@media (max-width: 400px) {
	.haa-saa-game__symbol-grid dd {
		white-space: normal;
	}
}

@media (max-width: 420px) {
	.haa-saa-game {
		padding: 14px;
		border-radius: 14px;
	}

	.haa-saa-game__mode-grid {
		grid-template-columns: 1fr;
	}

	.haa-saa-game__answer-grid {
		gap: 8px;
	}

	.haa-saa-game__share-grid {
		grid-template-columns: 1fr;
	}

	.haa-saa-game__nickname-row {
		grid-template-columns: 1fr;
	}

	.haa-saa-game__symbol-guide {
		padding: 9px;
	}

	.haa-saa-game__symbol-grid {
		gap: 5px;
	}

	.haa-saa-game__symbol-grid > div {
		grid-template-columns: 1.7rem minmax(0, 1fr);
		padding: 4px 5px;
	}

	.haa-saa-game__symbol-grid dd {
		font-size: 0.72rem;
		line-height: 1.08;
	}

	.haa-saa-game__reference-modal {
		width: 100vw;
		height: 100dvh;
		border-radius: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.haa-saa-game *,
	.haa-saa-game *::before,
	.haa-saa-game *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
