* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Microsoft YaHei", sans-serif;
  background-color: #f2f4f8;
  color: #222;
  line-height: 1.8;
  padding-bottom: 40px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航 */
.navbar {
  background: #111827;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}
.navbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
}
.nav-menu a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #38bdf8;
}

/* 卡片模块 */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.sec-title {
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  padding-left: 12px;
}
.sec-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #38bdf8;
  border-radius: 2px;
}

/* 简介 */
.intro-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.intro-cover {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.intro-info {
  flex: 1;
  min-width: 280px;
}
.intro-info p {
  margin-bottom: 14px;
  font-size: 15px;
}

/* 下载 */
.download-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.download-item {
  flex: 1;
  min-width: 260px;
  background: #f8fafc;
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
}
.download-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #38bdf8;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}
.btn:hover {
  background: #229bd1;
}

/* 剧情 */
.story-text p {
  margin-bottom: 14px;
  font-size: 15px;
}
.slogan {
  margin-top: 20px;
  font-size: 16px;
  color: #38bdf8;
  font-weight: bold;
}

/* 特色 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-box {
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
}

/* 攻略 */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.guide-card {
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
}
.guide-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}
.guide-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}
.guide-tip {
  margin-top: 20px;
  background: #e0f2fe;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 15px;
}

/* 截图 - 高级展示效果 */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.shot-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.shot-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}


/* 评价 + 星级 */
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
}
.stars {
  font-size: 18px;
  color: #fbbf24;
  margin-bottom: 10px;
}
.comment-item p {
  font-size: 15px;
  margin-bottom: 8px;
}
.comment-item span {
  font-size: 14px;
  color: #666;
}

/* 底部 */
footer {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #666;
}