* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", sans-serif;
  background: #F0F2F5; /* 页面背景：浅灰蓝 */
  color: #333647; /* 正文颜色：深灰 */
  line-height: 1.7;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 导航 */
.navbar {
  background: #1A2035; /* 导航栏背景：深靛蓝 */
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-menu a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
}
.nav-menu a:hover {
  color: #4A90E2; /* 强调色：浅蓝（hover效果） */
}

/* 区块 */
.section {
  background: #FFFFFF; /* 卡片/主体背景：纯白 */
  border-radius: 8px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.title {
  font-size: 20px;
  margin-bottom: 18px;
  color: #22263A; /* 标题颜色：深灰蓝 */
  border-left: 4px solid #4A90E2; /* 强调色：浅蓝（标题边框） */
  padding-left: 10px;
}

/* 简介（适配380×500缩略图，固定尺寸） */
.intro-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.intro-img {
  flex-shrink: 0;
  width: 380px; /* 固定缩略图容器宽度，避免挤压 */
  height: 500px; /* 固定缩略图容器高度，匹配图片尺寸 */
}
.intro-img img {
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
  height: 100%; /* 继承容器尺寸，确保380×500适配 */
}
.img-tip {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  text-align: center;
}
.intro-text {
  flex: 1;
  min-width: 280px;
}

/* 下载 */
.download-box {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.dl-item {
  text-align: center;
  min-width: 180px;
}
.dl-item h3 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #22263A; /* 标题颜色：深灰蓝 */
}
.dl-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4A90E2; /* 强调色：浅蓝（按钮背景） */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.dl-btn:hover {
  background: #357adb; /* 强调色加深（按钮hover） */
}

/* 剧情 */
.story-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

/* 特色 */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  background: #f8f9fa;
  padding: 14px;
  border-radius: 6px;
}
.feature-item h4 {
  margin-bottom: 6px;
  color: #22263A; /* 标题颜色：深灰蓝 */
}

/* 攻略 */
.guide-content h3 {
  font-size: 16px;
  margin: 14px 0 8px;
  color: #22263A; /* 标题颜色：深灰蓝 */
}

/* 截图（横图样式，800×450px适配） */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* 适配横图宽度，避免挤压 */
  gap: 16px;
}
.shot-item {
  width: 100%;
  height: auto; /* 自适应横图高度 */
}
.shot-item img {
  width: 100%;
  height: 225px; /* 对应800×450横图比例（1:1.78），缩放适配 */
  border-radius: 6px;
  object-fit: cover; /* 保证横图完整显示，不拉伸变形 */
  object-position: center; /* 居中显示，避免裁剪关键内容 */
}
.shot-tip {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* 评价 */
.comment-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.comment-item:last-child {
  border-bottom: none;
}
.comment-item .name {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
  color: #22263A; /* 标题颜色：深灰蓝 */
}
.comment-item .text {
  color: #333647; /* 正文颜色：深灰 */
}
.comment-item .star {
  color: #FFD700; /* 星级颜色：金黄色 */
  margin: 4px 0;
}

/* 底部 */
footer {
  background: #1A2035; /* 底部背景：深靛蓝 */
  color: #ccc;
  text-align: center;
  padding: 18px 0;
  margin-top: 30px;
  font-size: 14px;
}