/* 基础平滑滚动与字体设置 */
html { 
    scroll-behavior: smooth; 
}

body { 
    background-color: #f5f6f8; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

/* 暗色模式背景：改为纯黑色 */
.dark body { 
    background-color: #000000; /* 纯黑色背景，OLED屏幕极致深邃 */
}

/* 隐藏滚动条但保留滚动功能 */
.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}
.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* 移动端点击高亮清除，防止出现蓝色闪烁块 */
* { 
    -webkit-tap-highlight-color: transparent; 
}