/* ==========================================
   테마 변수 정의 (기본: 다크 모드)
   ========================================== */
:root {
  --bg-color: #0f172a;
  --card-bg: #1e293b;
  --text-main: #f8fafc;
  --text-sub: #94a3b8;
  --accent-color: #38bdf8;
  --border-color: #334155;
  --code-bg: #0b1329;
  --header-bg: rgba(15, 23, 42, 0.9);
  --footer-bg: #0b1120;
}

/* 라이트 모드 변수 */
[data-theme="light"] {
  --bg-color: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-sub: #475569;
  --accent-color: #0284c7;
  --border-color: #e2e8f0;
  --code-bg: #f1f5f9;
  --header-bg: rgba(255, 255, 255, 0.9);
  --footer-bg: #f1f5f9;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: background-color 0.3s, color 0.3s;
}

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

a:hover {
  text-decoration: underline;
}
