* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2b2118;
  font-family: -apple-system, Segoe UI, Roboto, sans-serif;
  color: #f4ead9;
}

#game {
  padding: 16px;
  background: #3a2c1e;
  border: 4px solid #6b4a2f;
  border-radius: 8px;
}

#hud {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: #24190f;
  border-radius: 6px;
}

#hud span { white-space: nowrap; }

canvas {
  display: block;
  image-rendering: pixelated;
  background: #4a7c3a;
  border: 2px solid #24190f;
  border-radius: 4px;
}

#message {
  min-height: 20px;
  margin-top: 8px;
  font-size: 13px;
  color: #ffe08a;
}

#help {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #cbb89a;
  max-width: 640px;
}
