.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  position: relative;
  background: #000;
  padding: 0;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

.custom-modal-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 2000;
}



/* Elite Modal Styles */
.elite-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  overflow: hidden;
}

.elite-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;  /* keeps proper video proportion */
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

#eliteVideoFrame {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.elite-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
}