/* Custom Notification Popup */
.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notification-overlay.show {
  opacity: 1;
  visibility: visible;
}

.notification-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.notification-overlay.show .notification-popup {
  transform: scale(1);
}

.notification-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.notification-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-900);
  text-align: center;
  margin-bottom: 0.75rem;
}

.notification-message {
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.notification-button {
  width: 100%;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.notification-button:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .notification-popup {
    padding: 1.5rem;
  }

  .notification-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .notification-title {
    font-size: 1.25rem;
  }
}
