body {
  font-family: 'Arial', sans-serif;
  background-color: #E3F2FD;  /* 淡蓝色背景 */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.game-list {
  max-width: 600px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;  /* 添加圆角 */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);  /* 添加阴影效果 */
  transition: transform 0.2s;  /* 添加变换动画效果 */
}

.game-list:hover {
  transform: scale(1.05);  /* 当鼠标悬停时，稍微放大容器 */
}

h1 {
  text-align: center;
  color: #FF5252;  /* 调整标题颜色 */
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 4px solid #FFD740;  /* 下面添加黄色边框 */
  padding-bottom: 10px;
  display: inline-block;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 15px;
  text-align: center;  /* 将链接居中 */
}

a {
  text-decoration: none;
  color: #FFF;
  background-color: #FF5252;  /* 调整为鲜红色背景 */
  padding: 15px 25px;
  border-radius: 50px;  /* 让链接边角更加圆滑 */
  transition: background-color 0.3s, transform 0.2s;  /* 添加背景颜色和变换动画效果 */
  font-size: 1.1em;
  display: inline-block;  /* 使链接可以应用垂直方向的样式 */
}

a:hover {
  background-color: #FFD740;  /* 悬停时改变为黄色背景 */
  transform: scale(1.1);  /* 当鼠标悬停时，稍微放大链接 */
}
