.GameList_wrapper__hZmn1 {
  min-height: 100vh;
  background: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  width: 100%;
}
.GameList_headerBar__5mKbx {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--positive-color);
  margin-bottom: 32px;
  width: 100%;
  max-width: 700px;
  flex-direction: row; /* 明确指定方向 */
}
.GameList_headerIcon__Q8cSd {
  font-size: 26px;
  flex-shrink: 0; /* 防止图标被压缩 */
}
.GameList_headerTitle__FcC0q {
  font-size: 22px;
  font-weight: 700;
  margin: 0; /* 重置h1的默认margin */
  padding: 0; /* 重置h1的默认padding */
  line-height: 1; /* 重置行高 */
  display: inline; /* 确保内联显示 */
  flex-shrink: 0; /* 防止标题被压缩 */
}
.GameList_cardGrid__FzSDE {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}
.GameList_gameCard__L_5Jx {
  background: var(--background-color);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 24px 18px 18px 18px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s;
  gap: 10px;
}
.GameList_gameCard__L_5Jx:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.03);
}
.GameList_imgBox__gAIzB {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.GameList_img__HV7_m {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  background: var(--passive-color);
}
.GameList_gameName__xXcQ0 {
  font-size: 17px;
  font-weight: 700;
  color: var(--active-color);
  margin: 0 0 2px 0; /* 重置h2的默认margin */
  text-align: center;
}
.GameList_gameDesc__sDzc8 {
  font-size: 15px;
  color: var(--passive-color);
  text-align: center;
  margin: 0 0 8px 0; /* 重置p的默认margin */
}
.GameList_playBtn__dT5_Y {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: linear-gradient(90deg, var(--positive-color) 60%, var(--strong-color) 100%);
  color: var(--background-color);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: opacity 0.2s, background 0.18s;
  text-decoration: none;
  margin-top: 6px;
}
.GameList_playBtn__dT5_Y:hover {
  opacity: 0.92;
  background: linear-gradient(90deg, var(--strong-color) 0%, var(--positive-color) 100%);
}

@media (max-width: 700px) {
  .GameList_cardGrid__FzSDE {
    gap: 14px;
    max-width: 99vw;
  }
  .GameList_gameCard__L_5Jx {
    width: 98vw;
    max-width: 340px;
    padding: 14px 4px 12px 4px;
  }
  .GameList_imgBox__gAIzB {
    height: 80px;
  }
  .GameList_gameName__xXcQ0 {
    font-size: 15px;
  }
  .GameList_playBtn__dT5_Y {
    font-size: 14px;
    padding: 7px 14px;
  }
} 
