/* 滚动条补偿 */
html {
    scrollbar-gutter: stable;
}

/* 字体，背景 */
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

/* 主体 */
main {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 768px;
    overflow: hidden;
}

/* 大标题 */
h1 {
    font-weight: 600;
    font-size: 2.25em;
    color: var(--text-title);
    /* border-bottom: 2px solid var(--border); */
    padding-bottom: 0.3em;
}

/* 链接 */
a {
    color: var(--accent);
    text-decoration: none;
    text-underline-offset: 4px;
}

a:hover {
    text-decoration: underline;
}

/* 白天模式建议：高亮度、低饱和度的半透明蓝 */
/* ::selection {
    background-color: rgba(0, 122, 255, 0.3);
    color: inherit;
} */
