/* static-site index: 顶部分类两行 + 游戏宫格每行 5 个（覆盖 dist style） */

header {
  height: auto;
  min-height: 70px;
}

header .head-hd .head-hd-l {
  align-items: flex-start;
}

header .head-hd .head-hd-l nav.site-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 8px;
  flex: 1;
  min-width: 0;
}

header .head-hd .head-hd-l nav.site-nav a {
  margin-left: 0 !important;
}

.site-nav__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
}

/* 首页游戏：固定 5 列；广告位占满一行 */
#index-games.index-games {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 10px;
  align-items: start;
}

#index-games.index-games > a {
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
  justify-self: center;
}

#index-games.index-games > a img:nth-child(1) {
  width: 100% !important;
  max-width: 148px;
  height: auto !important;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}

#index-games.index-games > .static-ad {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}
