/* 页脚亚克力效果（毛玻璃） */
#footer {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* 深色模式页脚 */
[data-theme="dark"] #footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 页脚内边距优化 */
#footer-wrap {
  padding: 20px 0;
}

/* 页脚链接悬停效果 */
#footer a:hover {
  text-decoration: underline;
}

/* 页脚徽章样式优化 */
.github-badge {
  margin: 5px;
  border-radius: 4px;
  overflow: hidden;
}

.github-badge img {
  transition: transform 0.3s ease;
}

.github-badge img:hover {
  transform: scale(1.05);
}

/* 开站时间样式优化 */
#workboard {
  padding: 10px 0;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
}