@charset "UTF-8";
/* ============================================
   歡迎導覽彈窗樣式
   沿用專案色彩變數（--nm-*），若單獨引入此檔會套用備援色值
   ============================================ */

.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  animation: nm-fade-in 0.25s ease;
}
.welcome-overlay.closing {
  animation: nm-fade-out 0.2s ease forwards;
}

@keyframes nm-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes nm-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.welcome-card {
  width: 100%;
  max-width: 360px;
  background: var(--nm-paper, #f4ead3);
  border-radius: 18px;
  padding: 26px 24px 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  text-align: left;
  animation: nm-pop-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes nm-pop-in {
  from { transform: scale(0.94) translateY(6px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.welcome-title {
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--nm-ink, #2a2016);
  margin: 0 0 4px;
}

.welcome-subtitle {
  font-family: "Work Sans", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 12.5px;
  color: var(--nm-ink-soft, #6b5d47);
  margin: 0 0 16px;
}

.welcome-points {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.welcome-points li {
  font-family: "Work Sans", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--nm-ink, #2a2016);
  padding-left: 20px;
  position: relative;
}

.welcome-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nm-lantern, #d6472e);
}

.welcome-close-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: var(--nm-lantern, #d6472e);
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}
.welcome-close-btn:hover {
  background: var(--nm-lantern-deep, #9c2f1b);
}