:root.theme-type01 {
  --pointColor: #ff51b7;
  --backgroundColor: #ffecf6;
}
:root.theme-type02 {
  --pointColor: #6530fa;
  --backgroundColor: #f3efff;
}
:root.theme-type03 {
  --pointColor: #1532fc;
  --backgroundColor: #fff;
}
:root.theme-type04 {
  /* =========================================
     [GRN Pastel Harmonious Color Palette]
     - 부드럽고 감성적인 파스텔 로즈 핑크 & 세이지 민트
     ========================================= */

  /* Primary Pastel Pink (로즈 블러쉬 / 코랄 핑크) */
  --pastelPink: #ff758f;
  --pastelPinkHover: #ff5d7d;
  --pastelPinkDark: #e05374;
  --pastelPinkLight: #ff9cb0;
  --pastelPinkPale: #fff0f4;
  --pastelPinkGhost: #fff8fa;
  --pastelPinkBorder: #fcd5e0;
  --pastelPinkShadow: rgba(255, 117, 143, 0.25);

  --pointColor: var(--pastelPink);
  --pointColorLight: #ff9cb0;
  --pointColorDark: var(--pastelPinkDark);
  --backgroundColor: #fff0f4;
  --pointBgColor: #ffe4ec;

  /* Secondary Pastel Mint (세이지 민트 / 멜로우 그린) */
  --pastelMint: #48bb78;
  --pastelMintDark: #2b7a4b;
  --pastelMintLight: #70d49b;
  --pastelMintPale: #eefbf3;
  --pastelMintBorder: #c5ebd4;
  --pastelMintShadow: rgba(72, 187, 120, 0.2);

  --subColor: var(--pastelMint);
  --subColorText: var(--pastelMintDark);
  --subBackgroundColor: #f2fbf6;
  --subBgColor: #e4f7eb;

  /* Surface & Background */
  --bgGradient: linear-gradient(180deg, #fff3f6 0%, #fdf8fb 40%, #f4fbf7 100%);
  --cardBg: #ffffff;
  --cardBorder: #f3e5ec;
  --cardShadow: 0 8px 24px rgba(220, 130, 160, 0.08);
  --cardShadowActive: 0 10px 28px rgba(255, 117, 143, 0.22);

  /* Typography */
  --textMain: #2c3038;
  --textSub: #6b7280;
  --textMuted: #9ca3af;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
}

html,
body {
  height: 100%;
  background-color: #f7f5f7;
}

body {
  color: #2c3038;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

/* media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

/* form */
input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
}
button {
  border: 0;
  background: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--pastelPink);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
.displaynone {
  display: none !important;
}

/* Layout */
#wrap {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 480px) {
  #wrap {
    max-width: 30rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  }
}

/* =========================================
   [theme-type04 : GRN 파스텔 인트로 화면]
   ========================================= */
.type04-intro {
  position: relative;
  background: linear-gradient(180deg, #fff3f6 0%, #ffffff 40%, #f4fbf7 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 10px 0;
}

.type04-intro::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 117, 143, 0.18) 0%, rgba(255, 117, 143, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
}

.type04-intro::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(72, 187, 120, 0.16) 0%, rgba(72, 187, 120, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
}

.type04-intro .intro-header {
  padding: 36px 20px 10px;
  text-align: center;
}

.type04-intro .intro-grn-logo {
  max-width: 130px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
}

.type04-intro .intro-body {
  padding: 10px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.type04-intro .intro-badge-wrap {
  text-align: center;
  margin-bottom: 12px;
}

.type04-intro .intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pastelMintDark);
  background: var(--pastelMintPale);
  border: 1px solid var(--pastelMintBorder);
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.1);
}

.type04-intro .intro-main-title {
  font-size: 27px;
  font-weight: 800;
  color: var(--textMain);
  line-height: 1.35;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}

.type04-intro .intro-main-title .point-pink {
  background: linear-gradient(135deg, #ff758f 0%, #ff5d7d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.type04-intro .intro-sub-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--textSub);
  line-height: 1.55;
  margin-bottom: 24px;
}

.type04-intro .intro-sub-desc strong {
  font-weight: 700;
  color: var(--textMain);
}

/* GRN 시그니처 비주얼 카드 */
.intro-visual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.grn-pill-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1.5px solid var(--cardBorder);
  box-shadow: var(--cardShadow);
  text-align: left;
  transition: transform 0.2s ease;
}

.grn-pill-card.pink-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff6f8 100%);
  border-color: #ffdce5;
}

.grn-pill-card.green-card {
  background: linear-gradient(135deg, #ffffff 0%, #f3faf6 100%);
  border-color: #c9eed7;
}

.grn-pill-card .pill-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.grn-pill-card .pill-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.pink-card .pill-tag {
  color: var(--pastelPinkDark);
  background: var(--pastelPinkPale);
}

.green-card .pill-tag {
  color: var(--pastelMintDark);
  background: var(--pastelMintPale);
}

.grn-pill-card .pill-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--textMain);
  line-height: 1.2;
}

.grn-pill-card .pill-desc {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--textSub);
  margin-top: 2px;
}

/* 하단 버튼 */
.type04-intro .intro-footer {
  padding: 10px 20px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.intro-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 58px;
  border-radius: 29px;
  background: linear-gradient(135deg, #ff758f 0%, #ff5d7d 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  box-shadow: 0 10px 26px var(--pastelPinkShadow);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-start-btn .btn-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.intro-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 117, 143, 0.4);
  background: linear-gradient(135deg, #ff6582 0%, #ff5274 100%);
}

.intro-start-btn:hover .btn-arrow {
  transform: translateX(4px) rotate(45deg);
}

.intro-start-btn:active {
  transform: scale(0.98);
}

.intro-guide-text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--textMuted);
}

/* =========================================
   [theme-type04 : 설문 화면 & 카드형 선택지]
   ========================================= */
html.theme-type04 .step-contents {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bgGradient);
}

html.theme-type04 .step-common {
  padding: 32px 24px 16px;
  text-align: center;
}

.step-header-info {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--pastelPinkDark);
  background: var(--pastelPinkPale);
  border: 1px solid var(--pastelPinkBorder);
  box-shadow: 0 2px 8px rgba(255, 117, 143, 0.12);
}

.step-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pastelPink);
  animation: pulseDot 1.5s infinite;
}

.type04-dot-progress {
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(72, 187, 120, 0.15));
}

.type04-dot-progress img {
  width: 100%;
}

.step-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-form div[class^="step"] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-form div[class^="step"].active {
  position: relative;
  z-index: 1;
  display: block;
  visibility: visible;
  opacity: 1;
}

.step-form .qu_row_align {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 130px);
  justify-content: space-between;
  padding-bottom: 24px;
}

html.theme-type04 .step-form .qu_ar {
  padding: 0 20px;
}

html.theme-type04 .step-form .question {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: none;
  text-align: left;
  margin-bottom: 20px;
  color: var(--textMain);
  line-height: 1.35;
}

.q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff758f 0%, #ff8fa3 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 4px 10px var(--pastelPinkShadow);
  flex-shrink: 0;
}

.q-txt {
  flex: 1;
  min-width: 160px;
}

.q-multi-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--pastelMintDark);
  background: var(--pastelMintPale);
  border: 1px solid var(--pastelMintBorder);
  border-radius: 12px;
  padding: 3px 8px;
  white-space: nowrap;
}

/* 카드형 선택지 (DataQ) */
.dataQ {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ans-label {
  position: relative;
  display: flex !important;
  align-items: center;
  padding: 16px 18px !important;
  border-radius: 16px;
  background: #ffffff;
  border: 1.5px solid var(--cardBorder);
  box-shadow: var(--cardShadow);
  cursor: pointer;
  margin-bottom: 0 !important;
  user-select: none;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--textMain);
  -webkit-tap-highlight-color: transparent;
}

.ans-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ans-label .chk-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #e0d7dd;
  background: #faf8fa;
  margin-right: 12px;
  transition: all 0.22s ease;
}

.ans-label .chk-icon::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ans-label .ans-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--textMain);
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.ans-label:hover {
  border-color: #ffb8c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 117, 143, 0.14);
}

/* Checked 상태 */
.ans-label:has(input[type="checkbox"]:checked),
.ans-label.is-checked {
  background: var(--pastelPinkGhost);
  border-color: var(--pastelPink);
  box-shadow: var(--cardShadowActive);
  transform: translateY(-2px);
}

.ans-label:has(input[type="checkbox"]:checked) .chk-icon,
.ans-label.is-checked .chk-icon {
  background: linear-gradient(135deg, #ff758f 0%, #ff8fa3 100%);
  border-color: var(--pastelPink);
  box-shadow: 0 2px 8px var(--pastelPinkShadow);
}

.ans-label:has(input[type="checkbox"]:checked) .chk-icon::after,
.ans-label.is-checked .chk-icon::after {
  transform: translate(-50%, -60%) rotate(45deg) scale(1);
}

.ans-label:has(input[type="checkbox"]:checked) .ans-text,
.ans-label.is-checked .ans-text {
  color: var(--pastelPinkDark);
  font-weight: 700;
}

/* 다음 버튼 */
.next {
  margin-top: 24px;
  margin-bottom: 16px;
  padding: 0 20px;
  text-align: center;
}

.next .next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff758f 0%, #ff8fa3 100%);
  box-shadow: 0 10px 24px var(--pastelPinkShadow);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.next .next-btn i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.next .next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 117, 143, 0.38);
  background: linear-gradient(135deg, #ff6582 0%, #ff859d 100%);
}

.next .next-btn:hover i {
  transform: translateX(3px) rotate(45deg);
}

.next .next-btn:active {
  transform: scale(0.98);
}

.next .next-btn.is-final {
  background: linear-gradient(135deg, #ff758f 0%, #ff8fa3 40%, #52b788 100%);
  box-shadow: 0 10px 24px rgba(255, 117, 143, 0.3);
}

/* =========================================
   [theme-type04 : 로딩 화면]
   ========================================= */
html.theme-type04 .loading {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: linear-gradient(180deg, #fff0f4 0%, #f4faf7 100%);
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.loading-spinner-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-pastel-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid #fce3ec;
  border-top-color: var(--pastelPink);
  border-right-color: var(--pastelMint);
  animation: ringRotate 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-img {
  width: 44px;
  height: 44px;
  opacity: 0.85;
}

html.theme-type04 .loading .loading-main-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--textMain);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

html.theme-type04 .loading .loading-sub-text {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--pastelMintDark);
  background: var(--pastelMintPale);
  border: 1px solid var(--pastelMintBorder);
  padding: 6px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(72, 187, 120, 0.1);
}

/* =========================================
   [theme-type04 : 결과 화면]
   ========================================= */
html.theme-type04 .result-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bgGradient);
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
}

.result-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 22px;
  box-shadow: 0 16px 40px rgba(220, 130, 160, 0.12);
  border: 1.5px solid var(--pastelPinkBorder);
  text-align: center;
  animation: fadeInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-header {
  margin-bottom: 20px;
}

.result-complete-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pastelPinkDark);
  background: var(--pastelPinkPale);
  border: 1px solid var(--pastelPinkBorder);
  margin-bottom: 10px;
}

.result-header .title {
  font-size: 21px;
  font-weight: 800;
  color: var(--textMain);
  letter-spacing: -0.5px;
}

.result-card .mid-contents {
  padding: 0;
  margin-bottom: 20px;
}

.result-type-tag {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--textSub);
}

.result-card p.txt {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--textMain);
  word-break: keep-all;
  margin: 0;
  text-align: left;
  background: var(--pastelPinkGhost);
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid var(--pastelPinkBorder);
}

.result-card span.pt {
  display: inline-block;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ff758f 0%, #ff8fa3 100%);
  padding: 3px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 10px var(--pastelPinkShadow);
  margin: 0 2px;
}

.result-card span.bold {
  color: var(--pastelMintDark);
  background: var(--pastelMintPale);
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}

.result-card .bot-info {
  width: 100%;
}

.bot-info-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pastelMintPale);
  border: 1.5px solid var(--pastelMintBorder);
  border-radius: 18px;
  padding: 14px 16px;
  text-align: left;
}

.bot-info-inner .info-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.bot-info-inner p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pastelMintDark);
  margin: 0;
}

.bot-info-inner strong {
  font-weight: 700;
  color: #1a6338;
}

/* 결과 화면 카카오톡 신청 버튼 */
.result-action-wrap {
  margin-top: 18px;
  width: 100%;
}

.kakao-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 58px;
  border-radius: 29px;
  background: #fee500;
  color: #191919;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.4px;
  box-shadow: 0 8px 24px rgba(254, 229, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #fada0a;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.kakao-apply-btn .kakao-icon {
  font-size: 20px;
  line-height: 1;
}

.kakao-apply-btn .btn-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #191919;
  border-right: 2px solid #191919;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.kakao-apply-btn:hover {
  background: #fdd800;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(254, 229, 0, 0.55);
}

.kakao-apply-btn:hover .btn-arrow {
  transform: translateX(4px) rotate(45deg);
}

.kakao-apply-btn:active {
  transform: scale(0.98);
}

.btn-sub-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--textMuted);
}

/* =========================================
   [실시간 신청자 알림 토스트 : Frosted Glass Pastel]
   ========================================= */
#floatig {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 150%);
  visibility: hidden;
  width: calc(100% - 32px);
  max-width: 420px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(255, 117, 143, 0.18);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s;
}

#floatig.active {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48bb78;
  box-shadow: 0 0 8px #48bb78;
  flex-shrink: 0;
  animation: pulseDot 1.5s infinite;
}

.toast-content p {
  font-size: 13px;
  font-weight: 500;
  color: var(--textMain);
  margin: 0;
  line-height: 1.35;
}

.toast-name {
  font-weight: 700;
  color: var(--pastelPinkDark);
}

/* =========================================
   [애니메이션 키프레임]
   ========================================= */
@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stampScaleDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
    filter: blur(0);
  }
  58% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.1);
  }
  82% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

@keyframes stampMicroBlur {
  0%, 40%, 100% { filter: blur(0); }
  65% { filter: blur(0.5px); }
}

@keyframes stampMicroShake {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  30% { transform: translate(-50.2%, -49.7%) scale(1); }
  65% { transform: translate(-49.7%, -50.2%) scale(1); }
}
