/* 停止所有背景动画效果 */
.main-content .wave-effect {
    animation: none !important;
}

.main-content .glow-effect {
    animation: none !important;
}

.main-content::before {
    animation: none !important;
}

.main-content::after {
    animation: none !important;
}

/* 停止渐变动画 */
.main-content {
    animation: none !important;
}

/* 停止粒子浮动动画 */
.main-content * {
    animation: none !important;
}

/* 确保动画完全停止 */
.wave-effect,
.glow-effect {
    animation: none !important;
    transition: none !important;
}

/* 停止所有keyframes动画 */
@keyframes waveMove {
    /* 动画已停止 */
}

@keyframes glowPulse {
    /* 动画已停止 */
}

@keyframes gradientShift {
    /* 动画已停止 */
}

@keyframes particleFloat {
    /* 动画已停止 */
} 