/* =========================
   BASE / RESET
========================= */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
  font-family: Arial, sans-serif;
  background: #000;
}

body {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* =========================
   THREE.JS CANVAS AREA
========================= */
#three-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: transparent;
}

canvas {
  display: block;
  background: transparent !important;
}