:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --green: #10b981;
    --green-dark: #059669;
    --red: #ef4444;
    --red-dark: #dc2626;
    --dark: #111827;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

html {
    font-size: 16px;
}

body {
    font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
    background: var(--light-gray);
    color: var(--dark);
    line-height: 1.5;
}

a {
    color: inherit;
}