body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay after video1 finishes */
.continue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
}

/* Buttons */
.control-btn {
  position: absolute;
  bottom: 20px;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

#audioBtn { left: 20px; }
#replayBtn { left: 80px; }
#playPauseBtn { left: 140px; }

.next-btn {
  position: fixed;
  bottom: 40px;
  right: -30px;
  width: 140px;
  height: 125px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  z-index: 100;
  padding: 0;
  outline: none;
}

.next-btn:hover {
  opacity: 0.9; /* or apply a filter if you prefer */
}

.next-btn-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.next-button:hover {
  /* Scale the button up by 10% (1.1) */
  transform: scale(1.5);
  /* Slightly increase the opacity for emphasis (optional, you already have one) */
  opacity: 1; 
}
