 /* Existing styles remain unchanged */

 .popup-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .popup-content {
    background-color: #1f1f1f;
    color: white;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 60%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
  }

  .close-btn {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }

  .close-btn:hover,
  .close-btn:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
  }

  .popup-close-btn {
    background-color: #eb2d1c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
  }

  .popup-close-btn:hover {
    background-color: #d42518;
  }


  @media screen and (max-width: 650px) {
    
  }