/* 내 폰 페르소나 검사 — 스타일 전체
   출처: digital-detox-test-v13.html 을 4개 파일로 분리한 것 중 스타일.
   index.html · styles.css · content-data.js · app.js 순으로 로드됩니다. */
/* ── 1. 기본 레이아웃·컴포넌트 ── */
  :root {
    /* === 디지털 번아웃 테스트 — 웜 크림 베이스 + 코럴 액센트 (OG 카드 아트 디렉션) === */
    --accent: #E07A5F;
    --accent-soft: #F5DDD2;
    --accent-deep: #C4664B;
    --bg: #FAF6F0;
    --bg-soft: #F0E8DC;
    --card: #FFFFFF;
    --text: #2A2622;
    --text-soft: #6B6258;
    --text-light: #A39B91;
    --dark: #2D2520;
    --dark-mid: #3D332C;
    --yellow: #FFD93D;
    --shadow: 0 4px 24px rgba(42,38,34,0.06);
    --shadow-strong: 0 8px 24px rgba(224,122,95,0.25);
    --font-core: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Nunito Sans", "Segoe UI", Arial, sans-serif;
    --font-numeric: "Nunito Sans", "Pretendard Variable", Pretendard, sans-serif;
    /* 유형 컬러 — OG 카드와 동일한 감성 그라디언트 */
    --t-ITA: linear-gradient(135deg, #E08068, #C46145);
    --t-ITC: linear-gradient(135deg, #C99B82, #B07F65);
    --t-ISA: linear-gradient(135deg, #C9A56B, #A88858);
    --t-ISC: linear-gradient(135deg, #9F82AC, #7A5F8C);
    --t-PTA: linear-gradient(135deg, #93AA93, #6E8870);
    --t-PTC: linear-gradient(135deg, #C9A88A, #B08F71);
    --t-PSA: linear-gradient(135deg, #8DA8C0, #6F8BA3);
    --t-PSC: linear-gradient(135deg, #A8A89C, #87877B);
    /* 유형 단색 — 텍스트·포인트용 */
    --tc-ITA: #C46145; --tc-ITC: #B07F65; --tc-ISA: #A88858; --tc-ISC: #7A5F8C;
    --tc-PTA: #6E8870; --tc-PTC: #B08F71; --tc-PSA: #6F8BA3; --tc-PSC: #87877B;
    /* 위험도 — 세이지(건강) → 테라코타(심각) */
    --risk-0: #788C5D; --risk-1: #9BAB7A; --risk-2: #D4A864;
    --risk-3: #D9874E; --risk-4: #C46145; --risk-5: #9B3F2C;
    }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Pretendard', 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; padding: 16px; line-height: 1.5; }
  .container { max-width: 480px; margin: 0 auto; padding-bottom: 40px; }
  .serif { font-family: var(--font-core); }

  /* === Landing === */
  .live-counter { display: inline-flex; align-items: center; gap: 8px; background: var(--card); padding: 8px 16px; border-radius: 12px; font-size: 13px; font-weight: 700; margin-bottom: 16px; box-shadow: var(--shadow); }
  .live-dot { width: 8px; height: 8px; background: var(--accent-deep); border-radius: 50%; animation: pulse 1.4s infinite; }
  @keyframes pulse { 0%,100% {opacity:1;} 50% {opacity:0.4;} }
  .brand-tag { font-size: 12px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 12px; text-align: center; }
  .h1-main { font-size: 32px; font-weight: 700; line-height: 1.25; margin-bottom: 14px; letter-spacing: -0.5px; text-align: center; }
  .h1-main .strike { color: var(--text-soft); }
  .btn-hero-mini { background: var(--accent); color: white; border: none; padding: 10px 20px; border-radius: 12px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 4px 14px rgba(224,122,95,0.35); animation: hero-pulse 2.4s ease-in-out infinite; }
  @keyframes hero-pulse { 0%,100% { transform: translateY(0); box-shadow: 0 4px 14px rgba(224,122,95,0.35); } 50% { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(224,122,95,0.45); } }
  .landing-sub { color: var(--text-soft); font-size: 15px; line-height: 1.6; margin-bottom: 20px; text-align: center; }
  .landing-sub b { color: var(--text); font-weight: 700; }
  .trust-strip { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
  .trust-pill { background: var(--card); padding: 6px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; color: var(--text-soft); box-shadow: var(--shadow); }
  .trust-pill b { color: var(--text-soft); }
  /* === 이런 적 있다면 (카드 그리드로 리디자인) === */
  .hook-card { background: transparent; padding: 0; margin-bottom: 18px; }
  .hook-title-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 0 4px; }
  .hook-title { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; color: var(--text); }
  .hook-title-pill { font-size: 10px; font-weight: 700; color: var(--text-soft); background: rgba(224,122,95,0.12); padding: 4px 10px; border-radius: 12px; letter-spacing: 0.5px; }
  .hook-grid { display: flex; flex-direction: column; gap: 8px; }
  .hook-item { background: var(--card); padding: 14px 16px; border-radius: 7px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; font-size: 14px; line-height: 1.45; font-weight: 600; color: var(--text); position: relative; transition: transform 0.2s; }
  .hook-item:hover { transform: translateX(2px); }
  .hook-item-emoji { font-size: 22px; flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--bg-soft); border-radius: 4px; }
  .hook-item-text { flex: 1; }
  .hook-item-text b { color: var(--text-soft); font-weight: 700; }
  .hook-item-check { font-size: 11px; font-weight: 700; color: var(--text-soft); opacity: 0.4; flex-shrink: 0; letter-spacing: 0.5px; }

  /* === 8유형 캐릭터 카드 (SVG 일러스트레이션) === */
  .types-preview { background: var(--card); padding: 20px 18px; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 16px; border: 2px solid rgba(224,122,95,0.18); position: relative; }
  .types-preview::before { content: ""; position: absolute; top: -1px; right: -1px; bottom: -1px; left: -1px; border-radius: 12px; background: linear-gradient(135deg, rgba(224,122,95,0.5), rgba(255,217,61,0.3), rgba(159,130,172,0.3), rgba(141,168,192,0.5)); z-index: -1; opacity: 0.4; }
  .types-preview-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; }
  .types-preview-title { font-size: 19px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 14px; }
  .types-preview-title .hl { background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; }

  /* 진단 신뢰 메타 (8유형 그리드 안) */
  .trust-meta-card { margin-top: 16px; padding: 14px 16px; background: var(--bg-soft); border-radius: 4px; border-left: 3px solid var(--accent); }
  .trust-meta-title { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 6px; }
  .trust-meta-body { font-size: 11.5px; line-height: 1.6; color: var(--text-soft); }
  .trust-meta-body b { color: var(--text); font-weight: 700; }
  .types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .type-char { aspect-ratio: 1; border-radius: 7px; padding: 0; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.25s ease; color: white; }
  .type-char:hover { transform: scale(1.05); box-shadow: 0 8px 18px rgba(0,0,0,0.18); }
  .type-char.t-ITA, .type-char-big.t-ITA, .match-char-wrap.t-ITA { background: var(--t-ITA); }
  .type-char.t-ITC, .type-char-big.t-ITC, .match-char-wrap.t-ITC { background: var(--t-ITC); }
  .type-char.t-ISA, .type-char-big.t-ISA, .match-char-wrap.t-ISA { background: var(--t-ISA); }
  .type-char.t-ISC, .type-char-big.t-ISC, .match-char-wrap.t-ISC { background: var(--t-ISC); }
  .type-char.t-PTA, .type-char-big.t-PTA, .match-char-wrap.t-PTA { background: var(--t-PTA); }
  .type-char.t-PTC, .type-char-big.t-PTC, .match-char-wrap.t-PTC { background: var(--t-PTC); }
  .type-char.t-PSA, .type-char-big.t-PSA, .match-char-wrap.t-PSA { background: var(--t-PSA); }
  .type-char.t-PSC, .type-char-big.t-PSC, .match-char-wrap.t-PSC { background: var(--t-PSC); }
  .type-char .char-illustration { position: absolute; inset: 0 0 18% 0; display: flex; align-items: center; justify-content: center; }
  .type-char .char-illustration svg { width: 95%; height: 95%; }
  .type-char .char-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 3px 6px; text-align: center; font-size: 10.5px; font-weight: 700; letter-spacing: -0.2px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55) 65%); line-height: 1.2; color: white; }
  .type-char .char-name-q { display: block; font-size: 22px; font-weight: 700; line-height: 1; }
  .type-char .char-name-real { display: none; font-size: 10.5px; line-height: 1.2; }
  .type-char:hover .char-name-q, .type-char:active .char-name-q { display: none; }
  .type-char:hover .char-name-real, .type-char:active .char-name-real { display: block; }

  /* 큰 캐릭터 (결과 페이지) */
  .type-char-big { aspect-ratio: 16/10; max-width: 100%; border-radius: 12px; padding: 0; position: relative; overflow: hidden; color: white; margin-bottom: 18px; }
  .type-char-big .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .type-char-big .char-illustration svg { width: 60%; max-width: 280px; height: 95%; max-height: 260px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.18)); }
  .type-char-big .char-code-pill { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.28); backdrop-filter: blur(8px); padding: 5px 14px; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: 2px; }

  /* === Comments === */
  .comments-card { background: var(--card); padding: 20px 18px; border-radius: 7px; box-shadow: var(--shadow); margin-bottom: 24px; }
  .comments-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
  .comments-title { font-size: 16px; font-weight: 700; }
  .comments-count { font-size: 12px; color: var(--text-light); font-weight: 600; }
  .comment-list { display: flex; flex-direction: column; gap: 12px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
  .comment { padding: 12px 14px; background: var(--bg-soft); border-radius: 4px; }
  .comment-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
  .comment-name { font-size: 12px; font-weight: 700; }
  .comment-code { font-size: 10px; font-weight: 700; color: white; background: var(--accent); padding: 2px 8px; border-radius: 12px; }
  .comment-time { font-size: 11px; color: var(--text-light); }
  .comment-body { font-size: 14px; line-height: 1.5; }
  .comment-like { font-size: 11px; color: var(--text-light); margin-top: 6px; cursor: pointer; display: inline-block; }

  /* === Buttons === */
  .btn-primary { background: var(--accent); color: white; border: none; padding: 18px 32px; font-size: 16px; font-weight: 700; border-radius: 7px; width: 100%; cursor: pointer; font-family: inherit; box-shadow: var(--shadow-strong); transition: transform 0.2s; }
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-soft { background: var(--bg-soft); color: var(--text-soft); border: none; padding: 14px 24px; font-size: 14px; font-weight: 700; border-radius: 7px; width: 100%; cursor: pointer; font-family: inherit; transition: background 0.2s; }
  .btn-soft:hover { background: #E3D9CA; }
  .small-note { font-size: 12px; color: var(--text-light); margin-top: 12px; text-align: center; }

  /* === 1분 챌린지 메인 진입 카드 (바이럴) === */
  .ch1-entry { background: #3D332C; border-radius: 12px; padding: 26px 22px 22px; margin-bottom: 16px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.32); }
  .ch1-entry-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%), radial-gradient(circle at 20% 80%, rgba(224,122,95,0.22), transparent 55%); }
  .ch1-entry-eyebrow { font-size: 11px; font-weight: 700; color: #FFFFFF; letter-spacing: 2.5px; margin-bottom: 10px; position: relative; }
  .ch1-entry-title { font-size: 24px; font-weight: 700; color: white; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 10px; position: relative; }
  .ch1-entry-title .hl { color: #FFFFFF; }
  .ch1-entry-sub { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 18px; position: relative; }
  .ch1-entry-sub b { color: #FFFFFF; font-weight: 700; }
  .ch1-entry-btn { background: var(--accent); color: white; border: none; padding: 14px 28px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 6px 18px rgba(224,122,95,0.45); position: relative; }
  .ch1-entry-stats { display: flex; gap: 8px; justify-content: center; margin-top: 14px; flex-wrap: wrap; position: relative; }
  .ch1-stat-pill { font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 12px; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }
  .ch1-stat-pill b { color: #FFFFFF; font-weight: 700; }

  /* 1분 챌린지 결과 (인증 카드) */
  .ch1-result-screen { display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
  .ch1-overlay.show-result .ch1-circle-wrap, .ch1-overlay.show-result .ch1-fact, .ch1-overlay.show-result .ch1-fail-msg, .ch1-overlay.show-result .ch1-actions { display: none !important; }
  .ch1-overlay.show-result .ch1-result-screen { display: flex; }
  .ch1-result-card { width: 100%; max-width: 280px; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; padding: 28px 22px; display: flex; flex-direction: column; color: white; box-shadow: 0 20px 40px rgba(0,0,0,0.4); position: relative; }
  .ch1-result-card.failed { background: #550A1C; }
  .ch1-result-card.success { background: #1B4D3E; }
  .ch1-result-card::after { content: ""; position: absolute; top: 0; right: 0; width: 60%; height: 50%; background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.2), transparent 60%); pointer-events: none; }
  .ch1-result-top { font-family: var(--font-numeric); font-size: 9px; font-weight: 700; letter-spacing: 3px; opacity: 0.85; }
  .ch1-result-test { font-size: 12px; font-weight: 600; margin-top: 4px; opacity: 0.95; }
  .ch1-result-mid { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; position: relative; }
  .ch1-result-emoji { font-size: 72px; margin-bottom: 14px; line-height: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }
  .ch1-result-big { font-family: var(--font-numeric); font-size: 78px; font-weight: 700; line-height: 1; letter-spacing: -4px; margin-bottom: 4px; }
  .ch1-result-big .sec { font-size: 28px; font-weight: 700; opacity: 0.85; letter-spacing: 0; margin-left: 4px; }
  .ch1-result-verdict { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
  .ch1-result-quote { font-size: 12px; font-style: italic; line-height: 1.5; opacity: 0.92; padding: 0 6px; font-family: var(--font-core); }
  .ch1-result-bottom { font-family: var(--font-numeric); font-size: 11px; font-weight: 600; opacity: 0.92; text-align: center; letter-spacing: 0.5px; }
  .ch1-result-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 320px; margin-top: 18px; }
  .ch1-result-btn { padding: 14px; border-radius: 4px; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .ch1-result-btn.primary { background: var(--accent); color: white; box-shadow: 0 6px 16px rgba(224,122,95,0.4); }
  .ch1-result-btn.kakao { background: #FEE500; color: #2A2622; }
  .ch1-result-btn.test { background: rgba(255,255,255,0.18); color: white; border: 1px solid rgba(255,255,255,0.2); }
  .btn-secondary { background: var(--card); color: var(--text); border: 2px solid var(--bg-soft); padding: 14px 24px; font-size: 14px; font-weight: 700; border-radius: 7px; cursor: pointer; font-family: inherit; }
  .cta-stack { display: flex; flex-direction: column; gap: 8px; }

  /* === Question === */
  .progress-wrap { padding: 16px 0 24px; }
  .progress-top { display: flex; justify-content: space-between; margin-bottom: 8px; }
  .progress-text { font-size: 13px; color: var(--text-soft); font-weight: 700; }
  .progress-percent { font-size: 13px; color: var(--text-soft); font-weight: 700; }
  .progress-bar { height: 6px; background: var(--accent-soft); border-radius: 12px; overflow: hidden; }
  .progress-fill { height: 100%; background: var(--accent); transition: width 0.4s ease; border-radius: 12px; }
  .question { padding: 8px 0; }
  .scenario-label { font-size: 12px; color: var(--text-soft); font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
  .question-text { font-size: 22px; font-weight: 700; line-height: 1.45; margin-bottom: 28px; letter-spacing: -0.3px; }
  .choices { display: flex; flex-direction: column; gap: 12px; }
  .choice-btn { background: var(--card); border: 2px solid transparent; padding: 18px; font-size: 15px; font-weight: 600; border-radius: 7px; cursor: pointer; text-align: left; transition: all 0.2s; color: var(--text); font-family: inherit; box-shadow: var(--shadow); line-height: 1.45; display: flex; align-items: center; gap: 12px; }
  .choice-btn:hover { border-color: var(--text-soft); transform: translateX(4px); }
  .choice-btn span:not(.choice-emoji) { display: block; line-height: 1.45; }
  .choice-btn.choice-selected { border-color: var(--text-soft); background: var(--accent-soft); transform: scale(1.02); transition: all 0.2s ease; }
  /* 답변 추임새 토스트 */
  .answer-toast { position: fixed; top: 30%; left: 50%; transform: translate(-50%, -50%) scale(0.8); background: var(--dark); color: white; padding: 14px 24px; border-radius: 7px; font-size: 14px; font-weight: 700; box-shadow: 0 12px 32px rgba(0,0,0,0.4); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.4, 1); z-index: 220; white-space: nowrap; max-width: 90vw; }
  .answer-toast.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .choice-emoji { font-size: 22px; flex-shrink: 0; }
  .loading { text-align: center; padding: 80px 20px; }
  .loading-emoji { font-size: 64px; margin-bottom: 24px; animation: bounce 1s infinite; }
  @keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
  .loading-text { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .loading-sub { color: var(--text-soft); font-size: 14px; }

  /* === Result === */
  .result-card { background: var(--card); border-radius: 12px; padding: 28px 24px 26px; text-align: center; box-shadow: var(--shadow); margin-bottom: 14px; position: relative; }
  .result-nickname { font-size: 28px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; letter-spacing: -0.5px; }
  /* 결과 등장 모먼트 애니메이션 */
  @keyframes rc-card-in { 0% { opacity: 0; transform: translateY(40px) scale(0.92); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes rc-char-pop { 
  0% { transform: scale(0.1) rotate(-30deg); opacity: 0; filter: blur(12px); }
  30% { transform: scale(1.5) rotate(12deg); opacity: 1; filter: blur(0); }
  45% { transform: scale(0.85) rotate(-5deg); }
  60% { transform: scale(1.15) rotate(3deg); }
  75% { transform: scale(0.95) rotate(-2deg); }
  90% { transform: scale(1.04) rotate(1deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes rc-name-zoom {
  0% { transform: scale(3) translateY(-20px); opacity: 0; letter-spacing: 20px; filter: blur(20px); }
  60% { transform: scale(0.85) translateY(4px); opacity: 1; letter-spacing: -2px; filter: blur(0); }
  80% { transform: scale(1.06) translateY(-2px); letter-spacing: -0.5px; }
  100% { transform: scale(1) translateY(0); letter-spacing: -0.5px; }
}
@keyframes rc-label-flip {
  0% { transform: scale(0) rotate(-90deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(8deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}
@keyframes rc-spark-burst {
  0% { transform: scale(0) translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: scale(1) translate(var(--tx), var(--ty)) rotate(360deg); opacity: 0; }
}
@keyframes rc-ring-expand {
  0% { transform: scale(0); opacity: 1; border-width: 12px; }
  100% { transform: scale(4); opacity: 0; border-width: 0; }
}
.anim-char-pop { animation: rc-char-pop 1.3s cubic-bezier(0.18, 1.6, 0.3, 1.1) 0.25s both !important; position: relative; }
.result-nickname { animation: rc-name-zoom 0.9s cubic-bezier(0.22, 1.4, 0.36, 1) 0.95s both !important; display: inline-block; }
.result-provocative-label { animation: rc-label-flip 0.6s cubic-bezier(0.34, 1.5, 0.4, 1) 0.45s both !important; }
.result-spark-layer { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 5; width: 0; height: 0; }
.result-spark { position: absolute; top: 0; left: 0; font-size: 20px; animation: rc-spark-burst 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both; pointer-events: none; }
.result-ring { position: absolute; top: 30%; left: 50%; width: 100px; height: 100px; margin-left: -50px; margin-top: -50px; border: 6px solid var(--accent); border-radius: 50%; animation: rc-ring-expand 1.2s ease-out 0.3s both; pointer-events: none; z-index: 4; }
.result-ring-2 { animation-delay: 0.55s; border-color: #FFFFFF; }
.result-ring-3 { animation-delay: 0.8s; border-color: #9854B2; }
@keyframes rc-card-pulse { 
  0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.06); } 
  50% { box-shadow: 0 8px 40px rgba(224,122,95,0.25), 0 0 0 2px rgba(224,122,95,0.3); } 
}
@keyframes rc-flash { 
  0% { background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); }
  30% { background: rgba(255,255,255,0.7); backdrop-filter: blur(2px); }
  60% { background: rgba(224,122,95,0.4); backdrop-filter: blur(0); }
  100% { background: rgba(255,255,255,0); backdrop-filter: blur(0); }
}
.result-card-v2 { animation: rc-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both, rc-card-pulse 2.2s ease-in-out 1.5s 1 !important; }
.anim-char-pop { animation: rc-char-pop 1.1s cubic-bezier(0.18, 1.5, 0.32, 1.1) 0.15s both !important; }
.result-flash-overlay { position: fixed; inset: 0; pointer-events: none; z-index: 100; animation: rc-flash 0.9s ease-out 0.05s 1; }
  @keyframes rc-shine { 0% { transform: translateX(-100%) skewX(-20deg); } 100% { transform: translateX(220%) skewX(-20deg); } }
  @keyframes rc-text-in { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }
  @keyframes rc-confetti { 0% { transform: translateY(0) rotate(0); opacity: 1; } 100% { transform: translateY(180px) rotate(360deg); opacity: 0; } }
  .anim-card { animation: rc-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .anim-char-pop { animation: rc-char-pop 0.9s cubic-bezier(0.18, 1.2, 0.32, 1.1) 0.15s both; }
  .anim-text-in { animation: rc-text-in 0.6s ease-out 0.6s both; }
  .anim-shine { position: relative; }
  .anim-shine::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%); transform: translateX(-100%); animation: rc-shine 1.4s ease-out 0.4s 1 forwards; }
  .confetti-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; border-radius: 12px; }
  .confetti-bit { position: absolute; width: 8px; height: 12px; border-radius: 2px; animation: rc-confetti 1.6s ease-in forwards; }
  /* 시그니처 단계 공개 */
  .signature-list { background: var(--bg-soft); border-radius: 7px; padding: 18px 18px 16px; margin-bottom: 18px; text-align: left; min-height: 60px; font-family: 'Pretendard', 'Noto Sans KR', system-ui, sans-serif; }
  .signature-list * { font-family: 'Pretendard', 'Noto Sans KR', system-ui, sans-serif !important; font-style: normal !important; }
  .signature-list-title { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; }
  .signature-progress { font-size: 10px; color: var(--text-light); font-weight: 700; letter-spacing: 0.5px; }
  @keyframes sig-pop { 0% { opacity: 0; transform: translateX(-12px); } 60% { opacity: 1; transform: translateX(4px); } 100% { opacity: 1; transform: translateX(0); } }
  .signature-item { font-size: 14px; line-height: 1.6; padding: 6px 0; position: relative; padding-left: 22px; font-weight: 500; opacity: 0; }
  .signature-item.revealed { animation: sig-pop 0.45s cubic-bezier(0.34, 1.3, 0.4, 1) both; }
  .signature-item::before { content: "✓"; position: absolute; left: 0; color: var(--text-soft); font-weight: 700; font-size: 15px; }
  @keyframes sig-comment-in { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
  .signature-aside { font-family: 'Noto Serif KR', Georgia, serif; font-style: italic; font-size: 12.5px; color: var(--text-soft); margin: 8px 0 4px 22px; opacity: 0; }
  .signature-aside.revealed { animation: sig-comment-in 0.4s ease-out both; }
  .signature-loading { display: inline-flex; gap: 3px; vertical-align: middle; margin-left: 4px; }
  .signature-loading span { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); animation: sig-loading-blink 1.4s infinite both; }
  .signature-loading span:nth-child(2) { animation-delay: 0.2s; }
  .signature-loading span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes sig-loading-blink { 0%, 80%, 100% { opacity: 0.3; transform: scale(0.7); } 40% { opacity: 1; transform: scale(1); } }

  /* 인생 누적 시간 카운터 */
  .lifetime-counter { background: var(--dark); color: white; border-radius: 12px; padding: 24px 22px 22px; margin-bottom: 14px; position: relative; overflow: hidden; }
  .lifetime-counter::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(224,122,95,0.4), transparent 60%); }
  .lifetime-counter::after { content: ""; position: absolute; bottom: -40px; left: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(255,217,61,0.18), transparent 60%); }
  .lc-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 8px; position: relative; }
  .lc-headline { font-size: 14px; opacity: 0.85; line-height: 1.5; margin-bottom: 14px; position: relative; }
  .lc-big-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; position: relative; flex-wrap: wrap; }
  .lc-num { font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -1.5px; color: #FFFFFF; font-variant-numeric: tabular-nums; }
  .lc-unit { font-size: 16px; font-weight: 700; opacity: 0.85; }
  .lc-sub { font-size: 12px; opacity: 0.7; margin-top: 6px; line-height: 1.5; position: relative; }
  .lc-sub b { color: #FFFFFF; font-weight: 700; }
  .lc-ticking { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; margin-top: 10px; position: relative; padding: 5px 10px; background: rgba(255,255,255,0.1); border-radius: 12px; }
  .lc-tick-dot { width: 6px; height: 6px; border-radius: 50%; background: #F87171; animation: pulse 1s infinite; }
  .risk-gauge { background: var(--bg-soft); border-radius: 7px; padding: 16px; text-align: left; }
  .risk-gauge-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
  .risk-level-text { font-size: 14px; font-weight: 700; }
  .risk-level-status { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 12px; color: white; }
  .risk-segments { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .risk-segment { height: 10px; border-radius: 4px; background: #8A7B6C; transition: all 0.4s ease; }
  .risk-detail { font-size: 12px; color: var(--text-soft); margin-top: 10px; line-height: 1.5; }
  .pct-stat { margin-top: 12px; font-size: 12px; color: var(--text-light); }
  /* 결과 카드 직후 미니 공유 바 */
  .mini-share-bar { background: var(--bg-soft); border-radius: 12px; padding: 16px 18px; margin-bottom: 14px; box-shadow: 0 8px 22px rgba(224,122,95,0.35); animation: rc-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both; }
  .mini-share-text { color: white; font-size: 14px; font-weight: 700; margin-bottom: 10px; text-align: center; }
  .mini-share-buttons { display: flex; gap: 6px; }
  .mini-share-btn { flex: 1; padding: 11px 4px; border-radius: 4px; border: none; font-family: inherit; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: transform 0.2s; }
  .mini-share-btn:hover { transform: translateY(-2px); }
  .mini-share-btn.kakao { background: #FEE500; color: #2A2622; }
  .mini-share-btn.insta { background: white; color: #DD2A7B; }
  .mini-share-btn.link { background: rgba(255,255,255,0.22); color: white; }
  /* AI 옵셔널 카드 */
  .ai-optional { background: var(--card); border-radius: 12px; padding: 18px 18px 16px; margin-bottom: 14px; box-shadow: var(--shadow); border: 1.5px dashed var(--accent-soft); }
  .ai-optional-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1.5px; margin-bottom: 6px; }
  .ai-optional-title { font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; color: var(--text-soft); }
  .ai-optional-title b { color: var(--text); font-weight: 700; }
  .ai-optional-btn { background: var(--accent); color: white; border: none; padding: 12px 22px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; width: 100%; box-shadow: var(--shadow-strong); margin-top: 4px; }
  .ai-optional .ai-q-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--bg-soft); border-radius: 4px; font-family: inherit; font-size: 13.5px; resize: none; line-height: 1.5; background: var(--bg-soft); }
  .ai-optional .ai-q-input:focus { border-color: var(--text-soft); outline: none; background: white; }
  .section { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .section-label { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
  .section-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .section-body { color: var(--text-soft); line-height: 1.7; font-size: 15px; }
  .axis-row { margin-bottom: 18px; }
  .axis-row:last-child { margin-bottom: 0; }
  .axis-row-top { display: flex; justify-content: space-between; margin-bottom: 4px; }
  .axis-name { font-size: 13px; font-weight: 700; }
  .axis-score { font-size: 13px; color: var(--text-soft); font-weight: 700; }
  .axis-bar { height: 8px; background: var(--bg-soft); border-radius: 12px; overflow: hidden; }
  .axis-fill { height: 100%; background: var(--accent); border-radius: 12px; transition: width 0.7s ease; }
  .axis-evidence { margin-top: 8px; padding: 10px 12px; background: #3D332C; border-radius: 4px; font-size: 11.5px; color: var(--text-soft); line-height: 1.6; }
  .axis-evidence-title { font-size: 10px; color: var(--text-soft); font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
  .axis-evidence-row { padding: 2px 0; }
  .axis-evidence-row b { color: var(--text); font-weight: 700; }
  .pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
  .pros-cons-card { padding: 12px; border-radius: 4px; }
  .pros-cons-card.pros { background: #1B4D3E; }
  .pros-cons-card.cons { background: #3A2129; }
  .pros-cons-label { font-size: 11px; font-weight: 700; margin-bottom: 6px; }
  .pros .pros-cons-label { color: #6B7A4A; }
  .cons .pros-cons-label { color: var(--text-soft); }
  .pros-cons-item { font-size: 13px; line-height: 1.6; }
  .match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
  .match-card { background: var(--bg-soft); border-radius: 7px; padding: 14px 10px; text-align: center; cursor: pointer; transition: transform 0.2s; }
  .match-card:hover { transform: translateY(-2px); }
  .match-card.anti { background: #3A2129; }
  .match-label { font-size: 11px; color: var(--text-light); font-weight: 700; margin-bottom: 10px; letter-spacing: 1px; }
  .match-char-wrap { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; position: relative; }
  .match-char-wrap .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .match-char-wrap .char-illustration svg { width: 100%; height: 100%; }
  .match-name { font-size: 12.5px; font-weight: 700; line-height: 1.3; }

  /* === Share Friend === */
  .share-friend { background: var(--accent); color: white; border-radius: 12px; padding: 26px 22px; margin-bottom: 14px; box-shadow: var(--shadow-strong); }
  .share-friend-eyebrow { font-size: 11px; font-weight: 700; opacity: 0.9; letter-spacing: 2px; margin-bottom: 8px; }
  .share-friend-title { font-size: 22px; font-weight: 700; margin-bottom: 14px; line-height: 1.3; letter-spacing: -0.3px; }
  .share-friend-desc { font-size: 14px; line-height: 1.6; opacity: 0.95; margin-bottom: 16px; padding: 14px 16px; background: rgba(255,255,255,0.18); border-radius: 4px; }
  .share-buttons { display: flex; flex-direction: column; gap: 10px; }
  .share-btn { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 7px; border: none; background: white; cursor: pointer; font-family: inherit; transition: transform 0.2s; width: 100%; text-align: left; color: var(--text); }
  .share-btn:hover { transform: translateX(4px); }
  .share-icon { font-size: 22px; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 4px; background: var(--bg-soft); flex-shrink: 0; }
  .share-text-wrap { flex: 1; }
  .share-label { font-size: 14px; font-weight: 700; }
  .share-sublabel { font-size: 11px; color: var(--text-light); margin-top: 2px; }

  /* === 인스타 카드 (2030 여성 감성 리디자인) === */
  .insta-section { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .insta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 6px; color: var(--text-soft); }
  .insta-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; letter-spacing: -0.3px; }
  .insta-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 18px; }
  .insta-preview-wrap { max-width: 260px; margin: 0 auto 16px; }
  .insta-card { width: 100%; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; padding: 22px 20px; color: white; box-shadow: 0 16px 32px rgba(0,0,0,0.25); display: flex; flex-direction: column; position: relative; }
  .insta-card.c-ITA { background: var(--t-ITA); }
  .insta-card.c-ITC { background: var(--t-ITC); }
  .insta-card.c-ISA { background: var(--t-ISA); }
  .insta-card.c-ISC { background: var(--t-ISC); }
  .insta-card.c-PTA { background: var(--t-PTA); }
  .insta-card.c-PTC { background: var(--t-PTC); }
  .insta-card.c-PSA { background: var(--t-PSA); }
  .insta-card.c-PSC { background: var(--t-PSC); }
  .insta-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 80% 12%, rgba(255,255,255,0.18), transparent 55%); pointer-events: none; }
  .insta-top { position: relative; z-index: 1; }
  .insta-brand-line { font-family: var(--font-numeric); font-size: 9px; font-weight: 700; letter-spacing: 3px; opacity: 0.85; }
  .insta-test-name { font-size: 11px; font-weight: 600; margin-top: 3px; letter-spacing: 0.5px; opacity: 0.95; }
  .insta-divider { width: 28px; height: 1px; background: rgba(255,255,255,0.6); margin-top: 10px; }
  .insta-main { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: center; position: relative; z-index: 1; }
  .insta-char { width: 140px; height: 140px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.22)); }
  .insta-char svg { width: 100%; height: 100%; }
  .insta-nickname-big { font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.3px; margin-bottom: 12px; padding: 0 4px; }
  .insta-quote { font-family: 'Pretendard', 'Noto Sans KR', system-ui, sans-serif; font-size: 13px; font-weight: 500; line-height: 1.55; opacity: 0.95; padding: 0 6px; letter-spacing: -0.2px; }
  .insta-quote::before { content: "“"; font-size: 18px; opacity: 0.7; margin-right: 2px; }
  .insta-quote::after { content: "”"; font-size: 18px; opacity: 0.7; margin-left: 2px; }
  .insta-bottom-meta { position: relative; z-index: 1; text-align: center; }
  .insta-risk-line { font-size: 11px; opacity: 0.85; margin-bottom: 4px; letter-spacing: 1px; }
  .insta-handle { font-family: var(--font-numeric); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.95; }
  .insta-share-btn { width: 100%; padding: 14px; background: linear-gradient(135deg,#E07A5F,#C46145); color: white; border: none; border-radius: 4px; font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit; }

  /* === Screentime (전문성 강화) === */
  .st-card { background: var(--card); padding: 22px; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 14px; }
  .st-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 6px; }
  .st-headline { font-size: 22px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; letter-spacing: -0.3px; }
  .st-sub { color: var(--text-soft); font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
  .platform-row { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
  .platform-pill { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 12px; background: var(--bg-soft); color: var(--text-soft); }
  .upload-zone { border: 2px dashed var(--accent-soft); padding: 28px 20px; border-radius: 7px; text-align: center; cursor: pointer; transition: all 0.2s; background: #FBF8F3; margin-bottom: 16px; }
  .upload-zone:hover { background: var(--bg-soft); border-color: var(--text-soft); }
  .upload-emoji { font-size: 36px; margin-bottom: 10px; }
  .upload-text { font-size: 14px; font-weight: 700; }
  .upload-sub { font-size: 12px; color: var(--text-light); margin-top: 4px; }
  .st-example-card { background: var(--bg-soft); border-radius: 7px; padding: 16px 18px; }
  .st-example-title { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 10px; }
  .st-example-title b { color: var(--text-soft); }
  .st-example-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; line-height: 1.5; }
  .st-example-row .emo { font-size: 18px; width: 24px; flex-shrink: 0; }
  .st-example-row b { color: var(--text-soft); font-weight: 700; }
  .st-report { margin-top: 18px; display: none; }
  .st-report.active { display: block; }

  /* 의존도 메인 스코어 */
  .st-main-score { background: var(--dark); color: white; padding: 22px 20px; border-radius: 12px; margin-bottom: 14px; position: relative; overflow: hidden; }
  .st-main-score::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(224,122,95,0.4), transparent 70%); }
  .st-score-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; }
  .st-score-left { flex: 1; }
  .st-score-label { font-size: 11px; opacity: 0.7; letter-spacing: 1px; }
  .st-score-num { font-size: 56px; font-weight: 700; line-height: 1; margin-top: 4px; }
  .st-score-num .out { font-size: 18px; opacity: 0.6; font-weight: 700; }
  .st-score-status-pill { padding: 5px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; display: inline-block; }
  .st-trend-row { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: space-between; font-size: 12px; position: relative; }
  .st-trend-row b { color: var(--text-soft); font-weight: 700; }

  /* 카테고리 분석 */
  .st-cat-card { background: var(--card); border: 1.5px solid var(--bg-soft); padding: 16px 18px; border-radius: 7px; margin-bottom: 10px; }
  .st-cat-title { font-size: 12px; font-weight: 700; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 12px; }
  .st-cat-row { margin-bottom: 12px; }
  .st-cat-row:last-child { margin-bottom: 0; }
  .st-cat-row-top { display: flex; justify-content: space-between; margin-bottom: 4px; align-items: center; }
  .st-cat-name { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
  .st-cat-dot { width: 10px; height: 10px; border-radius: 50%; }
  .st-cat-time { font-size: 12px; font-weight: 700; color: var(--text-soft); }
  .st-cat-bar { height: 6px; background: var(--bg-soft); border-radius: 12px; overflow: hidden; }
  .st-cat-fill { height: 100%; border-radius: 12px; }

  /* TOP 앱 분석 */
  .st-app-card { background: var(--bg-soft); padding: 14px 16px; border-radius: 4px; margin-bottom: 8px; }
  .st-app-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
  .st-app-rank { font-size: 11px; font-weight: 700; color: var(--text-soft); width: 18px; }
  .st-app-name { font-size: 14px; font-weight: 700; flex: 1; }
  .st-app-time { font-size: 13px; font-weight: 700; color: var(--text-soft); }
  .st-app-insight { font-size: 12px; color: var(--text-soft); line-height: 1.5; padding-left: 28px; }
  .st-app-insight b { color: var(--text); }

  /* 시간대 패턴 */
  .st-timeline-card { background: var(--card); border: 1.5px solid var(--bg-soft); padding: 16px 18px; border-radius: 7px; margin-bottom: 10px; }
  .st-timeline-title { font-size: 12px; font-weight: 700; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 12px; }
  .st-timeline-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .st-tb { text-align: center; }
  .st-tb-bar { height: 60px; background: var(--bg-soft); border-radius: 8px 8px 0 0; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
  .st-tb-fill { width: 100%; background: linear-gradient(180deg, var(--accent), var(--accent-deep)); border-radius: 8px 8px 0 0; }
  .st-tb-time { font-size: 10px; font-weight: 700; color: var(--text-soft); margin-top: 6px; }
  .st-tb-amount { font-size: 11px; font-weight: 700; color: var(--text); }
  .st-timeline-note { font-size: 12px; color: var(--text-soft); margin-top: 12px; padding: 10px 12px; background: var(--bg-soft); border-radius: 4px; line-height: 1.5; }
  .st-timeline-note b { color: var(--text-soft); font-weight: 700; }

  /* 1년 환산 */
  .st-yearly { background: #3D332C; padding: 18px 20px; border-radius: 7px; margin-bottom: 10px; text-align: center; }
  .st-yearly-label { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1px; margin-bottom: 6px; }
  .st-yearly-big { font-size: 28px; font-weight: 700; color: var(--text-soft); line-height: 1.1; }
  .st-yearly-sub { font-size: 12px; color: var(--text-soft); margin-top: 6px; line-height: 1.5; }

  /* === 타임오프클럽 (일관된 디자인) === */
  .toc-hero { background: var(--dark); color: white; border-radius: 12px; padding: 28px 22px; margin-bottom: 12px; text-align: center; position: relative; overflow: hidden; }
  .toc-hero::before { content: ""; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(224,122,95,0.35), transparent 70%); }
  .toc-hero-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 12px; position: relative; }
  .toc-hero-emoji { font-size: 56px; margin-bottom: 10px; position: relative; }
  .toc-hero-title { font-size: 26px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; letter-spacing: -0.3px; position: relative; }
  .toc-hero-title .hl { color: var(--text-soft); }
  .toc-hero-sub { font-family: var(--font-core); font-style: italic; font-size: 13px; opacity: 0.85; line-height: 1.6; position: relative; }

  .toc-block { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 12px; box-shadow: var(--shadow); }
  .toc-block-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; }
  .toc-block-title { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 10px; }
  .toc-block-title .hl { color: var(--text-soft); }
  .toc-block-body { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
  .toc-block-body b { color: var(--text); font-weight: 700; }
  .toc-schedule { display: flex; gap: 8px; margin-top: 14px; }
  .toc-schedule-item { flex: 1; background: var(--bg-soft); padding: 14px 10px; border-radius: 4px; text-align: center; }
  .toc-schedule-day { font-size: 13px; font-weight: 700; }
  .toc-schedule-time { font-size: 12px; color: var(--text-soft); font-weight: 600; margin-top: 2px; }

  .toc-spots-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 12px; }
  .toc-spot { aspect-ratio: 1; border-radius: 4px; padding: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text); text-align: center; }
  .toc-spot.s-0 { background: #6B4A2E; }
  .toc-spot.s-1 { background: #702F3D; }
  .toc-spot.s-2 { background: #1B4D3E; }
  .toc-spot.s-3 { background: #9854B2; }
  .toc-spot.s-4 { background: #2E4A6B; }
  .toc-spot-emoji { font-size: 22px; margin-bottom: 2px; }
  .toc-spot-name { font-size: 11px; font-weight: 700; }
  .toc-spot-vibe { font-size: 8px; opacity: 0.75; margin-top: 1px; font-weight: 600; line-height: 1.2; padding: 0 2px; }

  .toc-methods-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; }
  .toc-methods-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 12px; }
  .method-cards { display: flex; flex-direction: column; gap: 10px; }
  .method-card { padding: 22px 20px; border-radius: 12px; color: white; cursor: pointer; transition: transform 0.2s; position: relative; overflow: hidden; }
  .method-card:hover { transform: translateY(-3px); }
  .method-card.talk { background: linear-gradient(135deg, #6B8BAC, #527495); }
  .method-card.solo { background: linear-gradient(135deg, #8A7AB3, #6E5E9C); }
  .method-card::before { content: ""; position: absolute; top: -30px; right: -30px; width: 110px; height: 110px; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%); }
  .method-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; position: relative; }
  .method-emoji { font-size: 42px; flex-shrink: 0; }
  .method-title { font-size: 22px; font-weight: 700; line-height: 1.2; }
  .method-tag { font-size: 12px; opacity: 0.9; margin-top: 4px; font-weight: 700; }
  .method-body { font-size: 13px; line-height: 1.65; opacity: 0.95; margin-bottom: 12px; position: relative; }
  .method-hook { font-family: var(--font-core); font-style: italic; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.18); padding: 10px 14px; border-radius: 4px; line-height: 1.5; position: relative; }
  .method-recommend-tag { display: inline-block; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 12px; background: white; margin-bottom: 6px; letter-spacing: 0.5px; }
  .method-card.talk .method-recommend-tag { color: #527495; }
  .method-card.solo .method-recommend-tag { color: #6E5E9C; }

  .toc-cta { background: var(--accent); color: white; border-radius: 12px; padding: 22px 20px; text-align: center; margin-bottom: 12px; box-shadow: var(--shadow-strong); }
  .toc-cta-text { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
  .toc-cta-sub { font-size: 13px; opacity: 0.9; margin-bottom: 14px; }
  .toc-cta-buttons { display: flex; gap: 8px; }
  .toc-cta-btn { flex: 1; padding: 14px 8px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .toc-cta-btn.yes { background: white; color: var(--text-soft); }
  .toc-cta-btn.no { background: rgba(255,255,255,0.2); color: white; border: 1.5px solid rgba(255,255,255,0.4); }

  .trust-footer { background: var(--bg-soft); padding: 18px 20px; border-radius: 7px; margin-bottom: 14px; }
  .trust-footer-title { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1.5px; margin-bottom: 8px; }
  .trust-footer-body { font-size: 12px; line-height: 1.7; color: var(--text-soft); }
  .trust-footer-body b { color: var(--text); }
  .powered-link { display: inline-block; margin-top: 12px; padding: 8px 14px; background: white; border-radius: 12px; font-size: 12px; font-weight: 700; color: var(--text-soft); text-decoration: none; cursor: pointer; box-shadow: var(--shadow); }

  /* === Post Comment === */
  .post-comment-card { background: var(--card); padding: 22px; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 14px; }
  .pc-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
  .pc-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }
  .pc-input { width: 100%; padding: 12px; border: 1.5px solid var(--bg-soft); border-radius: 4px; font-family: inherit; font-size: 14px; resize: none; margin-bottom: 8px; }
  .pc-submit { padding: 12px 24px; background: var(--accent); color: white; border: none; border-radius: 4px; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 14px; width: 100%; }
  .pc-comments-list { display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; margin-top: 14px; padding-right: 4px; }

  .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); display: none; align-items: center; justify-content: center; padding: 16px; z-index: 100; overflow-y: auto; }
  .modal-overlay.active { display: flex; }
  .modal { background: white; border-radius: 12px; padding: 28px 22px; text-align: center; max-width: 380px; width: 100%; max-height: 92vh; overflow-y: auto; }
  .modal-emoji { font-size: 56px; margin-bottom: 12px; }
  .modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .modal p { color: var(--text-soft); font-size: 14px; margin-bottom: 18px; line-height: 1.6; white-space: pre-line; }
  .modal-close { background: var(--accent); color: white; border: none; padding: 14px 32px; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; }
  .restart { text-align: center; margin-top: 8px; }
  .restart a { color: var(--text-light); font-size: 13px; text-decoration: underline; cursor: pointer; }

  /* === EYE GAME === */
  .eye-game-section { background: var(--card); border-radius: 12px; padding: 28px 22px; margin-top: 20px; margin-bottom: 20px; text-align: center; box-shadow: var(--shadow); }
  .eye-game-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 8px; }
  .eye-game-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.5px; line-height: 1.25; }
  .eye-game-sub { font-size: 14px; color: var(--text-soft); margin-bottom: 20px; line-height: 1.5; }
  .eye-game-area { background: white; border-radius: 12px; padding: 20px 16px; box-shadow: var(--shadow); }
  .eye-game-stage { width: 100%; aspect-ratio: 1; max-width: 320px; margin: 0 auto; position: relative; background: #2D2520; border-radius: 12px; overflow: hidden; }
  .eye-start-screen, .eye-active-screen, .eye-complete-screen { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; }
  .eye-active-screen, .eye-complete-screen { display: none; }
  .eye-game-area.playing .eye-start-screen { display: none; }
  .eye-game-area.playing .eye-active-screen { display: flex; }
  .eye-game-area.done .eye-start-screen, .eye-game-area.done .eye-active-screen { display: none; }
  .eye-game-area.done .eye-complete-screen { display: flex; }
  .eye-start-emoji { font-size: 56px; margin-bottom: 14px; }
  .eye-start-text { font-size: 14px; color: var(--text-soft); margin-bottom: 18px; line-height: 1.5; font-weight: 500; }
  .eye-start-btn { background: var(--accent); color: white; border: none; padding: 14px 36px; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 4px 12px rgba(224,122,95,0.3); }
  .eye-dot { position: absolute; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px rgba(224,122,95,0.4); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; }
  .eye-dot.move-horizontal { animation: eye-horizontal 3s ease-in-out infinite; }
  @keyframes eye-horizontal { 0%,100% { left: 16%; top: 50%; } 50% { left: 84%; top: 50%; } }
  .eye-dot.move-vertical { animation: eye-vertical 3s ease-in-out infinite; }
  @keyframes eye-vertical { 0%,100% { left: 50%; top: 16%; } 50% { left: 50%; top: 84%; } }
  .eye-dot.move-circle { animation: eye-circle 4s linear infinite; }
  @keyframes eye-circle { 0% { left: 84%; top: 50%; } 25% { left: 50%; top: 84%; } 50% { left: 16%; top: 50%; } 75% { left: 50%; top: 16%; } 100% { left: 84%; top: 50%; } }
  .eye-dot.move-figure8 { animation: eye-figure8 4s ease-in-out infinite; }
  @keyframes eye-figure8 { 0% { left: 50%; top: 50%; } 12.5% { left: 75%; top: 28%; } 25% { left: 86%; top: 50%; } 37.5% { left: 75%; top: 72%; } 50% { left: 50%; top: 50%; } 62.5% { left: 25%; top: 28%; } 75% { left: 14%; top: 50%; } 87.5% { left: 25%; top: 72%; } 100% { left: 50%; top: 50%; } }
  .eye-blink-icon { font-size: 80px; animation: eye-blink 1s ease-in-out infinite; }
  @keyframes eye-blink { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.25; transform: scale(0.85); } }
  .eye-round-label { position: absolute; top: 16px; left: 16px; right: 16px; z-index: 3; display: flex; justify-content: space-between; align-items: center; }
  .eye-round-name { font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.85); padding: 4px 10px; border-radius: 12px; }
  .eye-round-count { font-size: 11px; font-weight: 700; color: var(--text-soft); background: rgba(255,255,255,0.85); padding: 4px 10px; border-radius: 12px; letter-spacing: 1px; }
  .eye-instruction { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3; font-size: 12px; color: var(--text-soft); font-weight: 700; background: rgba(255,255,255,0.85); margin: 0 auto; max-width: fit-content; padding: 6px 14px; border-radius: 12px; }
  .eye-rounds-list { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
  .eye-round-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bg-soft); transition: all 0.3s; }
  .eye-round-dot.done { background: var(--accent); opacity: 0.6; }
  .eye-round-dot.current { background: var(--accent); transform: scale(1.5); }
  .eye-progress-track { margin-top: 10px; height: 6px; background: var(--bg-soft); border-radius: 12px; overflow: hidden; }
  .eye-progress-fill { height: 100%; background: var(--accent); border-radius: 12px; transition: width 0.3s linear; width: 0; }
  .eye-complete-emoji { font-size: 64px; margin-bottom: 12px; }
  .eye-complete-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.3px; }
  .eye-complete-stats { font-size: 13px; color: var(--text-soft); margin-bottom: 18px; line-height: 1.6; }
  .eye-complete-stats b { color: var(--text-soft); font-weight: 700; }
  .eye-complete-actions { display: flex; gap: 8px; }
  .eye-complete-btn { padding: 12px 20px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .eye-complete-btn.primary { background: var(--accent); color: white; }
  .eye-complete-btn.outline { background: white; color: var(--text-soft); border: 1.5px solid var(--bg-soft); }

  /* ==================================================================
     v9 신규 컴포넌트
     ================================================================== */

  /* 1. 1분 폰 참기 챌린지 */
  .ch1-overlay { position: fixed; inset: 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; flex-direction: column; }
  .ch1-overlay.active { display: flex; }
  .ch1-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2.5px; margin-bottom: 12px; }
  .ch1-title { font-size: 28px; font-weight: 700; color: white; text-align: center; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 12px; max-width: 320px; }
  .ch1-sub { font-size: 14px; color: rgba(255,255,255,0.75); text-align: center; line-height: 1.6; margin-bottom: 32px; max-width: 320px; }
  .ch1-circle-wrap { width: 200px; height: 200px; position: relative; margin-bottom: 24px; }
  .ch1-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
  .ch1-ring-bg { stroke: rgba(255,255,255,0.1); fill: none; stroke-width: 6; }
  .ch1-ring-fill { stroke: var(--accent); fill: none; stroke-width: 6; stroke-linecap: round; stroke-dasharray: 565.5; stroke-dashoffset: 565.5; transition: stroke-dashoffset 1s linear; }
  .ch1-time { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; }
  .ch1-time-num { font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -1.5px; }
  .ch1-time-unit { font-size: 13px; opacity: 0.7; margin-top: 6px; letter-spacing: 1px; }
  /* 회전 통계 / 경각심 콘텐츠 — 고정 크기 */
  .ch1-fact { width: 100%; max-width: 320px; height: 96px; margin-bottom: 22px; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
  .ch1-fact-inner { transition: opacity 0.4s ease; width: 100%; display: flex; flex-direction: column; align-items: center; }
  .ch1-fact-inner.swapping { opacity: 0; }
  .ch1-fact-eyebrow { font-size: 10px; font-weight: 700; color: var(--text-soft); letter-spacing: 1.5px; margin-bottom: 6px; }
  .ch1-fact-body { font-size: 14px; line-height: 1.55; color: white; font-weight: 500; }
  .ch1-fact-body b { color: #FFFFFF; font-weight: 700; }
  .ch1-stat { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; margin-bottom: 18px; }
  .ch1-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 320px; }
  .ch1-btn { padding: 16px; border-radius: 7px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .ch1-btn.primary { background: var(--accent); color: white; box-shadow: 0 6px 16px rgba(224,122,95,0.4); }
  .ch1-btn.skip { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
  .ch1-fail-msg { font-size: 13px; color: #FF8A6B; font-weight: 700; margin-top: 10px; text-align: center; min-height: 22px; max-width: 320px; line-height: 1.5; padding: 0 12px; word-break: keep-all; overflow-wrap: break-word; }
  @keyframes ch1-shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
  .ch1-circle-wrap.shake { animation: ch1-shake 0.4s ease-in-out; }
  /* 1분 챌린지 — 댓글 마키 */
  .ch1-comments { width: 100%; max-width: 360px; margin-top: 18px; }
  .ch1-comments-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; margin-bottom: 10px; text-align: center; }
  .ch1-comments-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, black 12%, black 88%, transparent 100%); }
  .ch1-comments-track { display: flex; gap: 10px; animation: ch1-marquee 30s linear infinite; }
  @keyframes ch1-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ch1-comment-bubble { flex-shrink: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); padding: 10px 14px; border-radius: 4px; min-width: 240px; max-width: 280px; }
  .ch1-comment-name { font-size: 10px; font-weight: 700; color: var(--text-soft); margin-bottom: 4px; letter-spacing: 0.5px; }
  .ch1-comment-body { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.85); font-weight: 500; }
  /* 메인 페이지 — 챌린지 카드 아래 댓글 마키 */
  .ch1-entry-comments { background: var(--card); border-radius: 7px; padding: 14px 0 12px; margin-bottom: 16px; box-shadow: var(--shadow); }
  .ch1-entry-comments-title { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 1.5px; margin-bottom: 10px; text-align: center; }
  .ch1-entry-comments-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, black 8%, black 92%, transparent 100%); }
  .ch1-entry-comments-track { display: flex; gap: 10px; animation: ch1-entry-marquee 32s linear infinite; padding: 0 12px; }
  @keyframes ch1-entry-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ch1-entry-bubble { flex-shrink: 0; background: var(--bg-soft); padding: 10px 14px; border-radius: 4px; min-width: 230px; max-width: 280px; }
  .ch1-entry-bubble-name { font-size: 10px; font-weight: 700; color: var(--text-soft); margin-bottom: 4px; }
  .ch1-entry-bubble-body { font-size: 12px; line-height: 1.5; color: var(--text); font-weight: 500; }

  /* 2. AI 한 줄 진단 입력 (검사 마지막) */
  .ai-q-card { padding: 8px 0; }
  .ai-q-eyebrow { font-size: 12px; color: var(--text-soft); font-weight: 700; margin-bottom: 8px; letter-spacing: 1.5px; }
  .ai-q-text { font-size: 21px; font-weight: 700; line-height: 1.45; margin-bottom: 22px; letter-spacing: -0.3px; }
  .ai-q-input { width: 100%; padding: 16px; border: 2px solid var(--bg-soft); border-radius: 7px; font-family: inherit; font-size: 15px; resize: none; margin-bottom: 12px; background: var(--card); line-height: 1.5; }
  .ai-q-input:focus { border-color: var(--text-soft); outline: none; }
  .ai-q-meta { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }

  /* 3. AI 진단 결과 카드 */
  .ai-insight { background: var(--bg-soft); border-radius: 12px; padding: 22px 20px; margin-bottom: 14px; position: relative; overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid rgba(224,122,95,0.18); }
  .ai-insight::before { content: ""; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(224,122,95,0.18), transparent 60%); }
  .ai-insight-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; position: relative; }
  .ai-insight-eyebrow .ai-badge { background: var(--accent); color: white; padding: 2px 7px; border-radius: 12px; font-size: 9px; letter-spacing: 1px; }
  .ai-insight-quote { font-family: 'Noto Serif KR', Georgia, serif; font-size: 17px; font-weight: 500; line-height: 1.6; color: var(--text); position: relative; padding: 6px 0; letter-spacing: -0.2px; }
  .ai-insight-quote::before { content: "\"" ; font-size: 32px; color: var(--text-soft); opacity: 0.5; line-height: 0; vertical-align: -8px; margin-right: 4px; }
  .ai-insight-quote::after { content: "\""; font-size: 32px; color: var(--text-soft); opacity: 0.5; line-height: 0; vertical-align: -16px; margin-left: 2px; }
  .ai-insight-source { font-size: 11px; color: var(--text-soft); margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(224,122,95,0.25); position: relative; }
  .ai-insight-source b { color: var(--text); font-weight: 700; }
  .ai-insight-loading { padding: 24px 0; text-align: center; }
  .ai-insight-loading-dots { display: inline-flex; gap: 4px; margin-top: 8px; }
  .ai-insight-loading-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: sig-loading-blink 1.4s infinite both; }
  .ai-insight-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
  .ai-insight-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

  /* 4. 데일리 회복 미션 가챠 — 임팩트 강화 */
  .gacha-card { background: linear-gradient(135deg, #2A4D6E 0%, #1F3A55 100%); color: white; border-radius: 12px; padding: 24px 22px; margin-bottom: 14px; box-shadow: 0 12px 28px rgba(42,77,110,0.3); text-align: center; position: relative; overflow: hidden; }
  .gacha-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,217,61,0.25), transparent 65%); }
  .gacha-card::after { content: ""; position: absolute; bottom: -40px; left: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(255,107,138,0.2), transparent 65%); }
  .gacha-eyebrow { font-size: 11px; font-weight: 700; color: #FFFFFF; letter-spacing: 2.5px; margin-bottom: 8px; position: relative; }
  .gacha-title { font-size: 22px; font-weight: 700; line-height: 1.3; margin-bottom: 8px; letter-spacing: -0.5px; position: relative; color: white; }
  .gacha-title span { color: #FFFFFF; }
  .gacha-sub { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 22px; line-height: 1.55; position: relative; }
  .gacha-sub b { color: #FFFFFF; font-weight: 700; }
  .gacha-capsule { width: 150px; height: 150px; margin: 0 auto 20px; position: relative; cursor: pointer; }
  @keyframes gacha-shake { 0%, 100% { transform: rotate(0); } 20% { transform: rotate(-8deg); } 40% { transform: rotate(8deg); } 60% { transform: rotate(-6deg); } 80% { transform: rotate(6deg); } }
  .gacha-capsule.shaking { animation: gacha-shake 0.4s ease-in-out 3; }
  .gacha-capsule .top { position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); border-radius: 70px 70px 4px 4px; }
  .gacha-capsule .bot { position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: #8A7B6C; border-radius: 4px 4px 70px 70px; }
  .gacha-capsule .shine { position: absolute; top: 10%; left: 15%; width: 30%; height: 30%; background: rgba(255,255,255,0.6); border-radius: 50%; filter: blur(4px); }
  .gacha-capsule .label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-shadow: 0 1px 2px rgba(0,0,0,0.2); z-index: 2; }
  .gacha-btn { background: var(--accent); color: white; border: none; padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: var(--shadow-strong); }
  .gacha-result { display: none; }
  .gacha-result.show { display: block; animation: rc-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
  .mission-card { background: linear-gradient(135deg, var(--accent-soft) 0%, #FFFFFF 100%); border-radius: 12px; padding: 22px 20px; text-align: left; margin-bottom: 14px; position: relative; overflow: hidden; }
  .mission-card::before { content: ""; position: absolute; top: -30px; right: -30px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%); }
  .mission-badge { display: inline-block; background: var(--accent); color: white; padding: 4px 12px; border-radius: 12px; font-size: 10px; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; position: relative; }
  .mission-emoji { font-size: 42px; line-height: 1; margin-bottom: 8px; position: relative; }
  .mission-title { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 8px; position: relative; color: var(--text-soft); }
  .mission-desc { font-size: 13.5px; line-height: 1.6; color: var(--text); position: relative; margin-bottom: 12px; }
  .mission-time { font-size: 11px; color: var(--text-soft); font-weight: 700; position: relative; }
  .gacha-again-row { display: flex; gap: 8px; margin-top: 8px; }
  .gacha-again-btn { flex: 1; padding: 12px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .gacha-again-btn.outline { background: var(--bg-soft); color: var(--text-soft); }
  .gacha-again-btn.primary { background: var(--accent); color: white; }

  /* 5. 8유형 분포 지도 — 4분면 구조 */
  .map-card { background: var(--card); border-radius: 12px; padding: 22px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .map-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; }
  .map-title { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 6px; }
  .map-title .hl-strike { color: var(--text); }
  .map-sub { font-size: 12.5px; color: var(--text-soft); margin-bottom: 18px; line-height: 1.5; }

  /* 4분면 지도 */
  .map-quadrant { position: relative; padding: 38px 30px 38px 30px; margin: 0 auto 14px; }
  .map-axis-top, .map-axis-bottom, .map-axis-left, .map-axis-right {
    position: absolute; font-size: 11px; font-weight: 700; letter-spacing: -0.2px;
    background: var(--card); padding: 4px 10px; border-radius: 12px; z-index: 4; white-space: nowrap;
  }
  .map-axis-top { top: 0; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; box-shadow: 0 2px 6px rgba(224,122,95,0.3); }
  .map-axis-bottom { bottom: 0; left: 50%; transform: translateX(-50%); background: var(--bg-soft); color: var(--text-soft); }
  .map-axis-left { left: -4px; top: 50%; transform: translateY(-50%); background: var(--accent); color: white; box-shadow: 0 2px 6px rgba(224,122,95,0.3); }
  .map-axis-right { right: -4px; top: 50%; transform: translateY(-50%); background: var(--bg-soft); color: var(--text-soft); }

  .map-grid-q { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; position: relative; aspect-ratio: 1; max-width: 320px; margin: 0 auto; border: 2px solid var(--bg-soft); border-radius: 7px; padding: 4px; background: linear-gradient(135deg, rgba(224,122,95,0.04), rgba(141,168,192,0.04)); }
  .map-grid-q::before { content: ""; position: absolute; top: 50%; left: 4px; right: 4px; height: 1px; background: repeating-linear-gradient(90deg, var(--bg-soft) 0 6px, transparent 6px 12px); z-index: 0; }
  .map-grid-q::after { content: ""; position: absolute; left: 50%; top: 4px; bottom: 4px; width: 1px; background: repeating-linear-gradient(0deg, var(--bg-soft) 0 6px, transparent 6px 12px); z-index: 0; }
  .map-q { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 6px; border-radius: 4px; position: relative; }
  .map-q-cell { width: 100%; max-width: 60px; aspect-ratio: 1; border-radius: 4px; padding: 0; position: relative; overflow: hidden; opacity: 0.55; transition: opacity 0.3s, transform 0.2s; cursor: pointer; }
  .map-q-cell:hover { opacity: 0.92; transform: translateY(-2px); }
  .map-q-cell.you { opacity: 1; box-shadow: 0 0 0 3px var(--accent), 0 6px 14px rgba(224,122,95,0.45); transform: scale(1.1); z-index: 3; }
  .map-q-cell .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .map-q-cell .char-illustration svg { width: 92%; height: 92%; }
  .map-q-cell .label { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 1px 3px; text-align: center; color: white; font-size: 8.5px; font-weight: 700; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7) 50%); letter-spacing: -0.3px; line-height: 1.1; }
  .map-q-cell-wrap { position: relative; }
  .map-you-pin { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 3px 7px; border-radius: 12px; font-size: 8.5px; font-weight: 700; letter-spacing: 0.3px; white-space: nowrap; z-index: 10; box-shadow: 0 3px 8px rgba(224,122,95,0.5); pointer-events: none; }
  .map-you-pin::after { content: ""; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 6px; height: 6px; background: var(--accent); }

  .map-legend { background: var(--bg-soft); border-radius: 4px; padding: 12px 14px; font-size: 11.5px; color: var(--text-soft); line-height: 1.7; margin-top: 14px; }
  .map-legend-row { padding: 2px 0; }
  .map-legend-row b { color: var(--text); font-weight: 700; }
  .map-cta { margin-top: 12px; padding: 12px 14px; background: linear-gradient(135deg, var(--accent-soft) 0%, #FFFFFF 50%); border-radius: 4px; font-size: 13px; font-weight: 700; line-height: 1.5; color: var(--text); text-align: center; }
  .map-cta b { color: var(--text-soft); font-weight: 700; }

  /* 6. 라이브 피드 토스트 */
  .live-toast { position: fixed; top: 16px; left: 50%; transform: translateX(-50%) translateY(-100px); background: var(--card); padding: 10px 14px; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 10px; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); z-index: 50; max-width: 340px; }
  .live-toast.show { transform: translateX(-50%) translateY(0); }
  .live-toast .lt-char { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; overflow: hidden; position: relative; }
  .live-toast .lt-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .live-toast .lt-char .char-illustration svg { width: 100%; height: 100%; }
  .live-toast .lt-text { font-size: 12px; line-height: 1.4; flex: 1; color: var(--text); }
  .live-toast .lt-text b { color: var(--text-soft); font-weight: 700; }
  .live-toast .lt-time { font-size: 10px; color: var(--text-light); font-weight: 700; }

  /* 캡쳐 모드 풀스크린 오버레이 */
  /* 안구운동 권유 오버레이 */
  .eye-prompt-overlay { position: fixed; inset: 0; background: var(--dark); display: none; align-items: center; justify-content: center; flex-direction: column; z-index: 240; padding: 20px; }
  .eye-prompt-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
  .eye-prompt-content { width: 100%; max-width: 360px; text-align: center; color: white; position: relative; }
  .eye-prompt-close { position: absolute; top: -10px; right: -4px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); color: white; border: none; font-size: 16px; cursor: pointer; font-family: inherit; }
  .eye-prompt-emoji { font-size: 56px; margin-bottom: 14px; }
  .eye-prompt-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2.5px; margin-bottom: 12px; }
  .eye-prompt-title { font-size: 26px; font-weight: 700; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 14px; }
  .eye-prompt-sub { font-size: 14px; opacity: 0.85; line-height: 1.65; margin-bottom: 30px; }
  .eye-prompt-actions { display: flex; flex-direction: column; gap: 10px; max-width: 320px; margin: 0 auto; }
  .eye-prompt-btn { padding: 16px; border-radius: 7px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; border: none; }
  .eye-prompt-btn.primary { background: var(--accent); color: white; box-shadow: 0 6px 16px rgba(224,122,95,0.4); }
  .eye-prompt-btn.skip { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
  .eye-fullscreen-game { width: 100%; max-width: 360px; display: flex; flex-direction: column; align-items: center; }
  .eye-overlay-stage { width: 100%; aspect-ratio: 1; max-width: 320px; position: relative; background: rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 16px; overflow: hidden; }
  .eye-overlay-dot { position: absolute; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 28px rgba(224,122,95,0.5); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: left 2s ease-in-out, top 2s ease-in-out; z-index: 2; }
  .eye-overlay-instruction { position: absolute; bottom: 16px; left: 0; right: 0; font-size: 12px; color: rgba(255,255,255,0.7); text-align: center; font-weight: 700; }
  .eye-overlay-progress-track { width: 100%; max-width: 320px; height: 6px; background: rgba(255,255,255,0.12); border-radius: 12px; margin-bottom: 20px; overflow: hidden; }
  .eye-overlay-progress-fill { height: 100%; background: var(--accent); border-radius: 12px; width: 0; }
  .eye-overlay-actions { width: 100%; max-width: 320px; }

  .capture-overlay { position: fixed; inset: 0; background: rgba(20,15,12,0.92); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; flex-direction: column; z-index: 250; padding: 20px; }
  .capture-overlay.active { display: flex; animation: fadeIn 0.3s ease-out; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .capture-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); color: white; border: none; font-size: 18px; cursor: pointer; font-family: inherit; }
  .capture-hint { color: rgba(255,255,255,0.8); font-size: 12.5px; font-weight: 700; margin-bottom: 14px; text-align: center; padding: 8px 16px; background: rgba(255,255,255,0.1); border-radius: 12px; }
  .capture-card-wrap { width: 100%; max-width: 280px; }
  .capture-insta-card { aspect-ratio: 9/16; border-radius: 12px; box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
  .capture-download { margin-top: 18px; padding: 14px 26px; background: var(--accent); color: white; border: none; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 6px 16px rgba(224,122,95,0.4); }

  /* ==================================================================
     v10 신규: 아코디언 / 통합 공유 섹션 / 미니멀 인스타 / 새 타임오프클럽 / 푸터
     ================================================================== */

  /* 큰 캐릭터 카드: 한글 별명 크게, 영문 코드 핀 작게/하단 */
  .big-nickname-overlay { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; z-index: 2; }
  .big-nickname-overlay .name { font-size: 14px; font-weight: 700; color: white; letter-spacing: -0.2px; text-shadow: 0 2px 4px rgba(0,0,0,0.35); }
  .big-nickname-overlay .code { display: inline-block; margin-top: 4px; background: rgba(255,255,255,0.25); backdrop-filter: blur(6px); padding: 2px 8px; border-radius: 12px; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: white; opacity: 0.85; }

  /* 진단 아코디언 */
  .axis-evidence-toggle { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 0.5px; margin-top: 8px; cursor: pointer; user-select: none; padding: 4px 10px; background: rgba(224,122,95,0.08); border-radius: 12px; transition: background 0.2s; }
  .axis-evidence-toggle:hover { background: rgba(224,122,95,0.16); }
  .axis-evidence-toggle .arrow { display: inline-block; transition: transform 0.25s ease; font-size: 9px; }
  .axis-evidence-toggle.open .arrow { transform: rotate(180deg); }
  .axis-evidence { display: none; margin-top: 10px; padding: 12px 14px; background: #3D332C; border-radius: 4px; font-size: 12px; color: var(--text-soft); line-height: 1.6; }
  .axis-evidence.open { display: block; animation: ax-open 0.35s ease-out; }
  @keyframes ax-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

  /* 인생 카운터: 평균 기준 표시 */
  .lc-basis { display: inline-block; font-size: 10px; padding: 3px 8px; background: rgba(255,255,255,0.12); border-radius: 12px; margin-bottom: 10px; opacity: 0.8; letter-spacing: 0.3px; position: relative; }
  .lc-age-input-wrap { margin-top: 12px; padding: 12px 14px; background: rgba(255,255,255,0.08); border-radius: 4px; position: relative; }
  .lc-age-label { font-size: 11px; opacity: 0.7; margin-bottom: 6px; display: block; }
  .lc-age-row { display: flex; align-items: center; gap: 8px; }
  .lc-age-input { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 6px 12px; border-radius: 4px; font-family: inherit; font-size: 14px; font-weight: 700; width: 70px; text-align: center; }
  .lc-age-btn { background: var(--accent); color: white; border: none; padding: 7px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }

  /* 친구 지목 리스트 */
  .friend-tag-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
  .friend-tag-item { display: flex; align-items: center; gap: 12px; background: var(--bg); border: 2px solid transparent; border-radius: 7px; padding: 10px 12px; cursor: pointer; text-align: left; transition: border-color 0.15s, transform 0.15s; }
  .friend-tag-item:active { transform: scale(0.98); }
  .friend-tag-item.sel { border-color: var(--text-soft); background: rgba(224,122,95,0.14); }
  .friend-tag-char { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .friend-tag-char .char-illustration { width: 100%; height: 100%; }
  .friend-tag-char svg { width: 100%; height: 100%; display: block; }
  .friend-tag-body { flex: 1; min-width: 0; }
  .friend-tag-line { font-size: 13px; font-weight: 700; line-height: 1.45; letter-spacing: -0.2px; }
  .friend-tag-name { font-size: 11px; color: var(--text-soft); font-weight: 700; margin-top: 2px; }
  .friend-tag-check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: white; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0; transition: opacity 0.15s; }
  .friend-tag-item.sel .friend-tag-check { opacity: 1; }

  /* 유형 관계 + 친구 공유 통합 섹션 */
  .relation-share-card { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .rs-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
  .rs-title { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 6px; }
  .rs-sub { font-size: 13px; color: var(--text-soft); margin-bottom: 16px; line-height: 1.5; }
  .rs-match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
  .rs-match-card { background: var(--bg-soft); border-radius: 7px; padding: 14px 10px; text-align: center; cursor: pointer; transition: transform 0.2s; }
  .rs-match-card.anti { background: #3A2129; }
  .rs-match-card:hover { transform: translateY(-2px); }
  .rs-match-label { font-size: 10px; color: var(--text-light); font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
  .rs-match-char { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin: 0 auto 8px; position: relative; }
  .rs-match-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .rs-match-char .char-illustration svg { width: 100%; height: 100%; }
  .rs-match-name { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
  .rs-divider { height: 1px; background: var(--bg-soft); margin: 18px -4px 16px; position: relative; }
  .rs-divider::before { content: "친구에게 보내기"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--card); padding: 0 12px; font-size: 10px; font-weight: 700; color: var(--text-light); letter-spacing: 1px; }
  .rs-share-tease { font-size: 13.5px; font-weight: 700; line-height: 1.55; margin-bottom: 12px; color: var(--text); padding: 0 2px; }
  .rs-share-tease b { color: var(--text-soft); font-weight: 700; }
  .rs-share-buttons { display: flex; gap: 8px; }
  .rs-share-btn { flex: 1; padding: 14px 8px; border-radius: 4px; border: none; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .rs-share-btn:hover { transform: translateY(-2px); }
  .rs-share-btn.kakao { background: #FEE500; color: #2A2622; }
  .rs-share-btn.link { background: var(--bg-soft); color: var(--text); }
  .rs-share-icon { font-size: 16px; }
  .rs-incentive { margin-top: 12px; font-size: 11.5px; color: var(--text-light); text-align: center; line-height: 1.5; }
  .rs-incentive b { color: var(--text-soft); font-weight: 700; }

  /* 미니멀 인스타 카드 (이미지 중심) */
  .insta-minimal { background: var(--card); border-radius: 12px; padding: 22px 22px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .insta-minimal-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 4px; text-align: center; }
  .insta-minimal-title { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 14px; color: var(--text); }
  .insta-minimal .insta-preview-wrap { max-width: 240px; margin: 0 auto 14px; }
  .insta-minimal-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); color: white; border: none; border-radius: 4px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 6px 16px rgba(221,42,123,0.3); }
  .insta-minimal-btn:hover { transform: translateY(-1px); }
  .insta-minimal-icon { font-size: 16px; }

  /* === 새 타임오프클럽 처방 섹션 === */
  /* 시각 전환: 다른 페이지 느낌 — 다크 배너 + 배경 변화 */
  .rx-divider { margin: 24px -16px 0; padding: 36px 24px 32px; background: #FBF8F3; position: relative; overflow: hidden; }
  .rx-divider::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 60px; background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); }
  .rx-divider-eyebrow { font-family: var(--font-numeric); font-size: 10px; font-weight: 700; letter-spacing: 3.5px; color: var(--text-soft); text-align: center; margin-bottom: 14px; position: relative; }
  .rx-divider-title { font-size: 32px; font-weight: 700; line-height: 1.2; letter-spacing: -0.8px; text-align: center; margin-bottom: 8px; color: var(--text); position: relative; }
  .rx-divider-title .hl { color: var(--text-soft); }
  .rx-divider-sub { font-family: var(--font-core); font-style: italic; font-size: 13.5px; color: var(--text-soft); text-align: center; line-height: 1.6; position: relative; }
  .rx-divider-brand { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 16px; background: var(--dark); color: white; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: 2px; position: relative; }
  .rx-divider-brand-row { text-align: center; position: relative; }
  .rx-divider-brand .brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

  .rx-section { margin-top: 0; margin-bottom: 14px; padding: 24px 16px 16px; background: var(--bg); margin-left: -16px; margin-right: -16px; }
  .rx-bridge { background: var(--card); border-radius: 12px; padding: 24px 22px 26px; margin-bottom: 12px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
  .rx-bridge::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(224,122,95,0.12), transparent 70%); pointer-events: none; }
  .rx-bridge-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 10px; position: relative; }
  .rx-bridge-title { font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: -0.5px; margin-bottom: 14px; position: relative; }
  .rx-bridge-title .hl { color: var(--text-soft); }
  .rx-bridge-body { font-size: 14px; line-height: 1.65; color: var(--text-soft); position: relative; margin-bottom: 14px; }
  .rx-bridge-body b { color: var(--text); font-weight: 700; }
  .rx-prescription { background: var(--bg-soft); border-radius: 7px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; position: relative; }
  .rx-prescription-icon { width: 46px; height: 46px; border-radius: 50%; background: #3D332C; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
  .rx-prescription-icon svg { width: 100%; height: 100%; }
  .rx-prescription-text { font-size: 13px; line-height: 1.55; color: var(--text-soft); }
  .rx-prescription-text b { color: var(--text); font-weight: 700; }
  .rx-prescription-text .rx-tag { display: inline-block; background: var(--accent); color: white; padding: 2px 8px; border-radius: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; margin-left: 4px; }

  /* 사진 카드 (실제 사진 활용) */
  .rx-photo-card { background: var(--card); border-radius: 12px; overflow: hidden; margin-bottom: 12px; box-shadow: var(--shadow); }
  .rx-photo { width: 100%; aspect-ratio: 16/11; object-fit: cover; display: block; }
  .rx-photo.rx-no-phone { display: flex; align-items: center; justify-content: center; padding: 0; background: #3D332C; }
  .rx-photo.rx-no-phone svg { width: 100%; height: 100%; max-width: 360px; }
  .rx-photo-body { padding: 20px 22px 22px; }
  .rx-photo-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
  .rx-photo-title { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 10px; }
  .rx-photo-desc { font-size: 13.5px; line-height: 1.65; color: var(--text-soft); }
  .rx-photo-desc b { color: var(--text); font-weight: 700; }
  .rx-photo-bullets { margin-top: 12px; }
  .rx-photo-bullet { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.55; padding: 5px 0; color: var(--text); }
  .rx-photo-bullet::before { content: "·"; color: var(--text-soft); font-weight: 700; font-size: 18px; line-height: 1; margin-top: -2px; }

  /* 미니 메소드 카드 (스몰토크 + 사색 통합) */
  .method-mini-card { background: var(--bg-soft); border-radius: 7px; padding: 14px 16px; margin-top: 12px; }
  .method-mini-card.talk { background: #1F3350; }
  .method-mini-card.solo { background: #2E2447; }
  .method-mini-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  .method-mini-emoji { font-size: 22px; line-height: 1; }
  .method-mini-title { font-size: 16px; font-weight: 700; letter-spacing: -0.2px; color: var(--text); }
  .method-mini-body { font-size: 13px; line-height: 1.6; color: var(--text); }
  .method-mini-body b { color: var(--text-soft); font-weight: 700; }

  /* === v11 바이럴 강화 컴포넌트 === */

  /* 따끔한 한 줄 + 도발 헤드라인 */
  .harsh-card { background: linear-gradient(135deg, var(--dark) 0%, #4A3D34 100%); color: white; border-radius: 12px; padding: 24px 22px; margin-bottom: 14px; position: relative; overflow: hidden; }
  .harsh-card::before { content: ""; position: absolute; top: -50px; right: -50px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(224,122,95,0.4), transparent 65%); }
  .harsh-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2.5px; margin-bottom: 10px; position: relative; }
  .harsh-quote-label { font-family: 'Inter', 'Pretendard', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; opacity: 0.55; margin-bottom: 6px; position: relative; }
  .harsh-quote { font-size: 19px; font-weight: 700; line-height: 1.45; letter-spacing: -0.4px; color: #FFFFFF; position: relative; }
  .harsh-quote::before { content: "\201C"; font-size: 38px; line-height: 0; vertical-align: -14px; opacity: 0.5; margin-right: 4px; color: #FFFFFF; }
  .harsh-quote::after { content: "\201D"; font-size: 38px; line-height: 0; vertical-align: -22px; opacity: 0.5; margin-left: 2px; color: #FFFFFF; }
  .harsh-signature { margin-top: 14px; font-size: 12px; font-style: italic; color: rgba(255,255,255,0.55); text-align: right; font-family: var(--font-core); position: relative; }

  /* 의외의 모습 (Misconception) */
  .miscon-card { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); border: 1.5px solid var(--accent-soft); position: relative; }
  .miscon-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 8px; }
  .miscon-title { font-size: 18px; font-weight: 700; line-height: 1.35; letter-spacing: -0.3px; margin-bottom: 12px; }
  .miscon-title span { color: var(--text-soft); }
  .miscon-body { font-size: 14px; line-height: 1.7; color: var(--text); padding: 14px 16px; background: var(--bg-soft); border-radius: 4px; }
  .miscon-body b { color: var(--text-soft); font-weight: 700; }

  /* 미래 경고 카드 */
  .warn-card { background: #3A2129; border-radius: 12px; padding: 22px; margin-bottom: 14px; position: relative; overflow: hidden; border: 1.5px solid #702F3D; }
  .warn-card::before { content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(196,102,75,0.25), transparent 65%); }
  .warn-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; position: relative; display: flex; align-items: center; gap: 6px; }
  .warn-eyebrow .warn-dot { width: 8px; height: 8px; background: #C4664B; border-radius: 50%; animation: pulse 1.4s infinite; }
  .warn-title { font-size: 18px; font-weight: 700; line-height: 1.35; letter-spacing: -0.3px; margin-bottom: 12px; color: var(--text); position: relative; }
  .warn-body { font-size: 13.5px; line-height: 1.7; color: var(--text); position: relative; padding: 14px 16px; background: rgba(255,255,255,0.6); border-radius: 4px; }
  .warn-body b { color: var(--text-soft); font-weight: 700; }
  /* 의외 + 경고 통합 (간결화) */
  .miscon-warn-combo { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
  .mwc-card { padding: 24px 22px 22px; border-radius: 12px; margin-bottom: 0 !important; }
  .mwc-card .miscon-eyebrow, .mwc-card .warn-eyebrow { font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
  .mwc-card .miscon-body, .mwc-card .warn-body { font-size: 15px; line-height: 1.7; padding: 14px 16px; border-radius: 4px; font-weight: 500; }

  /* 타인 비교 카드 (충격적 정량화) */
  .compare-card { background: var(--card); border-radius: 12px; padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .compare-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; }
  .compare-title { font-size: 18px; font-weight: 700; line-height: 1.35; letter-spacing: -0.3px; margin-bottom: 16px; }
  .compare-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--bg-soft); font-size: 13.5px; line-height: 1.55; }
  .compare-row:last-child { border-bottom: none; padding-bottom: 0; }
  .compare-num { background: var(--accent-soft); color: var(--text-soft); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
  .compare-text { flex: 1; color: var(--text); }
  .compare-text b { color: var(--text-soft); font-weight: 700; font-size: 15px; }

  /* 8유형 등급표 (디지털 건강 순위) */
  .rank-card { background: var(--card); border-radius: 12px; padding: 22px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .rank-eyebrow { font-size: 11px; font-weight: 700; color: var(--text-soft); letter-spacing: 2px; margin-bottom: 6px; }
  .rank-title { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 6px; }
  .rank-sub { font-size: 12.5px; color: var(--text-soft); margin-bottom: 16px; line-height: 1.5; }
  .rank-list { display: flex; flex-direction: column; gap: 6px; }
  .rank-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 4px; background: var(--bg-soft); position: relative; cursor: pointer; transition: transform 0.2s; }
  .rank-row:hover { transform: translateX(2px); }
  .rank-row.you { background: linear-gradient(90deg, var(--accent-soft) 0%, #FFFFFF 100%); box-shadow: 0 0 0 2px var(--accent), 0 4px 12px rgba(224,122,95,0.3); }
  .rank-pos { font-family: var(--font-numeric); font-size: 18px; font-weight: 700; color: var(--text); width: 28px; text-align: center; flex-shrink: 0; letter-spacing: -1px; }
  .rank-row.you .rank-pos { color: var(--text-soft); }
  .rank-row .rank-medal { font-size: 16px; margin-right: 2px; }
  .rank-char { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; position: relative; flex-shrink: 0; }
  .rank-char .char-illustration { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
  .rank-char .char-illustration svg { width: 100%; height: 100%; }
  .rank-name { flex: 1; font-size: 13px; font-weight: 700; color: var(--text); }
  .rank-row.you .rank-name { color: var(--text); }
  .rank-name-pin { display: inline-block; background: var(--accent); color: white; padding: 1px 6px; border-radius: 12px; font-size: 9px; font-weight: 700; margin-left: 6px; letter-spacing: 0.5px; vertical-align: middle; }
  .rank-lv { font-family: var(--font-numeric); font-size: 11px; font-weight: 700; color: var(--text-soft); padding: 3px 8px; border-radius: 12px; background: white; flex-shrink: 0; }
  .rank-row.you .rank-lv { background: white; color: var(--text-soft); }

  /* 결과 카드 — 도발 헤드라인 라벨 */
  .result-provocative-label { display: inline-block; background: var(--dark); color: #FFFFFF; padding: 5px 14px; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 14px; }
  /* 결과 카드 v2 — 캡쳐 가능한 한 장 */
  .result-card-v2 { padding: 24px 22px 30px; position: relative; overflow: hidden; }
  .result-watermark { position: absolute; bottom: 10px; right: 14px; font-family: var(--font-numeric); font-size: 9px; font-weight: 700; letter-spacing: 1.2px; color: var(--text-light); opacity: 0.55; }
  .result-tagline-v2 { font-size: 13.5px; color: var(--text-soft); line-height: 1.55; margin-bottom: 16px; padding: 0 8px; }
  .result-lv-badge { display: inline-block; color: white; padding: 5px 14px; border-radius: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 18px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
  .result-phone-says { background: var(--bg-soft); border-radius: 12px; padding: 18px 18px 20px; margin: 0 -4px; text-align: left; position: relative; overflow: hidden; border: 1.5px solid rgba(224,122,95,0.18); }
  .result-phone-says::before { content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 65%); }
  .result-phone-says::after { content: ""; position: absolute; bottom: -20px; left: -20px; width: 80px; height: 80px; background: radial-gradient(circle, rgba(255,143,163,0.3), transparent 65%); }
  .result-phone-eyebrow { font-size: 10.5px; font-weight: 700; color: var(--text-soft); letter-spacing: 1.5px; margin-bottom: 8px; position: relative; }
  .result-phone-quote { font-size: 15.5px; font-weight: 700; line-height: 1.55; color: var(--text); letter-spacing: -0.2px; position: relative; }

  /* 일정·장소 박스 */
  .rx-info { background: var(--card); border-radius: 12px; padding: 20px 22px 22px; margin-bottom: 12px; box-shadow: var(--shadow); }
  .rx-info-title { font-size: 13px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 12px; }
  .rx-info-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bg-soft); font-size: 13px; }
  .rx-info-row:last-child { border-bottom: none; }
  .rx-info-row .label { font-size: 11px; color: var(--text-light); font-weight: 700; letter-spacing: 0.5px; width: 56px; flex-shrink: 0; }
  .rx-info-row .val { flex: 1; line-height: 1.5; }
  .rx-info-row .val b { color: var(--text); font-weight: 700; }
  .rx-spots-mini { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
  .rx-spots-mini .pill { background: var(--bg-soft); padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; color: var(--text-soft); }

  /* 메인 CTA */
  .rx-cta { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%); border-radius: 12px; padding: 24px 22px 22px; color: white; text-align: center; box-shadow: var(--shadow-strong); margin-bottom: 14px; position: relative; overflow: hidden; }
  .rx-cta::before { content: ""; position: absolute; top: -50px; right: -50px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); }
  .rx-cta-eyebrow { font-size: 11px; opacity: 0.85; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; position: relative; }
  .rx-cta-title { font-size: 22px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 6px; position: relative; }
  .rx-cta-sub { font-size: 13px; opacity: 0.9; margin-bottom: 16px; line-height: 1.5; position: relative; }
  .rx-cta-btn { background: white; color: var(--text-soft); border: none; padding: 16px 32px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: 0 4px 12px rgba(0,0,0,0.15); position: relative; letter-spacing: -0.2px; }
  .rx-cta-secondary { display: inline-block; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.85); text-decoration: underline; cursor: pointer; position: relative; }

  /* === 새 푸터 === */
  .footer-share { background: var(--card); border-radius: 12px; padding: 22px 22px 20px; margin-bottom: 14px; box-shadow: var(--shadow); }
  .footer-share-eyebrow { font-size: 11px; color: var(--text-soft); font-weight: 700; letter-spacing: 2px; margin-bottom: 6px; }
  .footer-share-title { font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 14px; }
  .footer-share-buttons { display: flex; gap: 8px; }
  .footer-share-btn { flex: 1; padding: 14px 8px; border-radius: 4px; border: none; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
  .footer-share-btn:hover { transform: translateY(-2px); }
  .footer-share-btn.kakao { background: #FEE500; color: #2A2622; }
  .footer-share-btn.link { background: var(--bg-soft); color: var(--text); }

  /* 친구 넛지 박스 (디지털 중독 친구 떠올리게) */
  .nudge-target-box { background: var(--bg-soft); border-radius: 4px; padding: 12px 14px; margin-bottom: 14px; }
  .nudge-target-item { font-size: 12.5px; line-height: 1.7; color: var(--text); padding: 3px 0; }

  .new-footer { padding: 18px 4px 24px; text-align: center; margin-top: 4px; }
  .new-footer-meta { font-size: 11px; color: var(--text-light); line-height: 1.7; padding: 16px 18px; background: var(--bg-soft); border-radius: 7px; margin-bottom: 18px; text-align: left; }
  .new-footer-meta b { color: var(--text-soft); font-weight: 700; }
  .new-footer-restart { display: inline-block; padding: 14px 36px; background: var(--card); color: var(--text); border: 2px solid var(--bg-soft); border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; box-shadow: var(--shadow); transition: transform 0.2s; }
  .new-footer-restart:hover { transform: translateY(-2px); }



/* ── 2. 친구 게이트·공유 카드 ── */
.gate-card{background:var(--card);border-radius:12px;padding:26px 22px 22px;box-shadow:var(--shadow);text-align:center;margin-bottom:18px;position:relative;overflow:hidden}
.gate-blur{filter:blur(13px) saturate(0.75);opacity:0.75}
.gate-char{width:132px;height:132px;border-radius:50%;margin:0 auto;overflow:hidden}
.gate-char svg{width:100%;height:100%;display:block}
.gate-lock{position:absolute;top:64px;left:50%;transform:translateX(-50%);font-size:38px;filter:drop-shadow(0 3px 8px rgba(42,38,34,0.3))}
.gate-caption{margin-top:14px;font-size:12px;font-weight: 700;letter-spacing:1px;color:var(--text-light)}
.gate-line{margin-top:12px;padding-top:14px;border-top:1px dashed var(--bg-soft);font-size:13.5px;color:var(--text-soft);line-height:1.6}
.gate-line b{color: var(--text-soft)}
.reveal-card{background:var(--card);border-radius:12px;padding:22px;margin-bottom:14px;box-shadow:var(--shadow);border:2px solid var(--accent)}
.reveal-eyebrow{font-size:11px;font-weight: 700;letter-spacing:2px;color: var(--text-soft);margin-bottom:16px;text-align:center}
.reveal-row{display:flex;align-items:center;justify-content:center;gap:12px}
.reveal-side{flex:1;text-align:center}
.reveal-char{width:74px;height:74px;border-radius:50%;margin:0 auto 8px;overflow:hidden}
.reveal-char svg{width:100%;height:100%;display:block}
.reveal-name{font-size:11.5px;color:var(--text-light);line-height:1.5;font-weight:700}
.reveal-name b{display:block;font-size:14px;color:var(--text);font-weight: 700}
.reveal-mid{flex-shrink:0;text-align:center;padding-bottom:20px}
.reveal-emoji{font-size:28px}
.reveal-label{font-size:11px;font-weight: 700;color: var(--text-soft);margin-top:2px;white-space:nowrap}
.reveal-text{margin-top:16px;font-size:13.5px;line-height:1.65;color:var(--text-soft);text-align:center}
.reveal-guess{margin-top:14px;background:var(--bg-soft);border-radius:4px;padding:12px 14px;font-size:12.5px;line-height:1.6;color:var(--text-soft);text-align:center}
.reveal-guess b{color:var(--text)}
.charm-card{background:var(--card);border-radius:12px;padding:22px;margin-bottom:14px;box-shadow:var(--shadow);display:flex;flex-direction:column;gap:16px}
.charm-block{border-left:none;padding-left:0}
.charm-label{font-size:11px;font-weight: 700;letter-spacing:1.5px;color: var(--text-soft);margin-bottom:7px}
.charm-block.shadow .charm-label{color:var(--text-light)}
.charm-text{font-size:14.5px;line-height:1.65;font-weight:600;letter-spacing:-0.2px}
.charm-block.shadow .charm-text{font-size:13.5px;color:var(--text-soft);font-weight:500}
.charm-kakao{border-top:1px dashed var(--bg-soft);padding-top:16px}
.charm-kakao-label{font-size:11.5px;color:var(--text-light);font-weight:700;margin-bottom:9px}
.charm-kakao-bubble{display:inline-block;background:#FFE56B;color:#2A2622;font-size:15px;font-weight: 700;padding:11px 17px;border-radius:16px 16px 16px 4px;letter-spacing:-0.3px}

  /* ==================================================================
     디지털 번아웃 테스트 리파인 레이어 — OG 카드 아트 디렉션
     - 웜 크림 캔버스(#FAF6F0→#F2EADE) + 코럴 액센트(#E07A5F)
     - 유형별 파스텔 그라디언트 커버 · 라운드 20px · 부드러운 웜 섀도우
     - 챌린지 계열만 다크 브라운 + 옐로(#FFD93D) 글로우
     ================================================================== */
  body { font-family: var(--font-core); background: linear-gradient(180deg, #FAF6F0 0%, #F2EADE 100%); background-attachment: fixed; letter-spacing: -0.01em; -webkit-font-smoothing: antialiased; }
  a { color: var(--accent-deep); text-decoration: none; }
  b, strong { font-weight: 700; }
  .serif, .signature-aside, .ai-insight-quote, .ch1-result-quote, .toc-hero-sub, .harsh-signature { font-family: 'Noto Serif KR', Georgia, serif; }

  /* ── 랜딩 히어로: OG 카드 무드 (말풍선 + 당신도 혹시 + 캐릭터 카드) ── */
  .hero-og { position: relative; padding: 8px 4px 4px; text-align: center; }
  .hero-eyebrow { font-family: var(--font-numeric); font-size: 11px; font-weight: 800; letter-spacing: 3.5px; color: var(--accent-deep); margin-bottom: 16px; }
  .hero-bubble { display: inline-block; position: relative; background: var(--card); border-radius: 16px; padding: 11px 18px; font-size: 15.5px; font-weight: 700; letter-spacing: -0.3px; box-shadow: 0 6px 20px rgba(42,38,34,0.09); margin-bottom: 20px; }
  .hero-bubble::after { content: ""; position: absolute; left: 26px; bottom: -9px; width: 16px; height: 16px; background: var(--card); clip-path: polygon(0 0, 100% 0, 30% 100%); }
  .hero-bubble .hb-inner { display: inline-block; transition: opacity 0.3s ease; }
  .hero-bubble.swapping .hb-inner { opacity: 0; }
  .hero-title { font-size: 34px; font-weight: 800; line-height: 1.22; letter-spacing: -1.2px; margin-bottom: 10px; color: var(--text); }
  .hero-title .hero-type-name { display: inline-block; transition: opacity 0.3s ease, transform 0.3s ease; }
  .hero-title.swapping .hero-type-name { opacity: 0; transform: translateY(6px); }
  .hero-sub { font-size: 13.5px; color: var(--text-soft); margin-bottom: 26px; }
  .hero-char-stage { position: relative; width: 226px; margin: 0 auto 24px; }
  .hero-char-card { position: relative; width: 100%; aspect-ratio: 1; border-radius: 28px; overflow: hidden; box-shadow: 0 22px 44px rgba(42,38,34,0.22); cursor: pointer; animation: hero-float 3.6s ease-in-out infinite; transition: opacity 0.3s ease; }
  .hero-char-card.swapping { opacity: 0; }
  .hero-char-card .char-illustration { position: absolute; inset: 0 0 13% 0; display: flex; align-items: center; justify-content: center; }
  .hero-char-card .char-illustration svg { width: 86%; height: 86%; }
  .hero-char-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 8px 13px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.45)); color: white; font-size: 15px; font-weight: 800; letter-spacing: -0.3px; text-align: center; }
  @keyframes hero-float { 0%, 100% { transform: rotate(1.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-8px); } }
  .hero-free-pill { position: absolute; top: -12px; right: -14px; background: var(--accent); color: white; font-size: 12px; font-weight: 800; padding: 7px 13px; border-radius: 10px; box-shadow: 0 8px 18px rgba(224,122,95,0.45); transform: rotate(6deg); z-index: 3; }
  .hero-dots { display: flex; gap: 5px; justify-content: center; margin-bottom: 22px; }
  .hero-dots span { width: 6px; height: 6px; border-radius: 50%; background: #DCD1C0; transition: all 0.3s; }
  .hero-dots span.on { background: var(--accent); width: 16px; border-radius: 4px; }

  /* ── 컨트롤: 코럴 필 버튼 + 웜 글로우 ── */
  .btn-primary, .ch1-entry-btn, .rx-cta-btn, .ai-optional-btn, .gacha-btn, .modal-close, .eye-start-btn, .pc-submit, .ch1-btn.primary, .ch1-result-btn.primary { border-radius: 16px; box-shadow: 0 8px 20px rgba(224,122,95,0.3); }
  .btn-primary:hover, .rx-cta-btn:hover, .ch1-entry-btn:hover { background: var(--accent-deep); }
  .mini-share-btn, .rs-share-btn, .footer-share-btn, .ch1-result-btn, .gacha-again-btn { border-radius: 14px; }
  .trust-pill, .ch1-stat-pill, .reveal-label { white-space: nowrap; }

  /* ── 카드 라운드·섀도우 하모나이즈 ── */
  .result-card, .section, .types-preview, .comments-card, .compare-card, .rank-card, .charm-card, .relation-share-card, .footer-share, .insta-minimal, .ai-optional, .ai-insight, .post-comment-card, .rx-bridge, .rx-photo-card, .rx-info, .rx-cta, .gate-card, .reveal-card, .mwc-card, .ch1-entry, .gacha-card, .lifetime-counter, .harsh-card, .eye-game-section, .map-card { border-radius: 20px; }
  .hook-item, .comment, .choice-btn, .st-app-card, .method-mini-card, .friend-tag-item, .mission-card, .rx-prescription { border-radius: 14px; }

  /* ── 콘트라스트 복구 (다크킷 잔재 정리) ── */
  .axis-evidence { background: var(--bg-soft); color: var(--text-soft); }
  .st-yearly { background: var(--bg-soft); }
  .st-yearly-big { color: var(--accent-deep); }
  .mini-share-bar { background: var(--dark-mid); box-shadow: 0 10px 26px rgba(45,37,32,0.3); }
  .pros-cons-card.pros { background: #EEF3E9; }
  .pros-cons-card.cons { background: #F7E9E4; }
  .pros .pros-cons-label { color: #6E8870; }
  .cons .pros-cons-label { color: #C46145; }
  .match-card.anti, .rs-match-card.anti { background: #F7E9E4; }
  .method-mini-card.talk, .method-mini-card.solo { color: #FFF8F0; }
  .method-mini-card.talk .method-mini-title, .method-mini-card.solo .method-mini-title { color: #FFF8F0; }
  .method-mini-card.talk .method-mini-body, .method-mini-card.solo .method-mini-body { color: rgba(255,248,240,0.88); }
  .method-mini-card.talk .method-mini-body b, .method-mini-card.solo .method-mini-body b { color: #FFD93D; }
  .mwc-card.warn-card { background: #3A2129; }
  .warn-card .warn-eyebrow { color: #E8B4A0; }
  .warn-card .warn-eyebrow .warn-dot { background: #E8B4A0; }
  .warn-card .warn-body { background: rgba(255,255,255,0.08); color: #F5E8E3; }
  .warn-card .warn-body b { color: #FFD93D; }
  .harsh-card [class*="eyebrow"], .lifetime-counter [class*="eyebrow"], .gacha-card [class*="eyebrow"] { color: rgba(255,248,240,0.65); }
  .lc-sub, .lc-headline { color: rgba(255,248,240,0.8); }
  .lc-sub b, .lifetime-counter b { color: #FFD93D; }

  /* ── 다크 밴드: 처방 전환부 ── */
  .rx-divider { background: linear-gradient(180deg, #2D2520 0%, #3D332C 100%); }
  .rx-divider-eyebrow { color: var(--accent); }
  .rx-divider-title { color: #FFF8F0; }
  .rx-divider-title .hl { color: #FFD93D; }
  .rx-divider-sub { color: rgba(255,248,240,0.75); font-style: normal; }
  .rx-divider-brand { background: rgba(255,255,255,0.1); color: #FFF8F0; }

  /* ── 번아웃 챌린지: 다크 브라운 + 옐로 글로우 (레퍼런스 배너) ── */
  .ch1-entry { background: linear-gradient(145deg, #33241A 0%, #241811 100%); box-shadow: 0 16px 36px rgba(36,24,17,0.35); }
  .ch1-entry-bg { display: block; background: radial-gradient(circle at 82% 16%, rgba(255,217,61,0.14), transparent 50%), radial-gradient(circle at 12% 88%, rgba(224,122,95,0.16), transparent 55%); }
  .ch1-entry-eyebrow { display: inline-block; background: #FFD93D; color: #33241A; font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 100px; letter-spacing: 0.5px; margin-bottom: 12px; }
  .ch1-entry-title .hl { color: #FFD93D; font-size: 1.3em; text-shadow: 0 0 26px rgba(255,217,61,0.55); }
  .ch1-entry-sub b { color: #FFD93D; }
  .ch1-entry-btn { background: #FFD93D; color: #33241A; box-shadow: 0 8px 22px rgba(255,217,61,0.32); }
  .ch1-entry-btn:hover { background: #F2C82E; }
  .ch1-overlay { background: linear-gradient(180deg, #241811 0%, #33241A 100%); }
  .ch1-ring-fill { stroke: #FFD93D; }
  .ch1-btn.primary { background: #FFD93D; color: #33241A; box-shadow: 0 6px 16px rgba(255,217,61,0.32); }
  .ch1-fact-body b { color: #FFD93D; }
  .ch1-time-num, .ch1-result-big, .lc-num, .compare-num, .rank-pos, .st-score-num { font-family: var(--font-numeric); font-variant-numeric: tabular-nums; }

  /* ── 마이크로 픽스 ── */
  .ds-icon { display: inline-flex; align-items: center; justify-content: center; vertical-align: -2px; }
  .ds-icon svg { display: block; }
  .axis-row-top { align-items: baseline; gap: 8px; }
  .axis-name { white-space: nowrap; flex: 1; }
  .rank-pos { display: inline-flex; align-items: center; justify-content: center; gap: 2px; width: auto; min-width: 34px; white-space: nowrap; }
  .type-char .char-name { font-weight: 700; }
  .types-preview-title .hl, .ch1-entry-title .hl, .rx-bridge-title .hl { background: none; -webkit-text-fill-color: currentColor; }
  .types-preview-title .hl { color: var(--accent-deep); }
  .rx-bridge-title .hl { color: var(--accent-deep); }
  .h1-main .strike { color: var(--accent-deep); }
  .upload-zone { background: #FBF8F3; }
  .rx-divider::before { display: none; }
