/* 定义颜色变量 */
/* 全局基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* 整体页面包裹器 - 开始按层级嵌套 */
.page-wrapper {
  padding-top: 94px;
  /* 1. 顶部 Hero 区域 */
  /* 2. 截图展示区域 */
  /* 3. 视频与介绍区域 */
  /* 4. 评价轮播区域 */
  /* 4. 评价轮播区域 */
}
.page-wrapper .hero-section {
  background-color: #1f1f1f;
  padding: 60px 0;
}
.page-wrapper .hero-section .hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-wrapper .hero-section .hero-container .hero-text-content {
  flex: 1;
  max-width: 600px;
}
.page-wrapper .hero-section .hero-container .hero-text-content .hero-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.page-wrapper .hero-section .hero-container .hero-text-content .hero-title-wrap .game-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  margin-right: 20px;
  object-fit: cover;
}
.page-wrapper .hero-section .hero-container .hero-text-content .hero-title-wrap .game-title {
  font-size: 52px;
  font-weight: 300;
}
.page-wrapper .hero-section .hero-container .hero-text-content .game-desc {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.page-wrapper .hero-section .hero-container .hero-text-content .download-btns {
  display: flex;
  gap: 15px;
}
.page-wrapper .hero-section .hero-container .hero-text-content .download-btns .btn-img {
  height: 45px;
  cursor: pointer;
  border-radius: 6px;
}
.page-wrapper .hero-section .hero-container .hero-image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.page-wrapper .hero-section .hero-container .hero-image-content .phone-mockup {
  max-width: 280px;
  height: auto;
}
.page-wrapper .screenshots-section {
  background-color: #9dbace;
  padding: 50px 0;
}
.page-wrapper .screenshots-section .screenshots-container {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.page-wrapper .screenshots-section .screenshots-container .screenshot-img {
  width: 18%;
  height: auto;
  border: 4px solid #7899a8;
  border-radius: 4px;
  object-fit: cover;
}
.page-wrapper .video-section {
  background-color: #92b1c4;
  padding: 70px 0;
}
.page-wrapper .video-section .video-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.page-wrapper .video-section .video-container .video-wrapper {
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-wrapper .video-section .video-container .video-wrapper .img-url {
  width: 300px;
}
.page-wrapper .video-section .video-container .video-wrapper .promo-video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.page-wrapper .video-section .video-container .video-text-wrapper {
  flex: 1;
}
.page-wrapper .video-section .video-container .video-text-wrapper .section-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 15px;
}
.page-wrapper .video-section .video-container .video-text-wrapper .divider {
  width: 60px;
  height: 1px;
  background-color: #ffffff;
  border: none;
  margin-bottom: 25px;
}
.page-wrapper .video-section .video-container .video-text-wrapper .section-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.page-wrapper .review-section {
  background-color: #88a7ba;
  padding: 60px 0 40px 0;
  text-align: center;
  /* 依然是没有 & 的写法 */
}
.page-wrapper .review-section .carousel-content {
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
}
.page-wrapper .review-section .carousel-content .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  /* 强制不换行，保证轨道水平排列 */
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.page-wrapper .review-section .carousel-content .carousel-track .carousel-item {
  width: 100%;
  flex-shrink: 0;
  /* 防止宽度和高度被强行挤压 */
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-wrapper .review-section .carousel-content .carousel-track .carousel-item .stars {
  color: #ffcc00;
  font-size: 36px;
  margin-bottom: 15px;
  letter-spacing: 5px;
}
.page-wrapper .review-section .carousel-content .carousel-track .carousel-item .review-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  /* 清除默认外边距，防止撑破 overflow: hidden 容器 */
  text-align: center;
}
.page-wrapper .review-section .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page-wrapper .review-section .carousel-dots .dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
.page-wrapper .review-section .carousel-dots .dot.active {
  background-color: #ffffff;
}
/* 移动端响应式布局适配 (媒体查询内的嵌套) */
@media (max-width: 768px) {
  .page-wrapper .hero-section .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-wrapper .hero-section .hero-container .hero-text-content {
    margin-bottom: 40px;
  }
  .page-wrapper .hero-section .hero-container .hero-text-content .hero-title-wrap {
    flex-direction: column;
    justify-content: center;
  }
  .page-wrapper .hero-section .hero-container .hero-text-content .hero-title-wrap .game-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-wrapper .hero-section .hero-container .hero-text-content .download-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
  .page-wrapper .hero-section .hero-container .hero-image-content {
    justify-content: center;
  }
  .page-wrapper .screenshots-section .screenshots-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-wrapper .screenshots-section .screenshots-container .screenshot-img {
    width: 45%;
    margin-bottom: 15px;
  }
  .page-wrapper .video-section .video-container {
    flex-direction: column;
    text-align: center;
  }
  .page-wrapper .video-section .video-container .video-text-wrapper .divider {
    margin: 0 auto 25px auto;
  }
}
/*# sourceMappingURL=app.css.map */