/* ===== 全站公共页脚 ===== */
.glow-line {
  height: 1px;
  margin: 1.2rem 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,245,255,0.7),
    rgba(255,43,214,0.7),
    transparent
  );
  box-shadow: 0 0 12px rgba(0,245,255,0.35);
}

.footer {
  margin-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .footer {
    align-items: flex-start;
    font-size: 0.85rem;
  }
}
