@import url('https://fonts.googleapis.com/css2?family=BBH+Bartle&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Stack+Sans+Text:wght@200..700&display=swap');

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  background: #010101;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.162);
  position: relative;
  animation: popupFade 0.3s ease;
  font-family: "Rethink Sans", sans-serif;
}

.popup h2 {
  font-family: "Rethink Sans", sans-serif;
  margin-bottom: 1rem;
}

.popup p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-family: "Rethink Sans", sans-serif;
}

.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: "Rethink Sans", sans-serif;
}

.popup button {
  padding: 0.6rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.popup button:hover {
  opacity: 0.9;
}

/* Types */
.popup.info h2    { color: #0dcaf0; }
.popup.warning h2 { color: #ffc107; }
.popup.error h2  { color: #ff6b6b; }
.popup.success h2 { color: #06d6a0; }

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

