.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  max-width: 700px;
  width: 90%;
  padding: 50px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: popupFade 0.3s ease;
}

.popup-content {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.popup-content a {
  color: #007bff;
  text-decoration: none;
}

.popup-content a:hover {
  text-decoration: underline;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile finomhangolás */
@media (max-width: 480px) {
  .popup-box {
    padding: 18px;
  }

  .popup-content {
    font-size: 13px;
  }
}