/* 完整游戏攻略页 game_guide.htm */

html {
  scroll-behavior: smooth;
}

:root {
  --gg-bg: #0a0907;
  --gg-surface: rgba(22, 19, 15, 0.88);
  --gg-gold: #d4af37;
  --gg-gold-soft: #c9a227;
  --gg-text: #e4d9c4;
  --gg-muted: #958a78;
  --gg-link: #9ec5e8;
  --gg-accent: #c75c5c;
  --gg-radius: 10px;
}

.guide-body {
  margin: 0;
  min-height: 100vh;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gg-text);
  background-color: var(--gg-bg);
  background-image:
    radial-gradient(ellipse 120% 60% at 50% -8%, rgba(140, 60, 50, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #15120f 0%, var(--gg-bg) 42%, #060504 100%);
  -webkit-font-smoothing: antialiased;
}

.guide-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
  display: grid;
  grid-template-columns: 188px 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 960px) {
  .guide-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .guide-toc {
    position: static !important;
    max-height: none !important;
  }
}

/* 侧栏目录：随页面滚动时粘在视口内（往下读介绍时目录跟屏） */
.guide-toc {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 10px 8px;
  background: var(--gg-surface);
  border: 1px solid rgba(180, 140, 70, 0.28);
  border-radius: var(--gg-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.guide-toc h2 {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gg-gold);
  text-transform: uppercase;
}

/* 目录：紧凑金色胶囊（17 条时少占纵向空间） */
.guide-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.guide-toc__btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 3px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #1a1408 !important;
  text-align: center;
  text-decoration: none !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 235, 180, 0.4);
  background: linear-gradient(145deg, #f2d878, #b8941f);
  box-shadow: 0 1px 5px rgba(212, 175, 55, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.guide-toc__btn:hover {
  color: #120d05 !important;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.28);
}

.guide-toc__btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 5px rgba(212, 175, 55, 0.22);
}

.guide-main {
  min-width: 0;
}

/* 章节标题旁「※ 国内首个」等标注（与《新【初见征服】游戏介绍》一致） */
.guide-cn-first {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(212, 175, 55, 0.92);
  vertical-align: middle;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .guide-cn-first {
    display: block;
    margin: 8px 0 0;
    white-space: normal;
  }
}

.guide-hero {
  padding: 28px 26px 26px;
  margin-bottom: 28px;
  text-align: center;
  background: linear-gradient(160deg, rgba(40, 28, 22, 0.75) 0%, rgba(18, 14, 12, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--gg-radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.guide-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #f5e6bc;
  text-shadow: 0 0 32px rgba(212, 175, 55, 0.35);
}

.guide-hero .tagline {
  margin: 0;
  font-size: 1rem;
  color: #d8c8a8;
  letter-spacing: 0.08em;
}

.guide-hero .pill-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}

.guide-hero .pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #e8dcc4;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
}

/* —— 升级版首屏与亮点区 —— */
.guide-hero--pro {
  padding: 32px 22px 28px;
  position: relative;
  overflow: hidden;
}

.guide-hero--pro::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse, rgba(180, 90, 70, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.guide-hero-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.75);
}

.guide-hero-tag {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: #e8d4a8;
  letter-spacing: 0.2em;
}

.guide-hero-sub {
  margin: 0 auto 22px;
  max-width: 36em;
  font-size: 15px;
  line-height: 1.65;
  color: #b8a990;
}

.guide-stat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 20px;
}

@media (max-width: 520px) {
  .guide-stat-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

.guide-stat {
  padding: 12px 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(120, 100, 80, 0.35);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-stat:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.guide-stat--gold {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.guide-stat--wide {
  grid-column: 1 / -1;
}

.guide-stat__v {
  display: block;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 800;
  color: #f5e6bc;
  letter-spacing: 0.06em;
}

.guide-stat__k {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #8a7d68;
  letter-spacing: 0.04em;
}

.guide-hero-cta {
  margin: 18px 0 0;
}

.guide-hero-cta__a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1408 !important;
  text-decoration: none !important;
  border-radius: 999px;
  background: linear-gradient(145deg, #f2d878, #b8941f);
  border: 1px solid rgba(255, 235, 180, 0.5);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.guide-hero-cta__a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.38);
}

.guide-spotlight {
  scroll-margin-top: 96px;
  margin-bottom: 32px;
  padding: 26px 22px 24px;
  background: linear-gradient(145deg, rgba(26, 20, 16, 0.95) 0%, rgba(14, 11, 9, 0.92) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--gg-radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.guide-spotlight__head {
  text-align: center;
  margin-bottom: 22px;
}

.guide-spotlight__title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f0e4c8;
}

.guide-spotlight__sub {
  margin: 0 auto;
  max-width: 38em;
  font-size: 14px;
  line-height: 1.6;
  color: #9a8f7a;
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .guide-cards {
    grid-template-columns: 1fr;
  }
}

.guide-card {
  position: relative;
  padding: 18px 18px 18px 52px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(100, 90, 75, 0.4);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateY(-2px);
}

.guide-card--accent {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.guide-card__n {
  position: absolute;
  left: 14px;
  top: 16px;
  font-size: 22px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.35);
  line-height: 1;
}

.guide-card__t {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #f0e0c8;
}

.guide-card__p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #b5a994;
}

.guide-pullquote {
  margin: 22px 0 0;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.65;
  font-style: italic;
  color: #a89880;
  border-left: 3px solid rgba(212, 175, 55, 0.45);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 10px 10px 0;
}

/* —— 国内独家 · 五大特色 —— */
.guide-exclusive-hub {
  scroll-margin-top: 96px;
  margin-bottom: 32px;
  padding: 26px 20px 24px;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, rgba(30, 22, 18, 0.96) 0%, rgba(12, 10, 8, 0.94) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--gg-radius);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 20px 56px rgba(0, 0, 0, 0.45);
}

.guide-exclusive-hub__title {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #f5e6bc;
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

.guide-exclusive-hub__sub {
  margin: 0 auto 22px;
  max-width: 40em;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: #9a8f7a;
}

.guide-exclusive-hub__sub strong {
  color: #d4af37;
  font-weight: 800;
}

.guide-exclusive-hub__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 900px) {
  .guide-exclusive-hub__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .guide-exclusive-hub__grid {
    grid-template-columns: 1fr;
  }
}

.guide-exclusive-hub__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 120px;
  padding: 16px 14px 14px;
  text-decoration: none !important;
  color: inherit !important;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(140, 120, 90, 0.35);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-exclusive-hub__card:hover {
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.12);
}

.guide-exclusive-hub__n {
  font-size: 20px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.4);
  line-height: 1;
}

.guide-exclusive-hub__card strong {
  font-size: 15px;
  font-weight: 800;
  color: #f0e4c8;
  letter-spacing: 0.04em;
}

.guide-exclusive-hub__card span:last-child {
  font-size: 12px;
  line-height: 1.45;
  color: #8a8070;
}

.guide-exclusive-embed {
  scroll-margin-top: 100px;
  margin-top: 28px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, rgba(40, 32, 24, 0.9) 0%, rgba(14, 11, 9, 0.92) 100%);
}

.guide-exclusive-embed__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.22) 0%, rgba(80, 60, 40, 0.4) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.guide-exclusive-embed__badge {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1a1208;
  background: linear-gradient(135deg, #f2d878, #b8941f);
  border-radius: 6px;
}

.guide-exclusive-embed__hint {
  font-size: 13px;
  font-weight: 700;
  color: #e8dcc8;
  letter-spacing: 0.12em;
}

.guide-exclusive-embed__h {
  margin: 18px 20px 0 !important;
  padding: 0 !important;
  font-size: 1.15rem !important;
  color: #f5e6bc !important;
  border: none !important;
}

.guide-exclusive-embed__lead {
  margin: 12px 20px 0 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #b8a990 !important;
}

.guide-exclusive-embed__facts {
  margin: 14px 20px 0;
  padding: 0 0 0 1.2em;
  color: #c9beb0;
  font-size: 14px;
  line-height: 1.55;
}

.guide-exclusive-embed__facts li {
  margin-bottom: 8px;
}

.guide-exclusive-embed__rule {
  margin: 14px 20px 20px !important;
  padding: 12px 14px !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #9a9080 !important;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-section--exclusive {
  position: relative;
  border-color: rgba(212, 175, 55, 0.38) !important;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12) inset,
    0 16px 48px rgba(0, 0, 0, 0.35) !important;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.09) 0%, transparent 55%),
    var(--gg-surface) !important;
}

.guide-section--exclusive::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.75), #f0d878, rgba(212, 175, 55, 0.75), transparent);
  border-radius: var(--gg-radius) var(--gg-radius) 0 0;
  pointer-events: none;
}

.guide-exclusive-head {
  margin: -6px -8px 16px;
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.guide-exclusive-head__ribbon {
  margin: 0 0 8px;
  text-align: center;
}

.guide-exclusive-head__ribbon span {
  display: inline-block;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: #1a1208;
  background: linear-gradient(135deg, #ffe9a8, #c9a227 45%, #8b6914);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.guide-exclusive-head__tagline {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #c9a87a;
}

.guide-lead--tight {
  margin-top: 0 !important;
}

.exclusive-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

@media (max-width: 720px) {
  .exclusive-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exclusive-flow__step {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(120, 100, 80, 0.35);
  border-radius: 10px;
}

.exclusive-flow__i {
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  line-height: 28px;
  font-size: 14px;
  font-weight: 800;
  color: #1a1208;
  background: linear-gradient(145deg, #f2d878, #a08028);
  border-radius: 50%;
}

.exclusive-flow__step strong {
  font-size: 14px;
  color: #f0e4c8;
}

.exclusive-flow__step span:last-child {
  font-size: 11px;
  line-height: 1.4;
  color: #8a8070;
}

.exclusive-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.exclusive-pill {
  padding: 8px 16px;
  font-size: 13px;
  color: #d4cbb8;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
}

.exclusive-pill strong {
  color: #f5e6bc;
  margin-right: 6px;
}

.prestige-showcase {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
}

@media (max-width: 560px) {
  .prestige-showcase {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.prestige-showcase__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.prestige-showcase__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c9a87a;
}

.prestige-showcase__num {
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #f5e6bc;
  text-shadow: 0 0 32px rgba(212, 175, 55, 0.35);
}

.prestige-showcase__unit {
  font-size: 14px;
  font-weight: 700;
  color: #d4af37;
  margin-top: 4px;
}

.prestige-showcase__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.prestige-showcase__grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0 !important;
}

.prestige-showcase__grid strong {
  flex-shrink: 0;
  min-width: 2.75em;
  text-align: center;
  font-size: 15px;
  color: #d4af37;
}

.prestige-showcase__grid span {
  font-size: 13px;
  line-height: 1.5;
  color: #b5a994;
}

.prestige-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}

.prestige-attrs span {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #e4d9c4;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;
}

.legendary-badge-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.legendary-badge-line__item {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #c9beb0;
  background: rgba(100, 140, 180, 0.12);
  border: 1px solid rgba(120, 160, 200, 0.35);
  border-radius: 8px;
}

.gear-grid--legendary .gear-card {
  border-color: rgba(212, 175, 55, 0.22);
  background: linear-gradient(165deg, rgba(30, 26, 20, 0.6) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.gear-grid--legendary .gear-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}

.guide-lead {
  margin: -6px 0 18px !important;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.65;
  color: #a89f8c !important;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.guide-h2__k {
  flex-shrink: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #1a1208;
  background: linear-gradient(135deg, #e8c86a, #a08028);
  border-radius: 6px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.gear-card {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(110, 95, 75, 0.35);
  border-radius: 10px;
  transition: border-color 0.15s ease;
}

.gear-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.gear-card__slot {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 4px;
}

.gear-card__txt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c9beb0;
}

.gear-card__txt strong {
  color: #e8dcc8;
}

.guide-section {
  scroll-margin-top: 96px;
  margin-bottom: 28px;
  padding: 22px 24px 24px;
  background: var(--gg-surface);
  border: 1px solid rgba(100, 85, 65, 0.35);
  border-radius: var(--gg-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.guide-section h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gg-gold);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.guide-section h3 {
  margin: 20px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #f0e0c8;
}

.guide-section h3:first-of-type {
  margin-top: 0;
}

.guide-section p {
  margin: 0 0 12px;
  color: #d4cbb8;
}

.guide-section ul {
  margin: 0 0 12px;
  padding-left: 1.25em;
  color: #d4cbb8;
}

.guide-section li {
  margin-bottom: 6px;
}

.guide-section .warn {
  margin: 12px 0;
  padding: 12px 14px;
  font-size: 14px;
  color: #f0d4a8;
  background: rgba(180, 80, 60, 0.2);
  border-left: 3px solid #c75c5c;
  border-radius: 0 6px 6px 0;
}

.guide-table-wrap {
  overflow-x: auto;
  margin: 14px 0;
  border-radius: 8px;
  border: 1px solid rgba(120, 100, 75, 0.4);
}

.guide-section table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
}

.guide-section th,
.guide-section td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-section th {
  background: rgba(212, 175, 55, 0.12);
  color: #f0e4c8;
  font-weight: 700;
}

.guide-section td {
  color: #ccc2b0;
  vertical-align: top;
}

.guide-section tr:last-child td {
  border-bottom: none;
}

.guide-section .note-block {
  margin-top: 14px;
  padding: 14px;
  font-size: 13px;
  color: #b8c4d4;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(100, 120, 140, 0.25);
}

.guide-footer-note {
  margin-top: 36px;
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--gg-muted);
}

.guide-footer-note a {
  color: var(--gg-link);
}

/* 顶栏样式见 css/site-common.css（与全站一致） */
.guide-body .site-top {
  z-index: 200;
}
