:root {
    color-scheme: light;
    --white: #ffffff;
    --bg: #ffffff;
    --line: #e8e8e8;
    --line-strong: #111111;
    --ink: #111111;
    --ink-secondary: #555555;
    --ink-tertiary: #999999;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
