#geo-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
  }
  
  .geo-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  
  .geo-popup-content {
    padding: 50px 20px 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    background: #fff;
    max-width: 526px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 100000;
    color: #333;
    line-height: 24px;

    @media screen and (max-width: 599px) {
      max-width: 90vw;
    }
  }

  .geo-popup-text {
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    line-height: 24px;
  }

  .geo-popup-text a {
    color: #ae2573;
  }
  
  .geo-popup-close:not(.default-btn) {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    font-size: 35px;
  }
  
  .geo-popup-close:not(.default-btn):hover {
    color: #000;
  }

  .geo-popup-close.default-btn {
    margin: 24px 0 0;
    background: #ae2573;
    border: 1px solid #ae2573;
    color: #fff;
    border-radius: 6px;
    padding: 12px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 16px;
  }