body {
  margin: 0;
  background: #000;
}


#gameContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #000; /* 여백 배경 */
  overflow: hidden;
}

#unity-canvas {
  width: 100vw;
  height: 56.25vw;   /* 16:9 비율 (9/16 * 100) */
  max-height: 100vh;
  max-width: 177.78vh; /* 16/9 * 100 */
}

#loader {
  left: 0;
  top: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}

.loadingText {
  position: absolute;
  display: inline-block;
  width: 100vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Pretendard;
  font-size: 5vw;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #f9f9f9;
  white-space: pre-wrap;
}
