html, body {
  height: 100%;
  margin: 0;
  background: #10122a;
  overflow: hidden;
}

.app-root {
  height: 100%;
  width: 100%;
}

.raider-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#raider-canvas {
  touch-action: none;
  user-select: none;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hud {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  color: white;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hud .block {
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
