body {
  margin: 0;
  background: #111;
  color: #eee;
  font-family: monospace;
  overflow: hidden;
}

.exploration-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid rgba(238, 238, 238, 0.12);
}

.exploration-site-name,
.exploration-site-nav a {
  color: #eee;
  text-decoration: none;
}

.exploration-site-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#container {
  position: fixed;
  inset: 0;
  display: flex;
}

canvas {
  flex: 1;
  image-rendering: pixelated;
  background: #000;
}

#ui {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 10;
  pointer-events: none;
}
