* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a12;
  overflow: hidden;
  font-family: 'Bricolage Grotesque', sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

#canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: crosshair;
}

#ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

#ui-overlay > * {
  pointer-events: auto;
}

#footer {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0.4;
  transition: opacity 0.3s;
}

#footer:hover {
  opacity: 1;
}

#footer a {
  color: #f5f0e8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-decoration: none;
  padding: 4px 10px;
  background: rgba(26, 26, 46, 0.8);
  border-radius: 4px;
}

#footer a:hover {
  background: rgba(26, 26, 46, 0.95);
}