/* =========================================================
   GLOBAL
   ========================================================= */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #111;
	font-family: Arial, sans-serif;
	touch-action: none;
}


/* =========================================================
   3D VIEWPORT
   ========================================================= */

#scene-container {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
}

#scene-container canvas {
	display: block;
	width: 100%;
	height: 100%;
}


/* =========================================================
   HELP PANEL
   ========================================================= */

#help-panel {
	position: fixed;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%);
	z-index: 10;

	min-width: 250px;
	padding: 10px 16px;

	border: 1px solid rgba(255, 215, 0, 0.45);
	border-radius: 10px;

	background: rgba(0, 0, 0, 0.65);

	color: #fff;
	text-align: center;

	pointer-events: none;
}

.help-title {
	margin-bottom: 3px;
	color: #ffd700;
	font-size: 14px;
	font-weight: bold;
}

.help-text {
	font-size: 12px;
	line-height: 1.4;
}


/* =========================================================
   SMALL SCREENS
   ========================================================= */

@media (max-width: 600px) {

	#help-panel {
		bottom: 10px;
		min-width: 220px;
		padding: 8px 12px;
	}

	.help-title {
		font-size: 13px;
	}

	.help-text {
		font-size: 11px;
	}
}
