.logo-mark svg { display: none !important; }
.logo-mark {
  background-image: url('/logo.png') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  width: 32px !important;
  height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  margin-right: 6px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

/* ===== 排行榜前三名紧凑化 ===== */
/* 强制3列横排，即使在移动端也不竖排 */
.top-three{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:10px!important;
  margin-bottom:14px!important;
}
.top-card{
  padding:12px 10px!important;
  text-align:center!important;
  background:var(--bg-white)!important;
}
.top-card:before{height:3px!important}
.top-medal{width:28px!important;height:28px!important;margin:0 auto 6px!important}
.top-medal .svg-icon{width:15px!important;height:15px!important}
.top-cover{width:60px!important;height:84px!important;margin:0 auto 8px!important}
.top-cover img{width:100%!important;height:100%!important;object-fit:cover!important}
.top-card h3{
  font-size:13px!important;
  margin-bottom:2px!important;
  line-height:1.3!important;
  display:-webkit-box!important;
  -webkit-line-clamp:1!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  color:var(--text)!important;
}
.top-card .author{
  font-size:11px!important;
  margin-bottom:6px!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  color:var(--text-muted)!important;
}
.top-stats{gap:10px!important;padding-top:8px!important}
.top-stat .num{font-size:14px!important;color:var(--primary)!important}
.top-stat .label{font-size:9px!important;color:var(--text-muted)!important}

/* 小屏手机（<480px）也保持3列，只是再缩小一点 */
@media (max-width:480px){
  .top-three{gap:6px!important;margin-bottom:10px!important}
  .top-card{padding:8px 6px!important}
  .top-medal{width:22px!important;height:22px!important;margin:0 auto 4px!important}
  .top-medal .svg-icon{width:12px!important;height:12px!important}
  .top-cover{width:48px!important;height:68px!important;margin:0 auto 6px!important}
  .top-card h3{font-size:11px!important}
  .top-card .author{font-size:10px!important;margin-bottom:4px!important}
  .top-stats{gap:6px!important;padding-top:6px!important}
  .top-stat .num{font-size:12px!important}
  .top-stat .label{font-size:8px!important}
}