/* Onboarding Welcome Modal — 오션 그라데이션 카드 + 흰색 강조 (민트 → 흰색) */

.onb-welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.onb-welcome-modal--visible {
  opacity: 1;
  pointer-events: auto;
}

.onb-welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.onb-welcome-modal__card {
  position: relative;
  width: 92%;
  max-width: 460px;
  padding: 40px 32px 28px;
  background: linear-gradient(165deg, #0F4C5C 0%, #2C5CA3 100%);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.25s ease;
}
.onb-welcome-modal--visible .onb-welcome-modal__card {
  transform: translateY(0) scale(1);
}

.onb-welcome-modal__x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.onb-welcome-modal__x:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.onb-welcome-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
/* 이름 강조 — 민트(#7FDBCB) → 흰색 (더 진한 weight로 차별) */
.onb-welcome-modal__name {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.onb-welcome-modal__msg {
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
}

.onb-welcome-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* CTA — 흰색 배경 + 오션 진청록 텍스트 */
.onb-welcome-modal__cta {
  width: 100%;
  padding: 13px 20px;
  background: #ffffff;
  color: #0F4C5C;
  border: none;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.onb-welcome-modal__cta:hover {
  background: #f5f9fc;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
}
.onb-welcome-modal__cta:active {
  transform: translateY(0);
}

.onb-welcome-modal__later {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.15s;
}
.onb-welcome-modal__later:hover {
  color: #ffffff;
  text-decoration: underline;
}

.onb-welcome-modal__hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  letter-spacing: 0.01em;
}
