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

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

  body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.8;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  /* ── Custom Scrollbar ── */
  * {
    scrollbar-width: thin;
    scrollbar-color: #3a3a5c var(--bg-body);
  }
  *::-webkit-scrollbar { width: 8px; height: 8px; }
  *::-webkit-scrollbar-track { background: var(--bg-body); border-radius: 4px; }
  *::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
  *::-webkit-scrollbar-thumb:hover { background: var(--concept); }
