body {
  background-attachment: fixed;
}

.section--hero-gameplay {
  padding-top: var(--space-40);
  padding-bottom: var(--space-32);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-intro {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.hero-media {
  position: relative;
}

.hero-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.section-heading .section-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.gameplay-overview-grid .card--soft {
  backdrop-filter: blur(10px);
}

.combat-grid .card--soft h3 {
  color: var(--color-gameplay);
}

.exploration-section img {
  border-radius: var(--radius-lg);
}

.boss-grid .card--soft h3 {
  font-size: var(--font-size-lg);
}

.difficulty-card img {
  width: 100%;
}

.section-cta-final {
  border-top: 1px solid var(--color-border-subtle);
}

.section-cta-final .section-lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section--hero-gameplay {
    padding-top: var(--space-32);
  }

  .hero-intro {
    font-size: var(--font-size-base);
  }

  .section {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}
