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

body {
  background: #0b1b30;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  color: #fff;
}

#ui {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

#soldierCount {
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
}

#message {
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}

#game {
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  background: #5c6d82;
}
