/* ============================================
   Notify Popup - 알림 팝업
   네이밍: notify_element.is_state (언더스코어)
   ============================================ */

.notify_overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: notify_fade_in 200ms var(--ease-default);
}

.notify_popup {
  background-color: var(--c-white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 22rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: notify_slide_up 250ms var(--ease-default);
}

.dark .notify_popup {
  background-color: var(--c-gray-100);
}

.notify_icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
}

.notify_icon svg {
  width: 100%;
  height: 100%;
}

.notify_title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-gray-900);
  margin-bottom: 0.5rem;
}

.notify_message {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--c-gray-500);
  margin-bottom: 1.5rem;
}

.dark .notify_message {
  color: var(--c-gray-700);
}

.notify_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-white);
  background-color: var(--c-gray-800);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: background-color var(--duration-fast) var(--ease-default);
}

.notify_btn:hover {
  background-color: var(--c-gray-700);
}

.dark .notify_btn {
  background-color: var(--c-gray-600);
}

.dark .notify_btn:hover {
  background-color: var(--c-gray-500);
}

/* ── Animations ────────────────────────────── */

@keyframes notify_fade_in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes notify_slide_up {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
