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

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #1a1410;
  color: #e8d5b7;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#root {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  cursor: grab;
}

canvas:active {
  cursor: grabbing;
}

button {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  background: #3d2817;
  color: #e8d5b7;
  border: 2px solid #6b4423;
  cursor: pointer;
  transition: all 0.2s;
}

button:hover {
  background: #6b4423;
  border-color: #8b5a2b;
}

button:active {
  transform: scale(0.98);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
