body {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617 55%);
}

.game-hero {
  position: relative;
}

.game-hero__grid {
  align-items: center;
}

.game-hero__content {
  max-width: 40rem;
}

.game-hero__eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.game-hero__intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.game-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.game-hero__figure {
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.game-hero__caption,
.game-world__caption,
.game-gallery__item figcaption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
}

.game-hero__meta {
  margin-top: var(--space-6);
}

.game-hero__meta-item {
  min-width: 0;
}

.game-hero__meta-text {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.game-section-header {
  max-width: 48rem;
  margin-bottom: var(--space-8);
}

.game-list {
  list-style: none;
}

.game-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.game-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: var(--color-primary);
}

.game-mechanics__table-wrapper {
  margin-top: var(--space-8);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.game-steps {
  list-style: none;
  counter-reset: step;
}

.game-steps li {
  margin-bottom: var(--space-4);
}

.game-steps h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.game-steps p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.game-world__figure {
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.game-gallery__grid {
  align-items: stretch;
}

.game-gallery__item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: var(--color-surface);
}

.game-gallery__item img {
  width: 100%;
  height: auto;
}

.game-tips__card,
.game-updates__card,
.game-community__card,
.game-flow__highlight {
  height: 100%;
}

.game-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.game-faq__item .card__title {
  font-size: var(--text-base);
}

@media (max-width: 960px) {
  .game-hero__visual {
    margin-top: var(--space-8);
    justify-content: flex-start;
  }

  .game-world__figure {
    margin-left: 0;
    margin-top: var(--space-6);
  }
}

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

  .game-hero {
    padding-top: var(--space-16);
  }
}
