html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #05070a;
  color: #f5f7fa;
  font-family: Arial, Helvetica, sans-serif;
}

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

#hud {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#status {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 700;
  text-shadow: 0 2px 12px #000;
}

#status span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 0 22px rgba(255, 72, 20, 0.16);
}

#crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 0 12px #ff6a25, 0 0 20px #ff2e00;
}

#minimap {
  position: absolute;
  right: 16px;
  top: 76px;
  width: 160px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 22px rgba(255, 72, 20, 0.14);
}

#message {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 32px));
  padding: 20px;
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 78, 25, 0.22);
}

#message h1 {
  margin: 0 0 8px;
  font-size: 34px;
}

#message p {
  margin: 6px 0;
  font-size: 18px;
}

#message .small {
  font-size: 14px;
  color: #c9d1d9;
}

.hidden {
  display: none;
}
