body {
	font-family: 'Geist Mono', 'Courier New', monospace;
	font-size: 11px;
	background-color: #000000;
	color: white;
	margin: 0;
	padding: 0;
}
.controls {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}
.control-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
.controls label {
	font-size: 10px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.5px;
}
.controls .value {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.6);
	min-width: 30px;
	text-align: right;
}
.slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	outline: none;
	cursor: pointer;
}
.slider:hover {
	background: rgba(255, 255, 255, 0.3);
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition: transform 0.1s;
}
.slider::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}
.slider::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	border: none;
}
.color-picker {
	width: 30px;
	height: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	cursor: pointer;
	background: transparent;
	padding: 0;
}
.color-picker::-webkit-color-swatch-wrapper {
	padding: 0;
}
.color-picker::-webkit-color-swatch {
	border: none;
	border-radius: 2px;
}
.color-picker::-moz-color-swatch {
	border: none;
	border-radius: 2px;
}
.controls-toggle {
	position: fixed;
	bottom: 50px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	z-index: 1001;
	transition: transform 0.2s;
}
.controls-toggle:hover {
	transform: scale(1.1);
	background: rgba(0, 0, 0, 0.8);
}
.controls {
	position: fixed;
	bottom: 100px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px 12px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	transition: opacity 0.3s, transform 0.3s;
	z-index: 1000;
}
.controls.hidden {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
}
@media (max-width: 768px) {
	.controls {
		bottom: 100px;
		right: 10px;
		max-height: calc(100vh - 130px);
		overflow-y: auto;
	}
	.controls-toggle {
		bottom: 50px;
		right: 10px;
	}
}
