/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Darker background */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .modal.show {
    opacity: 1;
    visibility: visible;
  }  
  
  .modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  
  .modal.show .modal-content {
    transform: scale(1);
  }

  .close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .close-modal:hover {
    transform: rotate(90deg);
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }