body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior: none; /* iOS 당겨서 새로고침 차단 → 리로드 겹침 OOM 방지 */
}
#unity-container
{ 
	width: 100vw;
	width: calc(var(--vw, 1vw) * 100); 
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100); 
	position: absolute;
}
#unity-canvas 
{ 
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	text-align: center;
	display: block;
}
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 320px; height: 59px; background: url('logo-Sporty&Rich.png') no-repeat center }
