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

html, body {
  width: 600px;
  height: 600px;
  overflow: hidden;
  /* 純黒 = 加算式ディスプレイでは透明（現実世界が透ける） */
  background: #000000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#app {
  width: 100%;
  height: 100%;
  position: relative;
}

#device-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
}
