* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden; /* kein Seitenscroll */
  user-select: none;
  -webkit-user-select: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7e45b; /* bananengelb */
}

#game-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#gameCanvas {
  border: 2px solid #333;
  background: #f7e45b; /* bananengelb, wie gefordert */
  image-rendering: crisp-edges;
}

#controls {
  color: #222;
  font-size: 14px;
}

