/* 轮播图容器样式 */
.game-features-swiper {
  width: 90%;
  height: 100%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  overflow: hidden;
}

/* 确保图片适应容器 */
.game-features-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 100px;
  z-index: 100;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 覆盖Swiper默认样式 */
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
  .game-features-swiper {
    width: 90%;
    height: 70%;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    top: 150px;
  }
}
