/* 自定义CSS样式 */
/* 视觉微优化：改进可读性与可访问性 */
:root { color-scheme: light dark; }
img { max-width: 100%; height: auto; }
a { text-underline-offset: 2px; }
.prose a { color: #2563eb; }

/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* 文本域自定义样式 */
textarea:focus {
    outline: none;
}

/* 工具框过渡动画 */
.tool-card-transition {
    transition: all 0.3s ease-out;
}

/* 自定义字体使用 */
body {
    font-family: 'SF Pro Display', 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
 