﻿html, body {
	background-color: #222222;
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

#webgl-container {
	position: fixed; /* 변경: absolute → fixed */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0; /* 필요 시 추가 */
}

#play-webgl {
	position: fixed; /* 변경: absolute → fixed */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	touch-action: none; /* 터치 이상 반응 방지 */
}

#webgl-loading { 
	position: absolute; 
	left: 50%; 
	top: 50%; 
	transform: translate(-50%, -50%); 
	display: none;
}

#webgl-logo { 
	width: 250px; 
	height: 150px; 
	background: url('https://xio.gg/assets/img/loader_logo.gif') no-repeat center 
}

.game-desc{height:300px;width:100%;background-color:#fff;z-index:1;overflow:auto}

#uniLoading {
	position:absolute;
	
	display:inline;
	top:0;
	left:50%;
	margin-left:-50%;
	
	z-index:90;
	
	width:100vw;
	height:100vh;
	background-color:#222222;
}

#uniLoading img.bg {
	position:absolute;

	top:50%;
	left:50%;
	
	width:380px;
	height:260px;
	
	
	margin-left:-190px;
	margin-top: -130px;
}

#fb_popup_background.highlight {
	border: 3px dashed #ccc;
	border-radius: 26px;
	border-color: aquamarine;
}

.disableSelection {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}