/* 自定义平滑滚动与美化样式 */
html {
    scroll-behavior: smooth;
}

/* 自定义暗色滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* 渐变文本背景动画 */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.35;
    }
}

.animate-glow {
    animation: pulse-glow 6s infinite ease-in-out;
}
