html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: radial-gradient(circle at center, #0a0a0a, #000);
  overflow: hidden;
}

#cursor {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
  transition: transform 0.1s ease-out;
}

#debug {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: #0f0;
  font-family: monospace;
  font-size: 12px;
  opacity: 0.6;
}
