.poker-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.poker-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(5, 5, 10, 0.85), rgba(5, 5, 10, 0.96)), url('/assets/images/poker-lounge-evening.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}

.poker-hero__content {
  position: relative;
}

.poker-hero__text {
  max-width: 640px;
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.poker-intro,
.poker-atmosphere,
.poker-games,
.poker-tables,
.poker-tournaments,
.poker-fairplay,
.poker-themed,
.poker-promotions,
.poker-gallery,
.poker-testimonials,
.poker-final-cta {
  gap: var(--space-8);
}

.poker-intro__figure,
.poker-tables__figure,
.poker-themed__figure,
.poker-gallery__item img {
  border-radius: var(--radius-lg);
}

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

.poker-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f7c96a, #f2b544);
}

.poker-game-card,
.poker-testimonial {
  height: 100%;
}

.poker-steps {
  list-style: none;
  counter-reset: poker-step;
  padding-left: 0;
}

.poker-steps li {
  counter-increment: poker-step;
  margin-bottom: var(--space-3);
  padding-left: 2.25rem;
  position: relative;
  color: var(--color-text-muted);
}

.poker-steps li::before {
  content: counter(poker-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(242, 181, 68, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: var(--color-primary);
}

.poker-testimonial__author {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}

.poker-final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (max-width: 768px) {
  .poker-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .poker-hero__text {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .poker-final-cta__actions .w-full {
    width: 100%;
  }
}
