body {
	margin:0px;
	padding:0px;
	position: absolute; 
	height:100%;
	width:100%;
	background-size:cover;
	font-style: regular;
	font-family:"Myriad Pro", Myriad,"Helvetica Neue", Helvetica, Arial, sans-serif;
}

#unity-container {
	padding:0px;
	position:absolute;
	height:100vh;
	width:100vw;
	background-color:#ffffff;
}

#unity-container.unity-desktop {
	position:absolute;
	height:100%;
	width:100%;
}
#unity-canvas {
	position:absolute;
	height:100%;
	width:100%;
}

#unity-fullscreen-button {
	height:32px;
	width:32px;
	position:absolute;
	z-index:1;
	bottom:0px;
	right:0px;
	background-color:transparent;
	background-image:url("fullscreen-button-out.png");
	background-repeat: no-repeat;
	background-position: center;
	border:none;
	cursor: pointer;
	opacity: 0.333;
	padding: 24px;
}

@font-face {
  font-family: 'SabicFontLite';
  src: url('SABICTypefaceText_Lt.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

#unity-hint-text {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  text-align: center;
  font-family: 'SabicFontLite', Arial, sans-serif;
  font-size: 12px;
  color: #939598;
  padding: 5px 10px;
  line-height: 1.4em;
  white-space: normal;
}

/* Portrait mode: force wrapping */
@media screen and (orientation: portrait) {
  #unity-hint-text {
    white-space: normal;   /* allow wrapping */
    max-width: 99%;        /* narrower to ensure 2 lines */
  }
}

/* Landscape mode: single line */
@media screen and (orientation: landscape) {
  #unity-hint-text {
    white-space: nowrap;   /* prevent wrapping */
    max-width: 100%;       /* let it stretch in one line */
  }
}

/* SABIC custom font */
@font-face {
  font-family: 'SabicFontReg';
  src: url('SABICTypefaceText_Rg.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* White background */
/* #unity-container,
#unity-canvas {
  background-color: #ffffff;
} */

/* Welcome text container */
#welcome-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'SabicFontReg', Arial, sans-serif;
  z-index: 2; 
}

#welcome-text h1 {
  font-size: 28px;
  color: #009FDF; 
  margin: 0 0 10px 0;
}

#welcome-text p {
  font-size: 16px;
  color: #4d4d4d; 
  margin: 0;
  line-height: 1.4em;

  width: 100vw;         
  padding: 0 10%;       
  box-sizing: border-box;

  position: relative;    
  left: 50%;            
  transform: translateX(-50%); 
}



#unity-fullscreen-button:hover{
	opacity: 1.0;
}

#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
#unity-loading-bar { position: absolute; left: 50%; top: 90%; transform: translate(-50%, -50%); display: none }
#unity-progress-bar-empty { width: 256px; height: 20px; background: url('progress-bar-empty.png') no-repeat left }
#unity-progress-bar-full { width: 0%; height: 20px; background: url('progress-bar-full.png') no-repeat left }

#unity-container.unity-mobile { width: 100%; height: 100% }
.unity-mobile #unity-footer { display: none }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
