.page-disclaimer {
  --pg-red: #D7263D;
  --pg-black: #0B0E12;
  --pg-acid: #B7F04B;
  --pg-paper: #F4EBD9;
  --pg-muted: #8A9199;
  --pg-clay: #B0655A;
  --pg-purple: #9B5CFF;
  --pg-smoke: #2B3036;
  background: var(--pg-black);
  color: var(--pg-paper);
  font-family: var(--font-mono);
  overflow-x: hidden;
}

/* ===== 顶部区域 ===== */
.pg-topbar {
  position: relative;
  padding: 24px 16px 40px;
  border-bottom: 1px solid rgba(215, 38, 61, 0.25);
  background-image:
    linear-gradient(rgba(215, 38, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 38, 61, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pg-topbar-inner {
  max-width: var(--container-w);
  margin: 0 auto;
}
.pg-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pg-muted);
  margin-bottom: 28px;
}
.pg-crumb {
  color: var(--pg-paper);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pg-crumb:hover {
  color: var(--pg-acid);
}
.pg-crumb-sep {
  color: var(--pg-red);
}
.pg-crumb-now {
  color: var(--pg-acid);
  border-bottom: 1px solid rgba(183, 240, 75, 0.4);
}
.pg-hero-grid {
  display: grid;
  gap: 28px;
}
.pg-hero-main {
  position: relative;
}
.pg-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pg-red);
  border: 1px solid rgba(215, 38, 61, 0.5);
  background: rgba(215, 38, 61, 0.08);
  padding: 6px 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pg-hero-main h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--pg-paper);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.pg-hero-sub {
  font-size: 15px;
  color: var(--pg-acid);
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  line-height: 1.6;
}
.pg-hero-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pg-muted);
  max-width: 560px;
  margin: 0 0 18px;
}
.pg-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pg-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ===== 存档印章 ===== */
.pg-stamp-box {
  display: block;
  width: 100%;
  max-width: 240px;
  border: 1px solid rgba(215, 38, 61, 0.4);
  background: rgba(11, 14, 18, 0.7);
  overflow: hidden;
}
.pg-stamp-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  cursor: pointer;
  list-style: none;
  transition: background 0.3s ease;
}
.pg-stamp-summary::-webkit-details-marker {
  display: none;
}
.pg-stamp-summary:hover,
.pg-stamp-summary:focus-visible {
  background: rgba(215, 38, 61, 0.08);
}
.pg-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 2px solid var(--pg-red);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 6px rgba(215, 38, 61, 0.16),
    inset 0 0 0 12px rgba(11, 14, 18, 0.6),
    0 0 0 3px rgba(11, 14, 18, 0.9),
    0 0 0 5px rgba(215, 38, 61, 0.25);
  transform: rotate(-8deg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.pg-stamp-box[open] .pg-stamp {
  transform: scale(1.16) rotate(0deg);
  border-color: var(--pg-acid);
  box-shadow:
    inset 0 0 0 6px rgba(183, 240, 75, 0.16),
    inset 0 0 0 12px rgba(11, 14, 18, 0.6),
    0 0 24px rgba(183, 240, 75, 0.2),
    0 0 0 5px rgba(215, 38, 61, 0.3);
}
.pg-stamp-inner {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  text-align: center;
  color: var(--pg-red);
  letter-spacing: 0.1em;
}
.pg-stamp-box[open] .pg-stamp-inner {
  color: var(--pg-acid);
}
.pg-stamp-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(215, 38, 61, 0.2);
  background: rgba(215, 38, 61, 0.04);
  font-size: 12px;
}
.pg-stamp-label {
  color: var(--pg-red);
  letter-spacing: 0.08em;
  font-weight: bold;
}
.pg-stamp-code {
  color: var(--pg-acid);
  letter-spacing: 0.05em;
}
.pg-stamp-note {
  color: var(--pg-muted);
  line-height: 1.5;
}
.pg-stamp-hint {
  font-size: 11px;
  color: var(--pg-muted);
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

/* ===== 目录 ===== */
.pg-toc {
  position: sticky;
  top: 60px;
  z-index: 20;
  background: rgba(11, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 38, 61, 0.2);
}
.pg-toc-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--container-w);
  margin: 0 auto;
}
.pg-toc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  color: var(--pg-muted);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(244, 235, 217, 0.08);
  transition: color 0.2s ease, background 0.2s ease;
}
.pg-toc-link:hover,
.pg-toc-link:focus-visible {
  color: var(--pg-acid);
  background: rgba(183, 240, 75, 0.06);
}
.pg-toc-num {
  color: var(--pg-red);
  font-size: 11px;
  font-weight: bold;
}

/* ===== 章节基础 ===== */
.pg-section {
  padding: 56px 16px;
  border-bottom: 1px solid rgba(244, 235, 217, 0.06);
}
.pg-section-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pg-section-main {
  flex: 1;
  min-width: 0;
}
.pg-section-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pg-red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pg-section-main h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
  color: var(--pg-paper);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.pg-section-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pg-muted);
  max-width: 640px;
  margin-bottom: 32px;
}

/* ===== 侧注 ===== */
.pg-side-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(215, 38, 61, 0.3);
  border-bottom: 1px solid rgba(215, 38, 61, 0.3);
}
.pg-side-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: bold;
  color: var(--pg-paper);
  background: var(--pg-red);
  transform: rotate(-6deg);
}
.pg-side-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: rgba(244, 235, 217, 0.28);
  writing-mode: horizontal-tb;
  text-transform: uppercase;
  user-select: none;
}
.pg-side-note--invert .pg-side-text {
  color: rgba(215, 38, 61, 0.5);
}
.pg-side-note--clay .pg-side-index {
  background: var(--pg-clay);
  color: var(--pg-black);
}

/* ===== 01 内容边界 ===== */
.pg-rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pg-rule-item {
  display: flex;
  gap: 16px;
  padding: 20px 18px;
  border: 1px solid rgba(244, 235, 217, 0.1);
  background: rgba(43, 48, 54, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.pg-rule-item:hover {
  border-color: rgba(215, 38, 61, 0.4);
  background: rgba(43, 48, 54, 0.7);
}
.pg-rule-num {
  font-size: 13px;
  font-weight: bold;
  color: var(--pg-red);
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.pg-rule-body h3 {
  font-size: 16px;
  color: var(--pg-acid);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.pg-rule-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pg-paper);
  margin: 0;
}
.pg-chapter-end {
  margin-top: 24px;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(138, 145, 153, 0.4);
  border-top: 1px dashed rgba(244, 235, 217, 0.12);
  padding-top: 14px;
}

/* ===== 警告条 ===== */
.pg-warn-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--pg-red);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.pg-warn-band--second {
  background: var(--pg-smoke);
  color: var(--pg-paper);
  border-top: 2px solid var(--pg-red);
  border-bottom: 2px solid var(--pg-red);
}
.pg-warn-svg {
  flex-shrink: 0;
}

/* ===== 02 禁止行为 ===== */
.pg-section--alert {
  background:
    linear-gradient(rgba(215, 38, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 38, 61, 0.05) 1px, transparent 1px),
    var(--pg-black);
  background-size: 40px 40px;
}
.pg-ban-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.pg-ban-item {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(215, 38, 61, 0.28);
  background: linear-gradient(135deg, rgba(215, 38, 61, 0.08) 0%, rgba(11, 14, 18, 0.7) 60%);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pg-ban-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--pg-red);
}
.pg-ban-item:hover {
  border-color: rgba(215, 38, 61, 0.7);
}
.pg-ban-x {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 34px;
  line-height: 1;
  color: rgba(215, 38, 61, 0.35);
  font-weight: 100;
}
.pg-ban-index {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--pg-red);
  border: 1px solid rgba(215, 38, 61, 0.4);
  padding: 3px 8px;
  margin-bottom: 16px;
}
.pg-ban-item h3 {
  font-size: 18px;
  color: var(--pg-paper);
  margin-bottom: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.pg-ban-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pg-muted);
  margin: 0;
}
.pg-ban-svg-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px dashed rgba(215, 38, 61, 0.3);
  background: rgba(11, 14, 18, 0.5);
}
.pg-ban-svg {
  width: 120px;
  height: 120px;
}
.pg-ban-caption {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--pg-muted);
}

/* ===== 03 免责声明 ===== */
.pg-section--disclaim {
  background:
    radial-gradient(circle at 85% 15%, rgba(183, 240, 75, 0.04), transparent 220px),
    var(--pg-black);
}
.pg-quote {
  margin: 0 0 24px;
  padding: 24px;
  border-left: 4px solid var(--pg-red);
  background: rgba(43, 48, 54, 0.35);
}
.pg-quote blockquote {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--pg-paper);
  font-style: italic;
}
.pg-quote figcaption {
  font-size: 12px;
  color: var(--pg-muted);
  letter-spacing: 0.08em;
  text-align: right;
}
.pg-reverse-callout {
  display: inline-block;
  background: var(--pg-acid);
  color: var(--pg-black);
  font-size: 15px;
  font-weight: bold;
  padding: 12px 20px;
  margin-bottom: 24px;
  transform: skewX(-5deg);
  font-style: italic;
  letter-spacing: 0.03em;
  box-shadow: 8px 8px 0 rgba(215, 38, 61, 0.25);
}
.pg-notes-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.pg-note-block {
  display: flex;
  gap: 14px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--pg-muted);
  border: 1px solid rgba(244, 235, 217, 0.08);
}
.pg-note-sep {
  color: var(--pg-red);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.pg-note-block p {
  margin: 0;
}
.pg-scanline {
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(183, 240, 75, 0.4) 0 8px,
    transparent 8px 16px,
    rgba(215, 38, 61, 0.3) 16px 24px,
    transparent 24px 32px
  );
  margin-top: 28px;
}

/* ===== 04 举报通道 ===== */
.pg-section--code {
  background: rgba(11, 14, 18, 1);
}
.pg-terminal {
  border: 1px solid rgba(244, 235, 217, 0.16);
  background: var(--bg-smoke);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
  overflow-x: auto;
}
.pg-terminal-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(11, 14, 18, 0.8);
  border-bottom: 1px solid rgba(244, 235, 217, 0.1);
}
.pg-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pg-red);
}
.pg-terminal-dot:nth-child(2) {
  background: var(--pg-clay);
}
.pg-terminal-dot:nth-child(3) {
  background: rgba(244, 235, 217, 0.3);
}
.pg-terminal-title {
  margin-left: 10px;
  font-size: 11px;
  color: var(--pg-muted);
  letter-spacing: 0.06em;
}
.pg-terminal-body {
  padding: 18px 16px;
}
.pg-terminal-line {
  margin: 0 0 8px;
  font-size: 14px;
  white-space: nowrap;
}
.pg-prompt {
  color: var(--pg-acid);
  font-weight: bold;
}
.pg-cmd {
  color: var(--pg-paper);
}
.pg-terminal-out {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--pg-acid);
  padding-left: 18px;
  border-left: 2px solid rgba(183, 240, 75, 0.3);
}
.pg-contact-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.pg-contact-item {
  padding: 16px 18px;
  border: 1px solid rgba(244, 235, 217, 0.1);
  background: rgba(43, 48, 54, 0.35);
}
.pg-contact-label {
  display: block;
  font-size: 11px;
  color: var(--pg-red);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.pg-contact-value {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--pg-paper);
  margin-bottom: 6px;
}
.pg-contact-note {
  display: block;
  font-size: 12px;
  color: var(--pg-muted);
}
.pg-report-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--pg-muted);
  padding: 14px 16px;
  border-left: 3px solid var(--pg-clay);
  background: rgba(176, 101, 90, 0.06);
}
.pg-inline-link {
  color: var(--pg-acid);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 240, 75, 0.35);
  transition: border-color 0.2s ease;
}
.pg-inline-link:hover {
  border-color: var(--pg-acid);
}

/* ===== 05 备案信息 ===== */
.pg-section--icp {
  background:
    linear-gradient(rgba(176, 101, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 101, 90, 0.04) 1px, transparent 1px),
    var(--pg-black);
  background-size: 24px 24px;
}
.pg-icp-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.pg-icp-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 235, 217, 0.08);
  background: rgba(11, 14, 18, 0.7);
}
.pg-icp-key {
  font-size: 11px;
  color: var(--pg-clay);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pg-icp-val {
  font-size: 16px;
  color: var(--pg-paper);
  line-height: 1.5;
  font-weight: bold;
}
.pg-icp-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--pg-muted);
  padding-top: 18px;
  border-top: 1px dashed rgba(244, 235, 217, 0.1);
}

/* ===== 页尾视觉 ===== */
.pg-risk-figure {
  margin: 0;
  padding: 56px 16px;
  background: var(--pg-black);
}
.pg-risk-img {
  max-width: 520px;
  margin: 0 auto 16px;
  border: 1px solid rgba(215, 38, 61, 0.4);
  padding: 6px;
  background: rgba(215, 38, 61, 0.06);
  transform: rotate(-1deg);
}
.pg-risk-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
}
.pg-risk-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.pg-risk-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--pg-red);
  text-transform: uppercase;
}
.pg-risk-text {
  font-size: 13px;
  color: var(--pg-muted);
}

/* ===== 桌面端 ===== */
@media (min-width: 768px) {
  .pg-topbar {
    padding: 32px 28px 56px;
  }
  .pg-hero-grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 48px;
    align-items: center;
  }
  .pg-hero-aside {
    border-left: 1px solid rgba(215, 38, 61, 0.2);
    padding-left: 32px;
  }
  .pg-section,
  .pg-risk-figure {
    padding-left: 28px;
    padding-right: 28px;
  }
  .pg-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .pg-section-inner {
    flex-direction: row;
    gap: 48px;
  }
  .pg-side-note {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 8px;
    width: 100px;
    flex-shrink: 0;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(215, 38, 61, 0.2);
    border-right: 1px solid rgba(215, 38, 61, 0.2);
  }
  .pg-side-text {
    writing-mode: vertical-rl;
    font-size: 26px;
  }
  .pg-section--alert .pg-section-inner,
  .pg-section--code .pg-section-inner {
    flex-direction: row-reverse;
  }
  .pg-rule-item {
    padding: 24px 22px;
  }
  .pg-ban-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .pg-ban-item:nth-child(even) {
    transform: translateY(28px);
  }
  .pg-ban-item:nth-child(even):hover {
    transform: translateY(28px);
  }
  .pg-ban-svg {
    width: 160px;
    height: 160px;
  }
  .pg-notes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .pg-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .pg-icp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pg-warn-band {
    padding: 16px 22px;
    font-size: 14px;
  }
  .pg-risk-figure {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: 2px solid rgba(215, 38, 61, 0.2);
  }
}

@media (min-width: 1024px) {
  .pg-topbar-inner {
    padding-top: 12px;
  }
  .pg-hero-main h1 {
    font-size: 76px;
  }
  .pg-hero-sub {
    font-size: 17px;
  }
  .pg-hero-desc {
    font-size: 15px;
  }
  .pg-section-inner {
    gap: 72px;
  }
  .pg-icp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
