/* 首页：彻底停止所有环境闪烁/漂移动画（元素保留，静态显示） */

/* 终端光标：3 秒一闪（亮 2.4s，闪灭 0.6s） */
.hero-terminal-body .cursor::after {
  animation: jiner-cursor-blink 3s steps(1, end) infinite !important;
}
@keyframes jiner-cursor-blink {
  0%, 80% { opacity: 1; }
  100% { opacity: 0; }
}

/* 向下滚动箭头：不再弹跳 */
.glass-scroll {
  animation: none !important;
  opacity: 1;
}

/* 背景 JINER/代码 字符漂移（art-drift） */
.glass-art-char {
  animation: none !important;
}

/* 背景几何形状脉冲（geo-pulse） */
.glass-geo {
  animation: none !important;
}

/* 其余潜在环境动画一并停掉（分隔线、粒子） */
.glass-divider,
.hero-particles,
.hero-particles * {
  animation: none !important;
}
