.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.get-started-content {
  background-color: #fff;
  border: 1px solid #999;
  background-clip: padding-box;
  padding: 15px;
  border-radius: 6px;
  max-width: 800px;
  width: 90%;
  text-align: left;
  position: relative;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-title {
  font-size: 24px;
  margin-bottom: 8px;
  color: #0f4b59;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  opacity: 0.5;
}

.video-modal-close:hover {
  opacity: 1;
}
