body.page {
  background-color: var(--color-bg);
}
.hero-media-block {
  margin-top: var(--space-xl);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-glow-cyan);
}
.hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-actions-row {
  flex-wrap: wrap;
}
.hero-cta-main,
.hero-cta-secondary {
  max-width: 100%;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.section-header-main {
  max-width: var(--content-max-width);
}
.section-lead {
  color: var(--color-text-muted);
}
.section-kicker-row {
  justify-content: space-between;
}
.section-news,
.section-esports,
.section-hardware,
.section-featured {
  background-color: var(--color-bg);
}
.news-grid,
.esports-grid,
.hardware-grid,
.featured-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap-lg);
}
.section-cta-row {
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.section-cta-row-bottom {
  justify-content: space-between;
}
.section-cta-row .btn {
  max-width: 100%;
}
.news-card,
.esports-card,
.hardware-card,
.featured-card {
  border-width: 1px;
  border-style: solid;
  border-color: var(--color-border-strong);
}
.news-card:hover,
.esports-card:hover,
.hardware-card:hover,
.featured-card:hover {
  box-shadow: var(--shadow-glow-cyan);
}
.news-card-title,
.esports-card-title,
.hardware-card-title,
.featured-card-title {
  font-size: var(--text-2xl);
}
.news-card-link,
.esports-card-link,
.hardware-card-link,
.featured-card-link {
  color: var(--color-text);
}
.news-card-link:hover,
.esports-card-link:hover,
.hardware-card-link:hover,
.featured-card-link:hover {
  color: var(--color-accent-cyan);
}
.news-card-excerpt,
.esports-card-excerpt,
.hardware-card-excerpt,
.featured-card-excerpt {
  color: var(--color-text-muted);
}
.esports-meta-list,
.hardware-meta-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.featured-layout {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  align-items: stretch;
}
.featured-card-main {
  border-color: var(--color-accent-cyan-soft);
}
.featured-side-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--grid-gap-md);
}
[data-glow-interactive] {
  position: relative;
  transition: box-shadow var(--transition-med), border-color var(--transition-med), transform var(--transition-med), background-color var(--transition-med), color var(--transition-med);
}
[data-glow-interactive]:hover,
[data-glow-interactive]:focus-visible {
  box-shadow: 0 0 0 1px rgba(39, 243, 255, 0.7), 0 0 26px rgba(39, 243, 255, 0.9);
  border-color: rgba(39, 243, 255, 0.8);
}
.hero-state-a .hero-shell {
  border-color: rgba(39, 243, 255, 0.6);
}
.hero-state-b .hero-shell {
  border-color: rgba(255, 122, 26, 0.7);
}
.hero-state-c .hero-shell {
  border-color: var(--color-success);
}
.hero-state-b .hero-visual-panel {
  box-shadow: var(--shadow-glow-orange);
}
.hero-state-c .hero-visual-panel {
  box-shadow: 0 0 0 1px rgba(62, 233, 138, 0.7), 0 0 32px rgba(62, 233, 138, 0.9);
}
.section-news .card {
  background: radial-gradient(circle at top, rgba(39, 243, 255, 0.08), transparent 55%), var(--color-bg-elevated);
}
.section-esports .card {
  background: radial-gradient(circle at top, rgba(255, 122, 26, 0.08), transparent 55%), var(--color-bg-elevated);
}
.section-hardware .card {
  background: radial-gradient(circle at top, rgba(62, 233, 138, 0.08), transparent 55%), var(--color-bg-elevated);
}
.section-featured .card {
  background: radial-gradient(circle at top, rgba(39, 243, 255, 0.08), transparent 55%), radial-gradient(circle at bottom, rgba(255, 122, 26, 0.08), transparent 55%), var(--color-bg-elevated);
}
.section-news,
.section-esports,
.section-hardware,
.section-featured {
  border-top: 1px solid var(--color-border-subtle);
}
.hero-footnote {
  margin-top: var(--space-sm);
  color: var(--color-text-soft);
}
.hero-copy {
  min-width: 0;
}
.hero-visual {
  min-width: 0;
}
.news-grid > *,
.esports-grid > *,
.hardware-grid > *,
.featured-layout > *,
.featured-side-grid > * {
  min-width: 0;
}
@media (max-width: 1023.98px) {
  .news-grid,
  .esports-grid,
  .hardware-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .featured-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  }
}
@media (max-width: 767.98px) {
  .section-header {
    margin-bottom: var(--space-lg);
  }
  .section-kicker-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  .news-grid,
  .esports-grid,
  .hardware-grid,
  .featured-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .section-cta-row,
  .section-cta-row-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .section-cta-row-bottom {
    justify-content: flex-start;
  }
}
@media (max-width: 479.98px) {
  .news-card-title,
  .esports-card-title,
  .hardware-card-title,
  .featured-card-title {
    font-size: var(--text-xl);
  }
}
