/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
}

/* 浅色网格微弱暗纹背景 */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: -9;
}

/* 蓝紫流光渐变边框动画卡片 */
.gradient-border-card {
    position: relative;
    background: #ffffff;
    border-radius: 1rem;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}