:root {
	--bg: #121212;
	--surface: #1c1c1c;
	--surface-soft: #161616;
	--text: #e6e6e6;
	--muted: #a8a8a8;
}

/* CRT scanlines only, no vignette */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.003),
		rgba(255, 255, 255, 0.003) 1px,
		transparent 1px,
		transparent 4px
	);
	z-index: 9999;
}
