.hero--poker {
  padding-top: 120px;
}
.hero__banner--poker {
  background:
    linear-gradient(135deg, rgba(242, 54, 168, 0.5), rgba(91, 73, 255, 0.7)),
    url("/assets/images/poker-night-hero.webp") center/cover no-repeat;
  opacity: 0.8;
}
.hero__chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.poker-intro__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.poker-intro__image {
  display: flex;
  align-items: center;
}
.poker-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top, rgba(242, 54, 168, 0.28), transparent 60%);
}
.poker-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-image-card figcaption {
  padding: 14px 18px;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
  background: linear-gradient(to top, rgba(5, 3, 18, 0.96), rgba(5, 3, 18, 0.3));
}
.poker-image-card--wide img {
  max-height: 420px;
}
.poker-atmosphere__grid {
  align-items: center;
}
.poker-hosts__card,
.poker-equipment__image {
  display: flex;
  align-items: center;
}
.poker-social__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.poker-formats__footer {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.poker-steps__timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto 32px;
}
.poker-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px 0;
}
.poker-step__number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: var(--shadow-glow-primary);
}
.poker-step__content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 6px;
}
.poker-steps__timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(242, 54, 168, 0.2), rgba(177, 60, 255, 0.8));
}
.poker-step:first-child {
  padding-top: 0;
}
.poker-step:last-child {
  padding-bottom: 0;
}
.poker-steps__cta {
  margin-top: 16px;
}
.poker-cta-final {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .poker-formats__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .poker-step {
    grid-template-columns: auto 1fr;
  }
  .poker-steps__timeline::before {
    left: 16px;
  }
}
