.page-news {
  --news-gold: #D4AF37;
  --news-gold-light: #F0E68C;
  --news-purple: #8A2BE2;
  --news-bg: #0B1B3A;
  --news-bg-card: #102A5C;
  --news-bg-deep: #1A2A4A;
  --news-border: rgba(212, 175, 55, 0.25);
  --news-text-dim: #B0B8C8;
  background: var(--news-bg);
  color: #FFFFFF;
  font-family: 'Fira Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.page-news a {
  color: inherit;
  text-decoration: none;
}

.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-news .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.page-news .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--news-text-dim);
}

.page-news .breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-news .breadcrumb-list li + li::before {
  content: "/";
  color: rgba(212, 175, 55, 0.5);
}

.page-news .breadcrumb-list a:hover {
  color: var(--news-gold);
}

.page-news .index-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--news-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-news .index-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--news-gold);
  display: inline-block;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.page-news .btn-gold {
  background: linear-gradient(135deg, #F0E68C 0%, #D4AF37 60%, #B8860B 100%);
  color: #0B1B3A;
  border: none;
  font-weight: 700;
}

.page-news .btn-gold:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.page-news .btn-outline {
  background: transparent;
  border: 1px solid var(--news-border);
  color: var(--news-gold);
}

.page-news .btn-outline:hover {
  border-color: var(--news-gold);
  background: rgba(212, 175, 55, 0.08);
}

.page-news .section-head {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .section-head.is-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.page-news .news-section-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-news .news-hero {
  position: relative;
  padding: 100px 0 50px;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
    linear-gradient(180deg, #071224 0%, #0B1B3A 100%);
  border-bottom: 1px solid var(--news-border);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%);
}

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

.page-news .news-hero-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 16px 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 700px;
}

.page-news .news-hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--news-text-dim);
  max-width: 720px;
  margin: 0 0 28px;
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-family: 'Orbitron', 'Courier New', monospace;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-news .news-filter-btn:hover {
  border-color: var(--news-gold);
  color: var(--news-gold);
}

.page-news .news-filter-btn.is-active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--news-gold);
  color: var(--news-gold);
}

.page-news .news-feature {
  padding: 40px 0;
  background: linear-gradient(180deg, #0B1B3A 0%, #102A5C 100%);
}

.page-news .news-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-feature-card {
  background: var(--news-bg-deep);
  border-left: 3px solid var(--news-gold);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
}

.page-news .news-feature-card:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.18);
  transform: translateY(-3px);
}

.page-news .news-feature-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-feature-body {
  padding: 24px;
}

.page-news .news-tag {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  color: #0B1B3A;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.page-news .news-feature-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
}

.page-news .news-feature-summary {
  font-size: 14px;
  color: var(--news-text-dim);
  margin: 0 0 16px;
  line-height: 1.7;
}

.page-news .news-timestamp {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 12px;
  color: var(--news-gold);
}

.page-news .news-feature-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-news .news-feature-mini {
  background: rgba(16, 42, 92, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 96% 100%, 0 100%);
}

.page-news .news-feature-mini:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(26, 42, 74, 0.8);
}

.page-news .news-mini-label {
  display: block;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  color: var(--news-gold);
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.page-news .news-mini-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}

.page-news .news-link-arrow {
  font-size: 13px;
  color: var(--news-gold-light);
  font-family: 'Orbitron', 'Courier New', monospace;
  letter-spacing: 1px;
}

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

.page-news .news-timeline-section {
  background: var(--news-bg);
  position: relative;
}

.page-news .news-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-news .news-timeline {
  position: relative;
  padding-left: 20px;
}

.page-news .news-timeline-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 24px;
}

.page-news .news-timeline-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.7), rgba(212, 175, 55, 0.15), rgba(138, 43, 226, 0.3));
}

.page-news .news-timeline-item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 28px;
}

.page-news .news-timeline-node {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 44px;
  height: 44px;
  background: #0B1B3A;
  border: 1.5px solid var(--news-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.page-news .news-timeline-node span {
  transform: rotate(-45deg);
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 13px;
  color: var(--news-gold);
  font-weight: 700;
}

.page-news .news-timeline-card {
  background: linear-gradient(135deg, rgba(16, 42, 92, 0.8) 0%, rgba(26, 42, 74, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-news .news-timeline-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.page-news .news-card-cut {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.page-news .news-card-label {
  display: inline-block;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--news-gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 8px;
  margin-bottom: 8px;
}

.page-news .news-card-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
}

.page-news .news-card-summary {
  font-size: 14px;
  color: var(--news-text-dim);
  margin: 0 0 12px;
  line-height: 1.7;
}

.page-news .news-card-meta {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  color: rgba(240, 230, 140, 0.7);
}

.page-news .news-is-featured .news-card-title {
  font-size: 20px;
}

.page-news .news-events-section {
  background: linear-gradient(180deg, #0B1B3A 0%, #102A5C 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.page-news .news-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-event-card {
  background: var(--news-bg-deep);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 97% 100%, 0 100%);
}

.page-news .news-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(138, 43, 226, 0.12);
}

.page-news .news-event-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-event-body {
  padding: 22px;
}

.page-news .news-event-type {
  display: inline-block;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--news-gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-news .news-event-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}

.page-news .news-event-desc {
  font-size: 14px;
  color: var(--news-text-dim);
  margin: 0 0 16px;
  line-height: 1.7;
}

.page-news .news-event-note {
  display: block;
  font-size: 12px;
  color: rgba(176, 184, 200, 0.7);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 12px;
}

.page-news .news-updates-section {
  background: var(--news-bg);
  position: relative;
}

.page-news .news-version-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .news-version-intro {
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.6) 0%, rgba(16, 42, 92, 0.6) 100%);
  border-left: 3px solid var(--news-purple);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-version-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--news-text-dim);
  margin: 0;
}

.page-news .news-version-lead strong {
  color: var(--news-gold);
  font-weight: 600;
}

.page-news .news-version-list {
  display: flex;
  flex-direction: column;
}

.page-news .news-version-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  align-items: start;
}

.page-news .news-version-row:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.page-news .news-version-num {
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 16px;
  color: var(--news-gold);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.page-news .news-version-info h3 {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}

.page-news .news-version-info p {
  font-size: 14px;
  color: var(--news-text-dim);
  margin: 0;
  line-height: 1.7;
}

.page-news .news-analysis-section {
  background: linear-gradient(180deg, #102A5C 0%, #0B1B3A 100%);
}

.page-news .news-analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-news .news-analysis-card {
  background: var(--news-bg-deep);
  padding: 0 0 20px;
  transition: box-shadow 0.2s ease;
}

.page-news .news-analysis-card:hover {
  box-shadow: 0 10px 32px rgba(138, 43, 226, 0.1);
}

.page-news .news-analysis-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-analysis-card .news-analysis-cat,
.page-news .news-analysis-title,
.page-news .news-analysis-excerpt,
.page-news .news-analysis-meta {
  margin-left: 20px;
  margin-right: 20px;
}

.page-news .news-analysis-cat {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  color: var(--news-purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(138, 43, 226, 0.08);
  padding: 2px 8px;
  border-left: 2px solid var(--news-purple);
}

.page-news .news-analysis-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.page-news .news-analysis-excerpt {
  font-size: 14px;
  color: var(--news-text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.page-news .news-analysis-meta {
  display: block;
  font-family: 'Orbitron', 'Courier New', monospace;
  font-size: 11px;
  color: rgba(240, 230, 140, 0.6);
}

.page-news .news-principles {
  padding: 50px 0 64px;
  background: var(--news-bg);
}

.page-news .news-principles-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 32px 20px;
  background: rgba(16, 42, 92, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  align-items: start;
}

.page-news .news-principles-icon {
  display: none;
}

.page-news .news-principles-body p {
  font-size: 14px;
  color: var(--news-text-dim);
  line-height: 1.8;
  margin: 0 0 12px;
}

.page-news .news-principles-body p:last-child {
  margin-bottom: 0;
}

.page-news .news-principles-title {
  font-family: 'Oswald', 'Roboto Condensed', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

@media (min-width: 640px) {
  .page-news .news-hero {
    padding: 130px 0 60px;
  }

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

  .page-news .news-hero-lead {
    font-size: 17px;
  }

  .page-news .news-feature-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-news .news-feature-card {
    grid-column: span 2;
  }

  .page-news .news-timeline {
    padding-left: 0;
  }

  .page-news .news-timeline-axis {
    left: 50%;
    width: 40px;
  }

  .page-news .news-timeline-line {
    left: 19px;
  }

  .page-news .news-timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 60px;
    margin-bottom: 32px;
  }

  .page-news .news-timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 60px;
    padding-right: 0;
  }

  .page-news .news-timeline-node {
    left: auto;
    right: -22px;
    width: 44px;
    height: 44px;
  }

  .page-news .news-timeline-item:nth-child(even) .news-timeline-node {
    right: auto;
    left: -22px;
  }

  .page-news .news-events-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .page-news .news-event-card:first-child {
    grid-column: span 1;
  }

  .page-news .news-event-card:last-child {
    margin-top: 32px;
  }

  .page-news .news-version-layout {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .page-news .news-analysis-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .page-news .news-analysis-card {
    display: flex;
    flex-direction: column;
  }

  .page-news .news-analysis-card .news-analysis-cat,
  .page-news .news-analysis-title,
  .page-news .news-analysis-excerpt {
    margin-left: 20px;
    margin-right: 20px;
  }

  .page-news .news-principles-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid var(--news-gold);
    background: rgba(212, 175, 55, 0.04);
  }
}

@media (min-width: 960px) {
  .page-news .news-feature-grid {
    grid-template-columns: 2fr 1fr;
  }

  .page-news .news-feature-card {
    grid-column: span 1;
  }

  .page-news .news-feature-side {
    grid-template-columns: 1fr;
  }

  .page-news .news-feature-title {
    font-size: 26px;
  }

  .page-news .news-event-card:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: span 2;
  }

  .page-news .news-event-card:first-child .news-event-img {
    height: 100%;
  }

  .page-news .news-event-card:first-child .news-event-img img {
    height: 100%;
    object-fit: cover;
  }

  .page-news .news-principles-inner {
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .page-news .news-timeline-section,
  .page-news .news-updates-section {
    padding: 72px 0;
  }

  .page-news .news-section-title {
    font-size: 32px;
  }

  .page-news .news-timeline-item {
    padding-right: 80px;
  }

  .page-news .news-timeline-item:nth-child(even) {
    padding-left: 80px;
    padding-right: 0;
  }
}
