/* ZhangPu Blog - Base Styles */
:root {
    --bg: #fafafa;
    --surface: #fff;
    --border: #e5e5e5;
    --text: #333;
    --accent: #22c55e;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
