* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#container {
  /* cursor: none; */
  width: 1920px;
  height: 1080px;
  position: relative;
  margin: 0 auto;
  background-image: url('background.jpg?122');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border: 2px solid #000; /* Optional: Visual boundary */
}

/* Video Container Styling */
.video-container {
  position: absolute;
  display: none; /* Hidden by default */
  z-index: 500;
  border-width: 0;
  border-style: none;
}
/* Example Fixed Positions */
/* Adjust these positions as needed to fit within 1920x1080 */
#video0 { top: 100px; left: 100px; }
#video1a { top: 0px; left: 277px; width: 320px; height: 1080px; }
#video1b { top: 0px; left: 1347px; width: 320px; height: 1080px; }
#video2a { top: 186px; left: 1094px; width: 230px; height: 300px; }
#video2b { top: 460px; left: 1664px; width: 256px; height: 512px; }
#video3 { top: 0px; left: 0px; }
#video4 { top: 483px; left: 1116px; width: 220px; height: 360px;}
#video5a { top: 190px; left: 830px; width: 246px; height: 296; }
#video5b { top: 449px; left: 0px; width: 284px; height: 520;}
#video6 { top: 491px; left: 841px; width: 260px; height: 360px; }
#video7 { top: 0px; left: 0px; }
#video8a { top: 144px; left: 606px; width: 220px; height: 340px; }
#video8b { top: 0px; left: 1674px; width: 246px; height: 454px; }
#video9a { top: 0px; left: 0px; width: 220px; height: 460px; }
#video9a { top: 490px; left: 610px; width: 230px; height: 370px; }

/* Video Element Styling */
video {
  width: 100%;
  height: 100%;
}

/* Progress Circle Styling */
#progress-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#4caf50 0deg, #ddd 0deg);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background 0.1s linear;
}

/* Optional: Inner Circle for Aesthetic */
#progress-circle::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
}

/* Autoplay Block Message */
#autoplay-message {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border: 2px solid #000;
  border-radius: 5px;
  display: none;
  z-index: 1000;
  font-size: 18px;
  color: #000;
}