* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	height: 100%;
}

body {
	font-family: var(--font-mono);
	background: var(--bg-primary);
	color: var(--text-primary);
	font-size: 16px;
	line-height: 1.7;
	min-height: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: var(--border-color);
	border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--border-color) transparent;
}

/* Selection */
::selection {
	background: var(--accent-cyan);
	color: var(--bg-primary);
}

/* Accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sr-only:focus {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: var(--space-2) var(--space-3);
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: var(--bg-secondary);
	color: var(--accent-cyan);
	z-index: 9999;
	border: 1px solid var(--accent-cyan);
	border-radius: var(--radius-md);
}
