html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
}

.section {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.bg-0 { background-image: url("assets/0.png"); }
.bg-1 { background-image: url("assets/1.png"); }
.bg-2 { background-image: url("assets/2_new.png"); }
.bg-3 { background-image: url("assets/3_new.png"); }
.bg-4 { background-image: url("assets/4.png"); }
.bg-5 { background-image: url("assets/5.png"); }
.bg-6 { background-image: url("assets/6.png"); }

.video-wrapper {
  position: absolute;
  transform: translate(-50%, -50%);
  max-width: 900px;
  aspect-ratio: 16 / 9;
  
}

.video-wrapper-vertical {
  position: absolute;
  transform: translate(-50%, -50%);
  max-height: 900px;
  aspect-ratio: 9 / 16;
}

.video-wrapper iframe, .video-wrapper-vertical iframe{
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
}

.tap-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}