
#modern-exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-wrapper {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
}

.popup-logo {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.popup-content h2 {
  margin-top: 70px;
  margin-bottom: 10px;
}

.popup-content p {
  margin-bottom: 20px;
}

.button-wrapper {
  position: relative;
  display: inline-block;
}

.popup-button {
  display: inline-block;
  color: black;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.telegram-badge {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 2;
  object-fit: contain;
}
