:root {
  --red: #E30613;
  --red-dark: #C00510;
  --red-soft: #FFE9EB;
  --ink: #1A1A1A;
  --ink-2: #4A4A4A;
  --ink-3: #8A8A8A;
  --line: #EAEAEA;
  --line-2: #F2F2F2;
  --bg: #F7F7F8;
  --card: #FFFFFF;
  --yellow: #FFCC33;
  --green: #00A85A;
  --warm: #FFF6E8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4d4d4; border-radius: 5px; }
#root { min-height: 100vh; }
