.page-news {
  --news-border: rgba(255, 255, 255, 0.1);
  --news-border-strong: rgba(255, 255, 255, 0.18);
  --news-gold-glow: rgba(212, 175, 55, 0.12);
  --news-red-glow: rgba(211, 47, 47, 0.12);
  --news-cyan-glow: rgba(77, 208, 225, 0.12);
  position: relative;
  overflow: hidden;
  color: var(--light);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

/* ===== Masthead ===== */
.news-masthead {
  position: relative;
  padding: 3rem 0 2.5rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.masthead-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.masthead-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.masthead-breadcrumb a:hover {
  color: var(--gold);
}

.crumb-divider {
  color: rgba(255, 255, 255, 0.3);
}

.masthead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.masthead-copy {
  max-width: 46rem;
}

.masthead-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.masthead-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.masthead-lede {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 40rem;
}

.masthead-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.masthead-stat {
  padding: 0.75rem 1rem;
  border-left: 2px solid var(--gold);
  background: var(--glass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  min-width: 8.2rem;
}

.stat-figure {
  display: block;
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.masthead-board {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--news-border);
  position: relative;
}

.masthead-board::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 0 0 4px 4px;
}

.board-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.board-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.board-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--light);
  padding: 0.35rem 0;
}

.board-dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.board-link {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.board-link:hover {
  border-color: var(--gold);
}

/* ===== Index navigator ===== */
.news-index {
  padding: 1.25rem 0;
  border-top: 1px solid var(--news-border);
  border-bottom: 1px solid var(--news-border);
  background: rgba(11, 29, 46, 0.6);
}

.index-grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.index-grid::-webkit-scrollbar {
  display: none;
}

.index-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--news-border);
  border-radius: 999px;
  background: var(--glass);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.index-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.index-num {
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

.index-name {
  font-size: 0.85rem;
  color: var(--light);
  font-weight: 600;
}

.index-meta {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ===== Section heading ===== */
.news-section {
  padding: 3.5rem 0;
  position: relative;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-index {
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--glass);
}

.section-heading-text {
  flex: 1 1 200px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

.section-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.section-link {
  align-self: flex-end;
}

/* ===== Accent helpers ===== */
.accent-gold {
  color: var(--gold);
  border-left: 3px solid var(--gold);
}

.accent-red {
  color: var(--red);
  border-left: 3px solid var(--red);
}

.accent-cyan {
  color: var(--cyan);
  border-left: 3px solid var(--cyan);
}

.accent-teal {
  color: #4DD0E1;
  border-left: 3px solid var(--cyan);
}

/* ===== Buttons ===== */
.btn-outline-red {
  display: inline-block;
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--light);
}

.btn-gold {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), #b8952e);
  color: #0B1D2E;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* ===== Results section ===== */
.results-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(77, 208, 225, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(11, 29, 46, 0.4), rgba(15, 61, 62, 0.3));
  border-top: 1px solid var(--news-border);
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.results-visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2 / 1;
  border: 1px solid var(--news-border);
}

.results-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-caption {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--news-border);
  display: grid;
  gap: 0.4rem;
}

.result-item:last-child {
  border-bottom: none;
}

.result-main {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.result-sport {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--light);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.result-stage {
  font-size: 0.8rem;
  color: var(--muted);
}

.result-status {
  margin-left: auto;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}

.result-status.is-done {
  color: var(--cyan);
  background: rgba(77, 208, 225, 0.12);
}

.result-status.is-live {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.result-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.result-arrow {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.result-arrow:hover {
  color: var(--red);
}

/* ===== Reviews section ===== */
.reviews-section {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(110, 20, 35, 0.2), transparent 50%),
    rgba(11, 29, 46, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--news-border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--news-border-strong);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.review-num {
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
}

.review-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  flex: 1 1 200px;
}

.review-summary {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0.8rem 0 0.9rem;
}

.review-extend {
  margin: 0.2rem 0 0.5rem;
}

.review-toggle {
  display: inline-block;
  list-style: none;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.5);
  user-select: none;
}

.review-toggle::-webkit-details-marker {
  display: none;
}

.review-extend[open] .review-toggle {
  border-bottom-style: solid;
}

.review-timeline {
  list-style: none;
  padding: 0.8rem 0 0.2rem;
  margin: 0.8rem 0 0;
  border-top: 1px solid var(--news-border);
  display: grid;
  gap: 0.4rem;
}

.review-timeline li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
}

.review-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--red);
}

.copy-link {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.copy-link:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.load-more-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.load-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--news-border-strong), transparent);
}

.load-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  white-space: nowrap;
}

/* ===== Data section ===== */
.data-section {
  border-top: 1px solid var(--news-border);
  background:
    radial-gradient(ellipse at 100% 40%, rgba(77, 208, 225, 0.1), transparent 55%),
    rgba(11, 29, 46, 0.2);
}

.data-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.data-visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 5;
  border: 1px solid var(--news-border);
  background: var(--glass);
}

.data-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.data-articles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.data-article {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--news-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.data-article:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
}

.data-article-index {
  flex: 0 0 auto;
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan);
  opacity: 0.75;
}

.data-article-body {
  flex: 1;
}

.data-article-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  line-height: 1.4;
}

.data-article-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

/* ===== Updates section ===== */
.updates-section {
  border-top: 1px solid var(--news-border);
  background:
    radial-gradient(ellipse at 10% 50%, rgba(15, 61, 62, 0.4), transparent 60%),
    rgba(11, 29, 46, 0.4);
}

.updates-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.update-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--news-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s ease;
}

.update-item:hover {
  border-color: var(--gold);
}

.update-version {
  flex: 0 0 auto;
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.update-body {
  flex: 1;
}

.update-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.4;
}

.update-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.updates-visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--news-border);
  background: var(--glass);
}

.updates-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Case collection section ===== */
.case-section {
  border-top: 1px solid var(--news-border);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(212, 175, 55, 0.12), transparent 50%),
    rgba(11, 29, 46, 0.2);
}

.case-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.case-feature-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 20 / 11;
  border: 1px solid var(--gold);
  background: var(--glass);
}

.case-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-feature-copy {
  padding: 1.25rem 0;
}

.case-feature-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.case-feature-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
  line-height: 1.25;
}

.case-feature-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.4rem;
  max-width: 42rem;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.case-card {
  display: block;
  padding: 1.4rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--news-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--news-gold-glow);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.case-card:hover::after {
  transform: scale(1.6);
}

.case-card-num {
  display: block;
  font-family: 'Roboto Mono', 'SF Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.case-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.case-card-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.case-card-meta {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ===== FAQ nudge ===== */
.faq-nudge {
  border-top: 1px solid var(--news-border);
  padding: 1.75rem 0;
  background: rgba(11, 29, 46, 0.3);
}

.faq-nudge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: var(--glass);
  border: 1px solid var(--news-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.faq-nudge p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

.faq-nudge a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: border-color 0.2s ease;
}

.faq-nudge a:hover {
  border-color: var(--gold);
}

/* ===== Tag ===== */
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--light);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  line-height: 1.4;
}

.tag-gold {
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: transparent;
}

/* ===== Tablet ===== */
@media (min-width: 640px) {
  .masthead-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-grid .case-card:last-child {
    grid-column: 1 / -1;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .news-masthead {
    padding: 4.5rem 0 3.5rem;
  }

  .news-section {
    padding: 5rem 0;
  }

  .results-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .data-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }

  .updates-layout {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
  }

  .updates-list {
    gap: 1.25rem;
  }

  .updates-visual {
    width: 360px;
  }

  .case-feature {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .case-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .case-grid .case-card:last-child {
    grid-column: auto;
  }

  .index-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    gap: 1rem;
  }

  .index-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    border-radius: var(--radius-sm);
    padding: 1rem 1.1rem;
    white-space: normal;
  }

  .index-item:hover {
    transform: translateY(-3px);
  }

  .section-heading {
    flex-wrap: nowrap;
    align-items: center;
  }

  .section-link {
    margin-left: auto;
  }
}

/* ===== Large desktop ===== */
@media (min-width: 1440px) {
  .news-masthead {
    padding: 5rem 0 4rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .reviews-grid .review-card:nth-child(1),
  .reviews-grid .review-card:nth-child(4) {
    grid-column: span 1;
  }
}
