/* Gameplay page specific styles - builds on base.css */

.gameplay-hero {
  padding-block: var(--space-16);
}

.gameplay-hero__inner {
  gap: var(--space-6);
}

.gameplay-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-600);
  list-style: none;
  padding-left: 0;
}

.gameplay-breadcrumbs li + li::before {
  content: "/";
  margin-inline: 0.35rem;
  color: var(--gray-500);
}

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

.gameplay-hero__lead {
  font-size: var(--font-size-lg);
}

.gameplay-hero__media {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.gameplay-section {
  position: relative;
}

.gameplay-list {
  list-style: none;
  padding-left: 0;
}

.gameplay-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.gameplay-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-purple) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(39, 229, 255, 0.7);
}

.gameplay-cta {
  padding-bottom: var(--space-20);
}

.gameplay-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.gameplay-cta__buttons {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .gameplay-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .gameplay-hero__media {
    max-width: 28rem;
  }
}

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

  .gameplay-hero__lead {
    font-size: var(--font-size-md);
  }

  .gameplay-cta__buttons {
    width: 100%;
  }

  .gameplay-cta__buttons .button {
    width: 100%;
    justify-content: center;
  }
}
