  /* 기본 여백/패딩 전부 제거 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* 스크롤바 없애고 화면 꽉 채우기 */
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
  }

  /* 게임 컨테이너 */
  #app {
    width: 100%;
    height: 100%;
  }

  /* 캔버스 설정 */
  #canvas {
    display: block;
    cursor: none;
    position: fixed;
    top: 0;
    left: 0;
  }

  /* 게임 중 텍스트 드래그 방지 */
  * {
    user-select: none;
    -webkit-user-select: none;
  }