/* 1. 现代化全局变量与重置 */
:root {
    --primary-color: #d4af37; /* 替代金黄色，更显质感 */
    --bg-body: #f9f9f9;
    --card-bg: #ffffff;
    --text-main: #333;
    --text-muted: #666;
    --code-bg: #282c34;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --radius: 12px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

/* 2. 导航栏优化 (假设 header.css 已经处理，这里做补充) */
header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
header ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
header a {
    color: var(--text-muted);
    font-size: 15px !important;
    transition: color 0.3s ease;
}
header a:hover, header a.active {
    color: var(--primary-color) !important;
}
