.page-header .align-start {
  align-items: flex-start;
}

.gameplay-hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-elevated);
  background: #123526;
}

.gameplay-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gameplay-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(18, 17, 12, 0.78), transparent 55%);
}

.gameplay-hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.gameplay-hero-pill {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(248, 241, 229, 0.12);
  color: #fffaf0;
  backdrop-filter: blur(8px);
}

.gameplay-hero-pill--gold {
  background: rgba(242, 181, 68, 0.9);
  color: #3a2313;
}

.gameplay-hero-pill--green {
  background: rgba(63, 141, 79, 0.9);
  color: #fdf7e6;
}

.gameplay-ordered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gameplay-ordered-list li {
  display: grid;
  grid-template-columns: auto;
  gap: 0.15rem;
  padding-left: 2rem;
  position: relative;
  font-size: var(--font-size-sm);
}

.gameplay-ordered-list li span {
  font-weight: 600;
  color: var(--color-primary-deep);
}

.gameplay-ordered-list li small {
  color: var(--gray-600);
}

.gameplay-ordered-list li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff9cf, var(--color-accent-gold));
  color: #3a2313;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(242, 181, 68, 0.45);
}

.gameplay-ordered-list {
  counter-reset: step;
}

.gameplay-card-image img {
  border-radius: var(--radius-md);
}

@media (max-width: 767px) {
  .gameplay-hero-overlay {
    padding: var(--space-3);
  }

  .gameplay-hero-pill-row {
    gap: var(--space-1);
  }
}
