.success-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 36, 0.55);
  backdrop-filter: blur(4px);
}

.success-popup-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 32px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.success-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F1F4F8;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.success-popup-close:hover {
  background: #E4EAF1;
  transform: rotate(90deg);
}

.success-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.12);
  color: #27ae60;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-popup-card h3 {
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.success-popup-card p {
  font-size: 14.5px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-popup-btn {
  width: 100%;
  justify-content: center;
}
