/* 全局样式 */
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  background-image: none; /* 移除背景图片 */
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* 标题样式 */
.game-title {
  font-size: 56px;
  font-weight: bold;
  color: #FF0000;
  text-align: center;
  margin-top: 50px;
}

/* 描述样式 */
.game-description {
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

/* 新人福利样式 */
.newbie-benefits {
  text-align: center;
  margin-top: 30px;
}

.newbie-benefits h2 {
  font-size: 29px;
  font-weight: bold;
  color: #FF00FF;
}

.newbie-benefits p {
  font-size: 25px;
  color: #ff2323;
}

/* 操作链接样式 */
.action-links {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-download,
.btn-play,
.btn-recharge {
  margin: 0 10px;
}

.btn-download img,
.btn-play img,
.btn-recharge img {
  height: 119px;
  border: 0;
}

/* 装备展示样式 */
.equipment-display {
  text-align: center;
  margin-top: 30px;
}

.equipment-display h2 {
  font-size: 24px;
  font-weight: bold;
  color: #414141;
}

.equipment-display img {
  max-width: 100%;
  height: auto;
}

/* 浮动栏样式 */
#Floatingbar {
  width: 115px;
  position: fixed;
  top: 68%;
  right: 10px;
  z-index: 11500;
}

#Floatingbar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#Floatingbar ul li {
  margin-bottom: 2px;
  padding-bottom: 31px;
  background: url() no-repeat center bottom;
}

#Floatingbar ul li:last-child {
  padding-bottom: 0px;
  background: none;
}

#Floatingbar ul li a {
  width: 115px;
  height: 80px;
  line-height: 1.33;
  text-align: center;
  font-size: 15px;
  color: #fee8b8;
  padding-top: 35px;
  background: url(images/kefu.png) no-repeat left top;
  display: block;
}

#Floatingbar ul li a:hover {
  background-position: left bottom;
  color: #ffdb63;
}

/* 底部通知样式 */
.notice {
  font-size: 18px;
  color: #CCFF00;
  text-align: center;
  margin-top: 50px;

}