/* ============================================
   디자인 시스템 토큰 — 색 조합: 노션 · 모노톤 (다크 재구성)
   레시피 명시 값(포인트 블루/버튼 모양/폰트/아이콘) 그대로 유지,
   배경·서피스·텍스트만 다크 톤으로 반전
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

:root {
  /* 색 조합: 노션 · 모노톤 (다크) */
  --primary: #2383E2;
  --primary-hover: #4B9EFF;
  --text: #E9E9E7;
  --sub: #9B9B9B;
  --bg: #191919;
  --surface: #202020;
  --surface-2: #2A2A2A;
  --border: #2F2F2F;

  /* 상태 색 (더미 데이터 표현용) */
  --danger: #E2555A;
  --success: #4CAF7D;
  --gold: #D4A94D;

  /* 손금 4대 선 표시 색상 (사진 위 오버레이 ↔ 아래 결과 텍스트에 동일하게 사용) */
  --line-life: #EF6461;
  --line-head: #4FA8F5;
  --line-heart: #4CAF7D;
  --line-wealth: #D4A94D;

  /* 파생 토큰 */
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-btn: 0 6px 14px rgba(0, 0, 0, .25);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, .35);
  --header-height: 64px;
  --max-width: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

p { margin: 0 0 8px; color: var(--sub); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

/* 버튼 모양: 입체 그림자 (레시피 값 그대로) */
.btn {
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0, 0, 0, .35); background: var(--primary-hover); }
.btn:active { transform: translateY(0); }
.btn:disabled { background: var(--sub); box-shadow: none; cursor: not-allowed; transform: none; opacity: .5; }

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface-2); color: var(--primary-hover); box-shadow: none; transform: none; }

/* 아이콘: 솔리드 (채움) */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  display: inline-block;
  vertical-align: middle;
}
