.page-news {
  --news-line: #24406e;
  --news-card-bg: #0e1e36;
  --news-card-bg-2: #16233d;
  --news-c-primary: #1B3B6F;
  --news-c-neon: #39FF14;
  --news-c-accent: #FF6B35;
  --news-c-text: #F5F5F0;
  --news-c-dim: #A8A29E;
  --news-c-light: #B0C4DE;
  --news-width: 1240px;
  --news-radius: 6px;
  --news-gutter: 24px;
  --news-font-body: "Open Sans", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --news-font-head: "Arial Black", "Impact", "Noto Sans SC", "PingFang SC", sans-serif;
  --news-font-data: "Courier New", "Roboto Mono", monospace;

  background: #121212;
  color: var(--news-c-text);
  font-family: var(--news-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-news .container {
  width: min(var(--news-width), calc(100% - 32px));
  margin-inline: auto;
}

.page-news .section {
  padding-block: 48px 32px;
}

.page-news .section-dark {
  background:
    linear-gradient(160deg, rgba(27, 59, 111, 0.85) 0%, rgba(14, 30, 54, 0.92) 55%, rgba(18, 18, 18, 1) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 12px);
  border-top: 3px solid rgba(57, 255, 20, 0.5);
  border-bottom: 3px solid rgba(57, 255, 20, 0.25);
}

.page-news .section-index {
  display: inline-block;
  font-family: var(--news-font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--news-c-neon);
  margin-bottom: 10px;
}

.page-news .section-head {
  margin-bottom: 28px;
  position: relative;
}

.page-news .section-head::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--news-c-neon) 0%, var(--news-c-accent) 100%);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 6% 100%);
}

.page-news .section-title {
  font-family: var(--news-font-head);
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
  color: var(--news-c-text);
  letter-spacing: 0.02em;
}

.page-news .section-subtitle {
  color: var(--news-c-dim);
  font-size: 15px;
  margin-top: 10px;
  max-width: 42em;
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--news-c-dim);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.page-news .breadcrumb-link {
  color: var(--news-c-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumb-link:hover {
  color: var(--news-c-neon);
}

.page-news .breadcrumb-sep {
  color: var(--news-c-dim);
}

.page-news .breadcrumb-current {
  color: var(--news-c-text);
  font-weight: 600;
}

.page-news .news-hero {
  padding-top: 40px;
  background:
    linear-gradient(120deg, #121212 0%, #121212 32%, #0e1e36 68%, #1b3b6f 100%);
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent 0%, #39FF14 45%, #FF6B35 100%);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.page-news .news-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}

.page-news .news-hero-copy {
  position: relative;
  z-index: 2;
}

.page-news .news-hero-title {
  font-family: var(--news-font-head);
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}

.page-news .news-hero-title .hero-title-line {
  display: block;
  color: var(--news-c-neon);
  background: linear-gradient(90deg, #39FF14, #FF6B35);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.72em;
}

.page-news .news-hero-lead {
  font-size: 16px;
  color: var(--news-c-dim);
  max-width: 34em;
  margin-bottom: 22px;
}

.page-news .news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.page-news .live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--news-c-light);
  font-weight: 600;
}

.page-news .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39FF14;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  animation: news-pulse 1.6s ease-in-out infinite;
}

@keyframes news-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

.page-news .news-hero-visual {
  margin-top: 8px;
}

.page-news .news-hero-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(176, 196, 222, 0.2);
  border-radius: var(--news-radius);
  clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 100%, 0 100%);
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--news-radius);
  border: 1px solid transparent;
  white-space: nowrap;
}

.page-news .tag-neon {
  color: #061006;
  background: #39FF14;
  border-color: #39FF14;
}

.page-news .tag-hot {
  color: #1a0d05;
  background: #FF6B35;
  border-color: #FF6B35;
}

.page-news .tag-blue {
  color: #eaf2fc;
  background: #1B3B6F;
  border-color: #3b5b96;
}

.page-news .news-feed {
  padding-top: 56px;
}

.page-news .feed-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(176, 196, 222, 0.12);
}

.page-news .feed-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--news-font-body);
  color: var(--news-c-light);
  background: rgba(27, 59, 111, 0.35);
  border: 1px solid rgba(176, 196, 222, 0.25);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.page-news .feed-filter-btn:hover,
.page-news .feed-filter-btn:focus-visible {
  color: #061006;
  background: #39FF14;
  border-color: #39FF14;
  outline: none;
}

.page-news .feed-filter-btn.is-active {
  color: #061006;
  background: #39FF14;
  border-color: #39FF14;
}

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

.page-news .timeline-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #39FF14 0%, #1B3B6F 40%, #FF6B35 100%);
  border-radius: 999px;
  opacity: 0.7;
}

.page-news .timeline-marker {
  position: relative;
  padding-left: 36px;
  margin: 30px 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-news .timeline-marker::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 17px;
  height: 17px;
  background: #121212;
  border: 3px solid #39FF14;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.18);
}

.page-news .marker-year {
  font-family: var(--news-font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--news-c-neon);
  letter-spacing: 0.06em;
}

.page-news .marker-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.6), rgba(255, 107, 53, 0.15));
  border-radius: 999px;
}

.page-news .news-card {
  position: relative;
  margin-left: 36px;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(14, 30, 54, 0.96) 0%, rgba(22, 35, 61, 0.9) 100%);
  border: 1px solid rgba(176, 196, 222, 0.14);
  border-radius: var(--news-radius);
  padding: 22px 18px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}

.page-news .news-card:hover,
.page-news .news-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(57, 255, 20, 0.12);
}

.page-news .news-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.page-news .news-date {
  font-family: var(--news-font-data);
  font-size: 13px;
  color: var(--news-c-dim);
  letter-spacing: 0.08em;
}

.page-news .news-card-title {
  font-family: var(--news-font-head);
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--news-c-text);
}

.page-news .news-card-desc {
  font-size: 15px;
  color: var(--news-c-dim);
  margin: 0 0 12px;
  max-width: 58em;
}

.page-news .news-card-more {
  border-top: 1px dashed rgba(176, 196, 222, 0.18);
  padding-top: 12px;
}

.page-news .news-collapse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--news-c-neon);
  font-family: var(--news-font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
}

.page-news .news-collapse-btn:hover .btn-arrow,
.page-news .news-collapse-btn:focus-visible .btn-arrow {
  transform: rotate(45deg);
}

.page-news .btn-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.page-news .news-collapse-panel {
  display: none;
  margin-top: 12px;
  padding: 14px 14px 4px;
  background: rgba(18, 18, 18, 0.55);
  border-left: 3px solid #39FF14;
  border-radius: 0 4px 4px 0;
}

.page-news .news-collapse-panel[data-open="true"] {
  display: block;
  animation: news-panel-in 0.3s ease;
}

@keyframes news-panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-news .news-collapse-panel p {
  font-size: 14px;
  color: var(--news-c-light);
  margin-bottom: 12px;
}

.page-news .news-collapse-panel img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  border-radius: 4px;
  margin: 4px 0 12px;
  border: 1px solid rgba(176, 196, 222, 0.22);
}

.page-news .btn-inline {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
}

.page-news .btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #39FF14;
  color: #0a140a;
  font-weight: 700;
  border-radius: var(--news-radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-news .btn-neon:hover {
  background: #2bd90c;
  transform: translateY(-1px);
}

.page-news .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--news-c-light);
  border: 1px solid rgba(176, 196, 222, 0.4);
  border-radius: var(--news-radius);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-news .btn-ghost:hover {
  border-color: #39FF14;
  color: #39FF14;
  background: rgba(57, 255, 20, 0.05);
}

.page-news .btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #FF6B35;
  color: #200c03;
  font-weight: 800;
  border-radius: var(--news-radius);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-news .btn-accent:hover {
  background: #f05a20;
  transform: translateY(-2px);
}

.page-news .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  color: var(--news-c-neon);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(57, 255, 20, 0.35);
  transition: border-color 0.2s ease;
}

.page-news .btn-text:hover {
  border-color: #39FF14;
}

.page-news .news-card-feature {
  border-color: rgba(57, 255, 20, 0.22);
  background:
    linear-gradient(135deg, rgba(27, 59, 111, 0.8) 0%, rgba(14, 30, 54, 0.96) 60%),
    radial-gradient(circle at 85% 18%, rgba(57, 255, 20, 0.12), transparent 46%);
}

.page-news .season-special {
  margin-top: 24px;
}

.page-news .season-head {
  margin-bottom: 30px;
}

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

.page-news .special-card {
  display: flex;
  flex-direction: column;
  background: rgba(14, 30, 54, 0.72);
  border: 1px solid rgba(176, 196, 222, 0.16);
  border-radius: var(--news-radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-news .special-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.4);
}

.page-news .special-card-main {
  background: rgba(14, 30, 54, 0.72);
}

.page-news .special-media {
  overflow: hidden;
  border-bottom: 1px solid rgba(176, 196, 222, 0.14);
}

.page-news .special-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.page-news .special-body {
  padding: 20px 18px;
}

.page-news .special-title {
  font-family: var(--news-font-head);
  font-size: 21px;
  line-height: 1.3;
  margin: 14px 0 10px;
  color: var(--news-c-text);
}

.page-news .special-text {
  font-size: 15px;
  color: var(--news-c-dim);
  margin-bottom: 16px;
  max-width: 50em;
}

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

.page-news .archive-head {
  margin-bottom: 26px;
}

.page-news .archive-list {
  display: grid;
  gap: 14px;
}

.page-news .archive-item {
  background: rgba(14, 30, 54, 0.66);
  border: 1px solid rgba(176, 196, 222, 0.14);
  border-radius: var(--news-radius);
  transition: border-color 0.2s ease;
}

.page-news .archive-item:hover {
  border-color: rgba(57, 255, 20, 0.3);
}

.page-news .archive-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.page-news .archive-summary::-webkit-details-marker {
  display: none;
}

.page-news .archive-month {
  font-family: var(--news-font-head);
  font-size: 17px;
  color: var(--news-c-text);
}

.page-news .archive-count {
  font-family: var(--news-font-data);
  font-size: 14px;
  color: var(--news-c-neon);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: auto;
}

.page-news .archive-icon {
  font-size: 22px;
  color: var(--news-c-accent);
  transition: transform 0.2s ease;
}

.page-news .archive-item[open] .archive-icon {
  transform: rotate(45deg);
}

.page-news .archive-entries {
  margin: 0 18px 16px;
  padding: 0 0 4px 18px;
  border-left: 2px solid rgba(57, 255, 20, 0.35);
  list-style: none;
}

.page-news .archive-entries li {
  position: relative;
  padding: 6px 0;
  font-size: 14px;
  color: var(--news-c-light);
}

.page-news .archive-entries li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 14px;
  width: 7px;
  height: 7px;
  background: #39FF14;
  border-radius: 50%;
  transform: translateX(-50%);
}

.page-news .subscribe-reminder {
  margin-top: 28px;
  padding-bottom: 52px;
}

.page-news .subscribe-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.page-news .subscribe-copy .section-title {
  margin-bottom: 12px;
}

.page-news .subscribe-desc {
  color: var(--news-c-dim);
  font-size: 16px;
  max-width: 38em;
  margin: 0;
}

.page-news .subscribe-card {
  background: linear-gradient(145deg, #0e1e36 0%, #16233d 100%);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--news-radius);
  padding: 22px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}

.page-news .subscribe-card-title {
  font-family: var(--news-font-head);
  font-size: 21px;
  margin: 10px 0 12px;
}

.page-news .subscribe-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .subscribe-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--news-c-light);
}

.page-news .subscribe-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #39FF14;
  clip-path: polygon(0 0, 100% 40%, 60% 100%, 20% 60%);
}

.page-news .subscribe-note {
  font-size: 13px;
  color: var(--news-c-dim);
  margin-top: 12px;
}

@media (min-width: 640px) {
  .page-news .section {
    padding-block: 64px 40px;
  }

  .page-news .news-hero {
    padding-top: 56px;
  }

  .page-news .news-hero-inner {
    grid-template-columns: minmax(0, 1fr) 0.85fr;
    gap: 36px;
  }

  .page-news .news-hero-img {
    border-radius: var(--news-radius);
    clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 24px 100%);
  }

  .page-news .news-card {
    padding: 26px 24px 18px;
    margin-left: 48px;
  }

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

  .page-news .timeline-wrap::before {
    left: 16px;
  }

  .page-news .timeline-marker {
    padding-left: 52px;
    margin-top: 36px;
  }

  .page-news .timeline-marker::before {
    left: 8px;
    width: 20px;
    height: 20px;
  }

  .page-news .marker-year {
    font-size: 20px;
  }

  .page-news .news-card-title {
    font-size: 21px;
  }

  .page-news .news-card-desc {
    font-size: 15px;
  }

  .page-news .special-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

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

  .page-news .special-card-main .special-media {
    border-bottom: 1px solid rgba(176, 196, 222, 0.14);
  }

  .page-news .special-card:not(.special-card-main) .special-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }

  .page-news .subscribe-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: end;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero-title {
    font-size: 60px;
  }

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

  .page-news .news-feed {
    padding-top: 72px;
  }

  .page-news .timeline-wrap::before {
    left: 22px;
  }

  .page-news .timeline-marker {
    padding-left: 68px;
  }

  .page-news .timeline-marker::before {
    left: 14px;
    width: 22px;
    height: 22px;
  }

  .page-news .news-card {
    margin-left: 68px;
    padding: 30px 30px 22px;
  }

  .page-news .news-card-title {
    font-size: 23px;
  }

  .page-news .special-media img {
    aspect-ratio: 2 / 1;
  }

  .page-news .archive-list {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .page-news .archive-item {
    height: fit-content;
  }

  .page-news .archive-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 18px 12px;
  }

  .page-news .archive-count {
    margin-left: 0;
  }

  .page-news .archive-icon {
    position: absolute;
    right: 18px;
    top: 18px;
  }

  .page-news .archive-item {
    position: relative;
  }

  .page-news .subscribe-reminder {
    padding-block: 68px 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .live-dot {
    animation: none;
  }

  .page-news .news-collapse-panel[data-open="true"] {
    animation: none;
  }

  .page-news .news-card,
  .page-news .special-card,
  .page-news .btn-neon,
  .page-news .btn-accent,
  .page-news .btn-ghost {
    transition: none;
  }

  .page-news [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
