.page-news {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0;
  margin: 0;
}

.page-news .news-chapter-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  background: var(--indigo);
  border-bottom: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .news-chapter-bar .container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-news .news-chapter-bar .container::-webkit-scrollbar {
  display: none;
}

.page-news .news-chapter-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 2px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  border-bottom: 2px solid transparent;
}

.page-news .news-chapter-link:hover,
.page-news .news-chapter-link:focus-visible,
.page-news .news-chapter-link[aria-current="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.page-news .news-chapter-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-news .chapter-index {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: var(--text-xs);
}

.page-news .news-hero {
  position: relative;
  padding: 32px 0 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 75%, var(--blue) 100%);
  overflow: hidden;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: rgba(212, 180, 74, 0.07);
  transform: rotate(18deg);
  pointer-events: none;
}

.page-news .breadcrumb {
  margin-bottom: 20px;
}

.page-news .news-hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-news .hero-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  color: var(--accent);
}

.page-news .news-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.22;
  color: var(--text-primary);
}

.page-news .hero-title-sub {
  display: block;
  margin-top: 8px;
  color: var(--accent-soft);
  font-size: 24px;
}

.page-news .hero-lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist);
}

.page-news .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.page-news .hero-stat {
  padding: 12px;
  background: rgba(43, 30, 75, 0.5);
  border: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .hero-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1.1;
  color: var(--accent);
}

.page-news .hero-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--mist);
}

.page-news .news-hero-figure figure {
  margin: 0;
}

.page-news .news-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-panel);
}

.page-news .news-hero-figure figcaption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--mist);
  letter-spacing: 0.08em;
}

.page-news .section {
  padding: 56px 0;
}

.page-news .section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .section-index {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  line-height: 1.4;
  color: var(--accent);
}

.page-news .section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-primary);
}

.page-news .section-subtitle {
  margin: 4px 0 0;
  font-size: var(--text-sm);
  color: var(--mist);
}

.page-news [id^="sec-"] {
  scroll-margin-top: calc(var(--header-height) + 48px);
}

.page-news .news-release {
  background: var(--blue);
  border-top: 1px solid rgba(143, 166, 191, 0.2);
}

.page-news .release-feature {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(155deg, rgba(43, 30, 75, 0.95), rgba(10, 26, 47, 1) 85%);
  border: 1px solid rgba(212, 180, 74, 0.6);
  box-shadow: var(--shadow-panel);
}

.page-news .release-feature::before {
  content: "置顶";
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--wine);
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  padding: 5px 12px;
}

.page-news .release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.page-news .release-copy h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.4;
  color: var(--light-gold);
}

.page-news .release-copy p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 240, 232, 0.86);
}

.page-news .release-points {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.page-news .release-points li {
  position: relative;
  margin-top: 8px;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(242, 240, 232, 0.82);
}

.page-news .release-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.page-news .release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 18px 0 20px;
}

.page-news .coord {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-soft);
  padding: 4px 10px;
  border: 1px solid rgba(212, 180, 74, 0.4);
}

.page-news .release-figure figure {
  margin: 0;
}

.page-news .release-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(143, 166, 191, 0.3);
}

.page-news .release-figure figcaption,
.page-news .tips-figure figcaption,
.page-news .data-chart figcaption {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--mist);
  letter-spacing: 0.08em;
}

.page-news .release-list {
  margin-top: 40px;
}

.page-news .release-list-head {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent);
}

.page-news .release-list-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--mist);
}

.page-news .release-timeline {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .release-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .release-time {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent);
}

.page-news .release-item-text h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-primary);
}

.page-news .release-item-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist);
}

.page-news .news-tips {
  background-color: var(--indigo);
  background-image:
    linear-gradient(rgba(10, 26, 47, 0.9), rgba(10, 26, 47, 0.9)),
    repeating-linear-gradient(90deg, rgba(143, 166, 191, 0.12) 0, rgba(143, 166, 191, 0.12) 1px, transparent 1px, transparent 44px),
    repeating-linear-gradient(0deg, rgba(143, 166, 191, 0.12) 0, rgba(143, 166, 191, 0.12) 1px, transparent 1px, transparent 44px);
}

.page-news .tips-layout {
  display: grid;
  gap: 32px;
}

.page-news .tips-figure {
  margin: 0;
}

.page-news .tips-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(143, 166, 191, 0.3);
}

.page-news .tips-legend {
  margin-top: 16px;
  padding: 16px;
  background: rgba(43, 30, 75, 0.55);
  border: 1px solid rgba(143, 166, 191, 0.3);
}

.page-news .tips-legend .legend-title {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--accent);
}

.page-news .tips-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(242, 240, 232, 0.88);
}

.page-news .legend-symbol,
.page-news .legend-symbol-circle,
.page-news .legend-symbol-line {
  display: inline-block;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.page-news .legend-symbol {
  background: var(--accent);
}

.page-news .legend-symbol-circle {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.page-news .legend-symbol-line {
  width: 18px;
  height: 2px;
  background: var(--line);
}

.page-news .tips-cross {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(143, 166, 191, 0.35);
  font-size: 13px;
  color: var(--mist);
}

.page-news .tips-cross a {
  color: var(--light-gold);
}

.page-news .tips-route .route-line {
  border-top: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .tips-route .route-line-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(143, 166, 191, 0.35);
}

.page-news .tips-route .route-label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 1px solid rgba(212, 180, 74, 0.5);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.page-news .tips-route .route-text h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-primary);
}

.page-news .tips-route .route-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 240, 232, 0.82);
}

.page-news .news-play {
  background: var(--moon);
  color: var(--ink);
}

.page-news .news-play .section-head {
  border-bottom-color: rgba(51, 58, 69, 0.18);
}

.page-news .news-play .section-index {
  color: var(--wine);
}

.page-news .news-play .section-title {
  color: var(--ink);
}

.page-news .news-play .section-subtitle {
  color: var(--mist);
}

.page-news .play-grid {
  display: grid;
  gap: 16px;
}

.page-news .play-card {
  padding: 24px;
  background: rgba(242, 240, 232, 0.7);
  border: 1px solid rgba(51, 58, 69, 0.15);
}

.page-news .play-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--ink);
}

.page-news .play-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(51, 58, 69, 0.85);
}

.page-news .play-card-mark {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 180, 74, 0.7);
  background: linear-gradient(45deg, rgba(212, 180, 74, 0.16) 0 50%, transparent 50%);
}

.page-news .play-card-mark::before,
.page-news .play-card-mark::after {
  content: "";
  position: absolute;
}

.page-news .play-card-mark--dot::before {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wine);
}

.page-news .play-card-mark--ring::before {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.page-news .play-card-mark--cross::before {
  width: 18px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wine);
}

.page-news .play-card-mark--cross::after {
  width: 2px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--wine);
}

.page-news .play-card-mark--diamond::before {
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid var(--gold);
}

.page-news .play-more {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--mist);
}

.page-news .play-more a {
  color: var(--wine);
  font-weight: 600;
}

.page-news .news-data {
  background: var(--blue);
}

.page-news .data-report {
  margin-top: 8px;
}

.page-news .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.page-news .stat-card {
  padding: 18px 14px;
  background: rgba(43, 30, 75, 0.5);
  border: 1px solid rgba(212, 180, 74, 0.28);
}

.page-news .stat-card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1.1;
  color: var(--accent);
}

.page-news .stat-card-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--mist);
}

.page-news .data-chart {
  margin: 0 0 24px;
}

.page-news .data-chart img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(143, 166, 191, 0.3);
}

.page-news .data-notes {
  padding: 24px;
  background: rgba(43, 30, 75, 0.5);
  border-left: 3px solid var(--wine);
}

.page-news .data-notes h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);
}

.page-news .data-notes ul {
  margin: 0;
  padding-left: 20px;
}

.page-news .data-notes li {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(242, 240, 232, 0.88);
}

.page-news .news-subscribe {
  background: linear-gradient(150deg, var(--wine), #5d142b 60%, var(--wine));
  padding: 48px 0;
}

.page-news .subscribe-grid {
  display: grid;
  gap: 24px;
}

.page-news .subscribe-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--light-gold);
}

.page-news .subscribe-copy p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 240, 232, 0.9);
}

.page-news .subscribe-mail {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--light-gold);
}

.page-news .subscribe-note {
  padding: 24px;
  background: rgba(10, 26, 47, 0.4);
  border: 1px solid rgba(233, 217, 168, 0.4);
}

.page-news .subscribe-note p {
  margin: 14px 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 240, 232, 0.9);
}

.page-news .news-back-top {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
  box-shadow: var(--shadow-card);
}

.page-news .news-back-top:hover,
.page-news .news-back-top:focus-visible {
  background: var(--accent-soft);
  color: var(--blue);
}

@media (max-width: 480px) {
  .page-news .release-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (min-width: 768px) {
  .page-news .news-hero h1 {
    font-size: 44px;
  }

  .page-news .hero-title-sub {
    font-size: 28px;
  }
}

@media (min-width: 700px) {
  .page-news .play-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-news .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 760px) {
  .page-news .subscribe-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .page-news .news-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
  }

  .page-news .release-feature {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    padding: 32px;
  }

  .page-news .tips-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero-figure {
    transform: translateY(14px);
  }

  .page-news .news-hero-figure figure {
    position: relative;
  }

  .page-news .news-hero-figure figure::before {
    content: "";
    position: absolute;
    top: 14px;
    left: -14px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 180, 74, 0.5);
    z-index: 0;
  }

  .page-news .news-hero-figure img {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1080px) {
  .page-news .play-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
