/* 全站统一 footer — 与首页 index.html 保持一致 */
.site-footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 32px;
  padding: 28px 20px 38px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.65), rgba(0, 0, 0, 0.92));
}

.site-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0 0 12px;
  padding: 0;
}

.site-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.site-footer-links a:hover {
  color: #8800dd;
}

.site-footer-copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
  .site-footer {
    margin-bottom: 24px;
    padding: 24px 16px 34px;
  }

  .site-footer-links {
    gap: 10px 16px;
  }

  .site-footer-links a {
    font-size: 13px;
  }
}
