.eft-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 98, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(6px);
  padding: 20px;
}

.eft-popup-box {
  width: min(520px, 92%);
  background: #1E2D62;
  color: #fff;
  border-radius: 18px;
  padding: 36px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.5);
  animation: eftPopupIn 0.35s ease;
}

.eft-popup-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #ffffff60 !important;
}

.eft-popup-box p {
  font-size: 16.5px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 24px;
}

.eft-popup-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  background: #DF326F;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(223,50,111,0.28);
  transition: all 0.3s ease;
}

.eft-popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(223,50,111,0.35);
  color: #ffffff80 !important;	
}

.eft-popup-close {
  position: absolute;
  top: 5px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  opacity: 0.6;
}

.eft-popup-close:hover {
  opacity: 1;
}

@keyframes eftPopupIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
