/* 首页 Hero 渐变背景 */
#intro .overlay {
  background:
    linear-gradient(
      135deg,
      rgba(245, 183, 0, 0.1) 0%,
      rgba(249, 250, 251, 0.1) 39.9%,
      rgba(249, 250, 251, 0.1) 59.62%,
      rgba(29, 78, 216, 0.1) 100%
    ),
    linear-gradient(0deg, #F9FAFB, #F9FAFB);
}
/* 首屏“向下滚动”按钮：提高对比度 */
#intro .scroll-btn {
  position: absolute;       /* 如果原主题已经定位了，这行可无影响 */
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.45); /* 半透明深底，保证在亮背景上清楚 */
  color: #fff !important;          /* 箭头变白 */
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

#intro .scroll-btn i {
  font-size: 20px;
  line-height: 1;
}

/* 悬停/聚焦反馈 */
#intro .scroll-btn:hover,
#intro .scroll-btn:focus {
  background: rgba(0, 0, 0, 0.6);
  color: #fff !important;
  outline: none;
}
