@charset "UTF-8";
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  line-height: var(--spacing);
  background-color: transparent; /* ✅ 背景透明 */
  box-shadow: none; /* ✅ 移除阴影 */
  color: var(--text); /* ✅ 使用全局文字色 */
}

footer a {
  color: var(--text) !important;
}

footer a:hover {
  color: var(--primary) !important;
}

footer .icon {
  font-size: var(--xl);
}

/*# sourceMappingURL=footer.css.map */