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

body {
  background: #1a1a2e;
  color: #eee;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#wrap { text-align: center; }

h1 {
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: 4px;
  color: #f9a826;
}

#hud {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 16px;
}

#hud span {
  background: #16213e;
  padding: 4px 12px;
  border-radius: 4px;
}

canvas {
  border: 4px solid #16213e;
  border-radius: 8px;
  background: #2e8b57;
}

#msg { margin-top: 8px; font-size: 13px; color: #aaa; }

#finish { font-size: 20px; color: #f9a826; margin-top: 4px; }
