/* One stylesheet for every page — the pages must look identical no matter
   which app the visitor arrived from, so nothing here is game-specific. */
:root { color-scheme: dark; }
* { box-sizing: border-box; }
body {
	margin: 0;
	padding: 40px 20px 64px;
	background: #12151C;
	color: #E8ECF3;
	font: 16px/1.75 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
main { max-width: 760px; margin: 0 auto; }
header.brand {
	max-width: 760px;
	margin: 0 auto 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid #2A3240;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 16px;
	flex-wrap: wrap;
}
header.brand a.logo {
	font-size: 18px;
	font-weight: 600;
	color: #E8ECF3;
	text-decoration: none;
	letter-spacing: 0.5px;
}
header.brand nav { display: flex; gap: 18px; font-size: 14px; }
h1 { font-size: 27px; margin: 0 0 6px; }
h2 {
	font-size: 19px;
	margin: 36px 0 8px;
	color: #7FD1C1;
}
.updated { color: #93A0B4; font-size: 14px; margin: 0 0 24px; }
a { color: #7FB2FF; }
strong { color: #F0C46A; }
ul { padding-inline-start: 22px; }
li { margin: 4px 0; }
section.en {
	direction: ltr;
	text-align: left;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid #2A3240;
}
footer {
	max-width: 760px;
	margin: 56px auto 0;
	padding-top: 20px;
	border-top: 1px solid #2A3240;
	color: #93A0B4;
	font-size: 13px;
}
