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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #87ceeb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
}

canvas { display: block; }

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

#overlay.hidden { display: none; }

#overlay-inner {
  text-align: center;
  padding: 32px 48px;
  border: 2px solid #fff;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
}

#overlay-inner h1 {
  font-size: 42px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

#overlay-inner p {
  font-size: 18px;
  margin-bottom: 8px;
}

#overlay-inner .hint {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.8;
}

#crosshair {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 5;
}
