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

html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #000;
	font-family: Arial, sans-serif;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	outline: none;
}

.info {
	position: fixed;
	bottom: 20px;
	left: 20px;
	background: rgba(255, 255, 255, 0.9);
	padding: 10px;
	border-radius: 5px;
	z-index: 100;
	max-width: 300px;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	pointer-events: none;
}

.loading {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 10px;
	z-index: 1000;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

::-webkit-scrollbar {
	display: none;
}

canvas:focus {
	outline: 2px solid rgba(255, 255, 255, 0.3);
}
a {
	color: #9cf;
	text-decoration: none;
}

a:hover {
	color: white;
}
#ui {
	position: fixed;
	right: 12px;
	bottom: 12px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.35);
	padding: 8px;
	border-radius: 8px;
	z-index: 1000;
	color: #fff;
}
.hint {
	opacity: 0.85;
	font-size: 13px;
}

.copy {
	position: fixed;
	top: 20px;
	right: 20px;
	color: #000;
	background: rgb(255 255 255 / 0.9);
	padding: 10px;
	border-radius: 5px;
	font-size: 12px;
}