
/* 自定义光标 - 简约风格 */
* {
  cursor: default;
}

/* 图标卡片悬浮效果 */
.item-card-content {
  transition: all 0.3s ease !important;
  border-radius: 16px !important;
}
.item-card-content:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* 分组标题优化 */
.group-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  letter-spacing: 2px !important;
}

/* 底部信息 */
.footer {
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px !important;
  padding: 20px !important;
}

/* 运行计时器 - 改这里调大小和颜色 */
.site-timer {
  font-size: 16px !important;   /* 改这个数字调大小 */
  color: #00ff88 !important;     /* 改这个调颜色 */
  opacity: 0.9 !important;       /* 改这个调透明度 */
  font-weight: bold !important;
}

/* 滚动条美化 */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}
