/* Popup overlay */
/* Popup overlay alap állapot */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
}

/* Popup box */
.popup-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Amikor eltűnik */
.popup-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.popup-overlay.hide .popup-box {
  transform: translateY(-100px);
  opacity: 0;
}



.continue-btn {
    font-family: Abril Fatface, cursive;
  background-color: #26648e;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}