/* /abuse page styling. Extracted from the page's inline <style> when the
   Chinese version arrived: two copies would have drifted apart, and an
   external file is cacheable where an inline block is not. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
	background: var(--bg);
	transition: background-color var(--theme-dur) ease;
}
body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	transition: background-color var(--theme-dur) ease, color var(--theme-dur) ease;
}

a { color: var(--accent); text-decoration: none; transition: color var(--theme-dur) ease; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

main {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 20px 0;
}

h1 {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 8px;
	letter-spacing: -.5px;
}
.subtitle {
	color: var(--text-muted);
	font-size: 16px;
	margin: 0 0 8px;
}
h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 36px 0 12px;
}
p { margin: 0 0 14px; }

/* Stat strip — verified figures, sourced from /transparency. */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin: 28px 0 10px;
}
.stat {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px 14px;
	box-shadow: 0 4px 16px var(--shadow-soft);
	transition:
		background-color var(--theme-dur) ease,
		border-color var(--theme-dur) ease,
		box-shadow var(--theme-dur) ease;
}
.stat b {
	display: block;
	font-size: 26px;
	font-weight: 700;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
	transition: color var(--theme-dur) ease;
}
.stat span {
	display: block;
	margin-top: 4px;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--text-muted);
	transition: color var(--theme-dur) ease;
}
.stats-src {
	color: var(--text-muted);
	font-size: 13px;
	margin: 0;
	transition: color var(--theme-dur) ease;
}
@media (max-width: 640px) {
	.stats { grid-template-columns: 1fr 1fr; }
}

.story {
	border-left: 3px solid var(--accent);
	padding-left: 18px;
	transition: border-color var(--theme-dur) ease;
}

.report-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 26px 30px;
	box-shadow: 0 4px 16px var(--shadow-soft);
	transition:
		background-color var(--theme-dur) ease,
		border-color var(--theme-dur) ease,
		box-shadow var(--theme-dur) ease;
}
.abuse-mail {
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 14px;
}
.report-card p:last-child { margin-bottom: 0; }
.muted-line {
	color: var(--text-muted);
	font-size: 14px;
	transition: color var(--theme-dur) ease;
}
@media (max-width: 640px) {
	.report-card { padding: 22px 20px; }
}

.checks {
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}
.checks li {
	padding: 6px 0 6px 24px;
	position: relative;
}
.checks li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	transition: color var(--theme-dur) ease;
}
