/* Custom styles for the video modal */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 177.78%; /* 16:9 aspect ratio */
  overflow: hidden;
  background-color: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile phone frame styling */
.phone-frame {
  background-color: #111;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 3px solid #333;
  position: relative;
}

/* Phone notch */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background-color: #111;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Media queries for responsive sizing */
@media (max-width: 640px) {
  .modal-container {
    width: 90vw;
    max-width: 350px;
  }
}

@media (min-width: 641px) {
  .modal-container {
    width: 350px;
  }
}