.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999 !important;
  animation: fadeInOverlay 0.3s ease forwards;
}

.popup-card {
  background: #f8f9fa;
  width: 90%;
  max-width: 450px;
  padding: 40px 30px;
  border-radius: 35px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  font-family: "Poppins", sans-serif;
}

.popup-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #0000ff;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.popup-close-btn:hover {
  transform: scale(1.1);
}

.popup-close-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  stroke: white;
  stroke-width: 3;
}

.popup-icon {
  margin: 0 auto 20px auto;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.popup-message {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .popup-card {
    padding: 30px 20px;
    border-radius: 25px;
  }
  .popup-message {
    font-size: 1.1rem;
  }
  .popup-icon {
    width: 60px;
    height: 60px;
  }
  .popup-close-btn {
    width: 35px;
    height: 35px;
  }
}
