body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  font-family: Arial, sans-serif;
}

#loadingVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1000;
}

#progressContainer {
  z-index: 1001;
  color: #fff;
}

#progressBar {
  width: 100%;
  height: 20px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
}

#progressFill {
  height: 100%;
  background: linear-gradient(to right, #4caf50, #45a049);
  width: 0%;
  transition: width 0.3s ease;
}

#progressText {
  font-size: 14px;
  margin: 10px 0;
}

#unityContainer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #progressContainer {
    width: 90%;
  }
}
