/* ===== 全站基础样式 ===== */

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: url("/images/background/bg.webp") no-repeat center center fixed;
  background-size: cover;
  color: #eee;
}

/* ===== 通用容器（首页 / 各专区） ===== */

.container {
  background: rgba(0, 0, 0, 0.65);
  max-width: 900px;
  margin: 80px auto;
  padding: 30px 40px;
  border-radius: 12px;
  box-sizing: border-box;
}

/* ===== 首页导航 ===== */

.nav {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.nav li {
  margin: 15px 0;
}

.nav a {
  color: #9ecbff;
  font-size: 20px;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

/* ===== 小说专区样式 ===== */

.novel {
  text-align: left;
  line-height: 1.9;
  font-size: 18px;
}

/* 小说段落自动缩进 */
.novel p {
  text-indent: 2em;
  margin: 16px 0;
}

/* 小说目录列表 */
.chapter-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.chapter-list li {
  margin: 14px 0;
}

.chapter-list a {
  color: #ffd479;
  text-decoration: none;
}

.chapter-list a:hover {
  text-decoration: underline;
}

/* 上一章 / 下一章 导航 */
.nav-chapter {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.nav-chapter a {
  color: #9ecbff;
  text-decoration: none;
}

.nav-chapter a:hover {
  text-decoration: underline;
}

/* ===== 链接通用 ===== */

a {
  color: #9ecbff;
}

/* ===== 手机适配（可选但推荐） ===== */

@media (max-width: 600px) {
  .container {
    margin: 40px 10px;
    padding: 20px;
  }

  .novel {
    font-size: 17px;
  }
}

