body { padding: 0; margin: 0; }
#unity-container { position: fixed; width: 100%; height: 100%; }
#unity-canvas { width: 100%; height: 100%; background: url('Loading1.png') center center no-repeat; background-size: cover; }
#unity-loading-bar { position: absolute; left: 50%; bottom: 10%; transform: translateX(-50%); display: block; }
#unity-logo { width: 154px; height: 130px; background: url('') no-repeat center; }
#unity-progress-bar-empty { margin-left: auto; margin-right: auto; width: 400px; height: 20px; margin-top: 10px; background: url('Progress_background_holder.png') no-repeat center; border-radius: 14px; overflow: hidden; }
#unity-progress-bar-full { width: 0%; height: 100%; background: url('Progress_filler.png') no-repeat center; border-radius: 14px 0 0 14px; }
#unity-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none; }

#loading-message { color: #fff; font-size: 12px; font-family: Arial, sans-serif;text-align: center; margin-top: 20px; position: absolute; left: 50%; bottom: -20px; transform: translateX(-50%); transition: bottom 0.5s; white-space: nowrap; }
#loading-dots { color: #fff; font-size: 18px; font-family: Arial, sans-serif; text-align: center; position: absolute; left: 50%; bottom: -40px; transform: translateX(-50%); transition: bottom 0.5s; }

.loading-dots { animation: pulse 1s infinite; }

@keyframes pulse {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}
