/* src/style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1020;
}
body {
  font-family:
    -apple-system,
    system-ui,
    "Segoe UI",
    sans-serif;
}
#game {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: crosshair;
  touch-action: none;
}
#hint {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: #cdd6ff;
  font-size: 14px;
  letter-spacing: .3px;
  opacity: .75;
  background: rgba(10, 16, 32, .45);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
}
@media (pointer: coarse), (max-width: 1000px) {
  #hint {
    display: none;
  }
}
#pname {
  position: fixed;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 220px;
  text-align: center;
  color: #eaf0ff;
  font: 600 14px system-ui;
  background: rgba(10, 16, 32, .65);
  border: 1px solid rgba(127, 182, 255, .45);
  border-radius: 10px;
  padding: 8px 12px;
  outline: none;
  display: none;
  z-index: 5;
}
#pname::placeholder {
  color: #6b76a0;
}
#pname:focus {
  border-color: #7fb6ff;
}
/*# sourceMappingURL=bundle.css.map */
