:root {
	--red:      #ff2244;
	--red-dim:  rgba(255, 34, 68, 0.12);
	--bg:       #06080d;
	--bg2:      #0b0e15;
	--line:     rgba(255, 255, 255, 0.055);
	--muted:    #2e3448;
	--soft:     #58607a;
	--text:     #bcc0cc;
	--white:    #f0f2f8;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Space Mono', monospace;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
	overflow-x: hidden;
}

.hidden { display: none !important; }