/* ═══════════════════════════════════════════════════════════════════
   원하타로 reading 무료 체험 모달 스타일
   ═══════════════════════════════════════════════════════════════════ */

.wt-trial-modal-bg{
  position:fixed;
  inset:0;
  background:rgba(7,9,15,0.78);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  z-index:9000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
.wt-trial-modal-bg.open{
  opacity:1;
  pointer-events:auto;
}

.wt-trial-modal-sheet{
  position:relative;
  width:100%;
  max-width:440px;
  background:linear-gradient(180deg, var(--navy3,#111628), var(--navy,#07090f));
  border:1px solid rgba(201,165,92,0.32);
  border-radius:18px;
  box-shadow:0 32px 80px -24px rgba(0,0,0,0.7);
  padding:32px 28px 26px;
  transform:translateY(20px) scale(0.98);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  max-height:calc(100vh - 40px);
  max-height:calc(100dvh - 40px);
  overflow-y:auto;
}
.wt-trial-modal-bg.open .wt-trial-modal-sheet{
  transform:translateY(0) scale(1);
}

.wt-trial-close{
  position:absolute;
  top:16px;
  right:16px;
  width:34px;
  height:34px;
  background:transparent;
  border:1px solid rgba(201,165,92,0.22);
  color:var(--gold,#c9a55c);
  border-radius:50%;
  cursor:pointer;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .15s;
}
.wt-trial-close:hover{
  background:rgba(201,165,92,0.1);
  color:var(--gold-lt,#dfc07e);
}

.wt-trial-label{
  font-family:var(--font-en,'Outfit',sans-serif);
  font-size:10px;
  font-weight:500;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--gold-dk,#917540);
  margin:0 0 10px;
}
.wt-trial-title{
  font-family:'Cormorant Garamond','Noto Serif KR',serif;
  font-size:24px;
  font-weight:600;
  color:var(--gold-lt,#dfc07e);
  letter-spacing:-0.02em;
  line-height:1.3;
  margin:0 0 24px;
}
.wt-trial-highlight{
  display:inline-block;
  background:linear-gradient(180deg, transparent 0%, transparent 55%, rgba(201,165,92,0.32) 55%, rgba(201,165,92,0.32) 92%, transparent 92%);
  background-size:100% 100%;
  background-repeat:no-repeat;
  padding:0 4px;
  color:var(--white,#f5f0e8);
  font-weight:700;
}

.wt-trial-benefits{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:24px;
  padding:18px 20px;
  background:rgba(201,165,92,0.05);
  border:1px solid rgba(201,165,92,0.14);
  border-radius:12px;
}
.wt-trial-benefit{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:13px;
  line-height:1.6;
  color:var(--white,#f5f0e8);
  letter-spacing:-0.01em;
}
.wt-trial-benefit b{
  font-weight:600;
  color:var(--white,#f5f0e8);
}
.wt-trial-bullet{
  color:var(--gold-lt,#dfc07e);
  font-size:13px;
  flex-shrink:0;
  margin-top:1px;
}
.wt-trial-sub{
  display:block;
  font-size:11.5px;
  color:var(--muted,#8a8a95);
  margin-top:2px;
  letter-spacing:-0.01em;
}

.wt-trial-info{
  margin-bottom:20px;
  padding:16px 18px;
  background:rgba(201,165,92,0.05);
  border:1px solid rgba(201,165,92,0.14);
  border-radius:10px;
}
.wt-trial-info-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  padding:6px 0;
  color:var(--body,#c8c8d0);
  letter-spacing:-0.01em;
}
.wt-trial-info-row > span:last-child{
  color:var(--gold-lt,#dfc07e);
  font-weight:500;
}

.wt-trial-warn{
  font-size:12px;
  line-height:1.65;
  color:var(--muted,#8a8a95);
  margin:0 0 18px;
  letter-spacing:-0.01em;
  padding:0 4px;
}

.wt-trial-launch-card{
  margin-bottom:24px;
  padding:20px 22px;
  background:linear-gradient(135deg, rgba(201,165,92,0.08), rgba(201,165,92,0.03));
  border:1px solid rgba(201,165,92,0.22);
  border-radius:12px;
  text-align:center;
}
.wt-trial-launch-title{
  font-family:'Cormorant Garamond',serif;
  font-size:16px;
  font-weight:600;
  color:var(--gold-lt,#dfc07e);
  margin:0 0 12px;
  letter-spacing:.02em;
}
.wt-trial-launch-desc{
  font-size:13px;
  line-height:1.7;
  color:var(--white,#f5f0e8);
  margin:0;
  letter-spacing:-0.01em;
}
.wt-trial-launch-desc b{
  color:var(--gold-lt,#dfc07e);
  font-weight:600;
}

.wt-trial-cta{
  width:100%;
  padding:15px 20px;
  background:var(--gold,#c9a55c);
  border:1px solid var(--gold,#c9a55c);
  border-radius:10px;
  color:var(--navy,#07090f);
  font-family:'Pretendard',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:-0.02em;
  cursor:pointer;
  transition:all .2s;
}
.wt-trial-cta:hover:not(:disabled){
  background:var(--gold-lt,#dfc07e);
  border-color:var(--gold-lt,#dfc07e);
}
.wt-trial-cta:disabled{
  opacity:0.6;
  cursor:not-allowed;
}

.wt-trial-ghost{
  width:100%;
  margin-top:8px;
  padding:13px 20px;
  background:transparent;
  border:1px solid rgba(201,165,92,0.22);
  border-radius:10px;
  color:var(--body,#c8c8d0);
  font-family:'Pretendard',sans-serif;
  font-size:13px;
  font-weight:500;
  letter-spacing:-0.02em;
  cursor:pointer;
  transition:all .2s;
}
.wt-trial-ghost:hover{
  background:rgba(201,165,92,0.06);
  color:var(--white,#f5f0e8);
}

.wt-trial-fineprint{
  font-size:11px;
  text-align:center;
  color:var(--muted,#8a8a95);
  margin:14px 0 0;
  letter-spacing:-0.01em;
}

@media(max-width:480px){
  .wt-trial-modal-sheet{
    padding:28px 22px 22px;
    border-radius:16px;
  }
  .wt-trial-title{
    font-size:21px;
  }
}
/* ═══ 리딩권 구매 시트 ═══ */
.wt-quota-price-line{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:10px;
  margin:2px 0 22px;
}
.wt-quota-price{
  font-family:'Noto Serif KR',serif;
  font-size:28px;
  font-weight:700;
  color:var(--gold-lt,#dfc07e);
  letter-spacing:-0.01em;
}
.wt-quota-price-unit{
  font-size:12px;
  color:var(--muted,#8a8a95);
  letter-spacing:-0.01em;
}
.wt-quota-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:16px;
  text-align:left;
}
.wt-quota-field{display:block;}
.wt-quota-field span{
  display:block;
  margin:0 2px 6px;
  font-size:11.5px;
  font-weight:500;
  color:var(--ivory,#c8c8d0);
  letter-spacing:-0.01em;
}
.wt-quota-field em{
  font-style:normal;
  font-size:10.5px;
  color:var(--muted,#8a8a95);
  margin-left:4px;
}
.wt-quota-field input{
  width:100%;
  box-sizing:border-box;
  padding:12px 14px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(201,165,92,0.22);
  border-radius:10px;
  color:var(--white,#f5f0e8);
  font-size:14px;
  letter-spacing:-0.01em;
  outline:none;
  transition:border-color .2s;
}
.wt-quota-field input::placeholder{color:var(--muted,#8a8a95);}
.wt-quota-field input:focus{border-color:rgba(201,165,92,0.5);}
.wt-quota-buy-note{
  margin:0 0 16px;
  font-size:12px;
  line-height:1.75;
  color:var(--muted,#8a8a95);
  letter-spacing:-0.01em;
}
.wt-quota-buy-note b{color:var(--gold-lt,#dfc07e);font-weight:600;}

/* 입금 안내 박스는 /pass/ (css/pass.css) 로 이관됨 */


/* 비회원 모달 하단 구매 텍스트 링크 */
.wt-quota-buy-textlink{
  display:block;
  width:100%;
  margin:10px 0 0;
  padding:6px 0;
  background:none;
  border:none;
  color:var(--gold,#c9a55c);
  font-size:12px;
  letter-spacing:-0.01em;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:3px;
}

/* 리딩권 사용 토스트 */
.wt-credit-toast{
  position:fixed;
  left:50%;
  bottom:28px;
  transform:translateX(-50%) translateY(12px);
  padding:11px 20px;
  background:rgba(13,18,32,0.96);
  border:1px solid rgba(201,165,92,0.35);
  border-radius:30px;
  color:var(--gold-lt,#dfc07e);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:-0.01em;
  opacity:0;
  transition:opacity .35s ease,transform .35s ease;
  z-index:10000;
  pointer-events:none;
  white-space:nowrap;
}
.wt-credit-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}


/* ═══════════════════════════════════════════════════════════════════
   잔여 무료 리딩 카운터 + 결과 화면 리딩권 유도 (기본형)
   ═══════════════════════════════════════════════════════════════════ */

/* 질문 화면: 카드 선택 버튼 아래 한 줄 */
.wt-ask-meter{
  margin:14px auto 0;
  text-align:center;
  font-size:12.5px;
  letter-spacing:-0.01em;
  color:var(--muted,#8a8a95);
  line-height:1.6;
}
.wt-ask-meter b{
  color:var(--gold-lt,#d4b56d);
  font-weight:600;
}
.wt-ask-meter.wt-meter-last{
  color:var(--gold-lt,#d4b56d);
}
.wt-meter-buy{
  background:none;
  border:none;
  padding:0;
  font:inherit;
  color:var(--gold-lt,#d4b56d);
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
}
.wt-meter-buy:hover{color:var(--white,#f5f0e8);}

/* 결과 화면 하단 */
.wt-result-meter{
  margin:26px auto 0;
  max-width:420px;
}
.wt-rmeter-line{
  margin:0;
  text-align:center;
  font-size:12.5px;
  letter-spacing:-0.01em;
  color:var(--muted,#8a8a95);
}
.wt-rmeter-line b{
  color:var(--gold-lt,#d4b56d);
  font-weight:600;
}
.wt-rmeter-line.wt-meter-last{color:var(--gold-lt,#d4b56d);}
/* 잔여 라인이 미터 맨 아래(다시 뽑기 바로 위)로 오는 배치 */
.wt-result-meter > .pass-ticket{ margin-bottom:14px; }
.wt-result-ticket{ margin-top:26px; }
.wt-result-ticket > .pass-ticket{ margin-bottom:0; }
.wt-result-meter > .wt-rmeter-passlink{ display:flex; width:fit-content; margin:0 auto 12px; }
.wt-result-ticket > .wt-rmeter-passlink{ margin:0 auto; }

/* 소진 시 유도 카드 (뉴트럴 글래스 + 골드 헤어라인 보더) */
.wt-rmeter-card{
  padding:26px 22px 24px;
  background:rgba(255,255,255,0.035);
  border:1px solid rgba(232,201,124,0.22);
  border-radius:18px;
  text-align:center;
  backdrop-filter:blur(14px) saturate(120%);
  -webkit-backdrop-filter:blur(14px) saturate(120%);
  box-shadow:0 12px 34px rgba(0,0,0,0.35);
  animation:wt-rmeter-in .55s cubic-bezier(.25,.7,.35,1) both;
}
@keyframes wt-rmeter-in{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}
.wt-rmeter-title{
  margin:0 0 8px;
  font-family:'Noto Serif KR',serif;
  font-size:15.5px;
  font-weight:700;
  color:var(--white,#f5f0e8);
  letter-spacing:-0.01em;
}
.wt-rmeter-desc{
  margin:0 0 18px;
  font-size:12.5px;
  line-height:1.7;
  color:#b9b9c2;
}
/* 미묘 그라데이션 버튼 (밝기 차 6% 이내) + 리프트/프레스 모션 */
.wt-rmeter-btn{
  display:inline-block;
  padding:13px 24px;
  background:linear-gradient(180deg,#cfab61,#c39f56);
  border:none;
  border-radius:11px;
  color:#14110a;
  font-family:inherit;
  font-size:13.5px;
  font-weight:700;
  letter-spacing:-0.01em;
  cursor:pointer;
  box-shadow:0 1px 2px rgba(0,0,0,0.3), 0 6px 18px rgba(201,165,92,0.18);
  transition:transform .14s cubic-bezier(.3,.7,.4,1), box-shadow .14s, filter .14s;
  animation:wt-btn-breathe 6s ease-in-out 1.2s infinite;
}
@keyframes wt-btn-breathe{
  0%,100%{box-shadow:0 1px 2px rgba(0,0,0,0.3), 0 6px 18px rgba(201,165,92,0.18);}
  50%{box-shadow:0 1px 2px rgba(0,0,0,0.3), 0 8px 24px rgba(201,165,92,0.3);}
}
.wt-rmeter-btn:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
  box-shadow:0 2px 3px rgba(0,0,0,0.3), 0 10px 26px rgba(201,165,92,0.28);
  animation:none;
}
.wt-rmeter-btn:active{
  transform:translateY(0.5px);
  filter:brightness(0.97);
  box-shadow:0 1px 2px rgba(0,0,0,0.35), 0 3px 10px rgba(201,165,92,0.14);
}

