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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1020;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

#game-wrap {
  position: fixed;
  inset: 0;
}

#game {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}

#hint {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(10, 16, 32, 0.6);
  color: #cdd7ee;
  font-size: 13px;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
}

#hint strong {
  color: #ffd166;
  font-weight: 700;
}
