/* Modal background */
.intro-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Centered modal content */
.intro-modal-content {
  position: relative;
  margin: 5% auto;
  width: 80%;
  max-width: 800px;
}

/* Video styling */
.intro-modal-content video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Close button styling */
#closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}


.video-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.video-btn:hover {
  background: rgba(0,0,0,0.9);
}

