* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	overflow: hidden;
	background: #0a0505;
}
canvas {
	display: block;
}
#instructions {
	position: fixed;
	top: 20px;
	left: 20px;
	color: #e8c49a;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.7);
	padding: 15px 20px;
	border-radius: 8px;
	border: 1px solid #5a3825;
	pointer-events: none;
	z-index: 100;
}
#instructions h3 {
	margin-bottom: 8px;
	color: #f4d9a0;
	font-size: 16px;
}
#instructions p {
	margin: 3px 0;
	opacity: 0.9;
}
#crosshair {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4px;
	height: 4px;
	background: rgba(255, 200, 100, 0.5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 100;
	box-shadow: 0 0 10px rgba(255, 180, 80, 0.3);
}
#temp-indicator {
	position: fixed;
	bottom: 20px;
	right: 20px;
	color: #ff6b35;
	font-family: 'Courier New', monospace;
	font-size: 24px;
	background: rgba(0, 0, 0, 0.7);
	padding: 15px 25px;
	border-radius: 8px;
	border: 1px solid #ff6b35;
	pointer-events: none;
}
#log {
	position: fixed;
	bottom: 20px;
	left: 20px;
	color: #ff6b35;
	font-family: 'Courier New', monospace;
	font-size: 14px;
	background: rgba(0, 0, 0, 0.7);
	padding: 15px 25px;
	border-radius: 8px;
	border: 1px solid #ff6b35;
	pointer-events: none;
	/* max-height: 100px; */
	max-width: 400px;
}
#log p {
	margin: 3px 0;
	opacity: 0.9;
}
#log span {
	margin-right: 5px;
}
#click-to-start {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #f4d9a0;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-size: 24px;
	background: rgba(20, 10, 5, 0.95);
	padding: 40px 60px;
	border-radius: 12px;
	border: 2px solid #8b4513;
	cursor: pointer;
	z-index: 200;
	text-align: center;
}
#click-to-start:hover {
	background: rgba(40, 20, 10, 0.95);
}
.hidden {
	display: none !important;
}