body {
	margin: 0;
	background-color: #000;
	color: #fff;
	font-family: Monospace;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
	overflow: hidden;
	touch-action: none;
	-webkit-touch-callout: none;
}

a {
	color: #ff0;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

button {
	cursor: pointer;
	text-transform: uppercase;
}

#info {
	position: absolute;
	top: 0px;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 1;
}

a, button, input, select {
	pointer-events: auto;
}

.lil-gui {
	z-index: 2 !important;
}

#container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
	#info {
		font-size: 11px;
		line-height: 18px;
		padding: 5px;
	}
	
	.lil-gui {
		--width: 220px !important;
		font-size: 10px !important;
	}
	
	.lil-gui .title {
		font-size: 11px !important;
	}
}

@media (max-width: 480px) {
	#info {
		font-size: 10px;
		line-height: 16px;
	}
	
	.lil-gui {
		--width: 180px !important;
		font-size: 9px !important;
	}
}

#scroll-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1;
	display: none;
	scrollbar-width: none;
}

#scroll-container::-webkit-scrollbar {
	display: none;
}

#scroll-spacer {
	width: 100%;
	pointer-events: none;
}

#mode-toggle {
	position: fixed;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	background: rgba(0, 0, 0, 0.65);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.mode-btn {
	padding: 7px 18px;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	font: 12px/1 monospace;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mode-btn:hover {
	color: rgba(255, 255, 255, 0.8);
}

.mode-btn.active {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}
