body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f1224, #000);
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
  color: white;
  overflow: hidden;
}
canvas { position: absolute; inset: 0; }
.orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #7aa2ff, #4f46e5);
  box-shadow: 0 0 50px rgba(99,102,241,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.08s linear;
  user-select: none;
  font-size: 32px;
}
.status {
  position: absolute;
  bottom: 60px;
  font-size: 14px;
  opacity: 0.8;
  z-index: 2;
}
