/* 移除瀏覽器預設邊距，讓畫面置中 */
body {
  margin: 0;
  background: #111; /* 背景是深灰色 */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* 讓畫布垂直置中 */
}

/* 設定畫布樣式 */
canvas {
  background: #222; /* 畫布本身也是深灰色 */
  border: 2px solid #555; /* 淺灰色邊框，看起來像邊界 */
}
