.aftermovie {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 2080px;
  max-height: 90vh;
  margin-top: 6rem;
}

.aftermovie video {
  width: 100%;
  display: block;
  max-height: 90vh;
  cursor: pointer;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.4); /* optional for visibility */
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.custom-play-button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.custom-play-button img {
  width: 64px;
  height: 64px;
  display: block;
}
