.PopupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.PopupCard {
  width: 90%;
  max-width: 450px;
  background: rgba(20,20,20,0.75);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.PopupCard h3 {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
}

.PopupCard p {
  opacity: 0.85;
  margin-bottom: 1.8rem;
}

.PopupButton {
  padding: 0.6rem 1.4rem;
  border-radius: 14px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  font-size: 1rem;
}

.PopupButton:hover {
  background: var(--primary);
  color: #000;
}
