/* 首页动态背景流光与滚动特效 */
@keyframes blob { 
    0% { transform: translate(0px, 0px) scale(1); } 
    33% { transform: translate(30px, -50px) scale(1.1); } 
    66% { transform: translate(-20px, 20px) scale(0.9); } 
    100% { transform: translate(0px, 0px) scale(1); } 
}
.animate-blob { animation: blob 7s infinite; } 
.animation-delay-2000 { animation-delay: 2s; }

html { scroll-behavior: smooth; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* 待审核新站：自动滚动动画特效 */
@keyframes scroll-y {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.auto-scroll-content {
    animation: scroll-y 20s linear infinite;
}