.poker-layout {
  align-items: center;
}

.poker-intro-media,
.poker-tournament-media,
.poker-private-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.poker-figure {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), #05060a 55%);
}

.poker-image-main {
  width: 100%;
  height: auto;
}

.poker-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section-header p {
  max-width: 640px;
  margin-inline: auto;
}

.poker-formats-grid .card {
  height: 100%;
}

.poker-list {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  padding-left: 1.1rem;
}

.poker-list li {
  position: relative;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(255, 75, 75, 0.7);
}

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

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

.poker-steps li::before {
  content: counter(poker-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.poker-faq {
  margin-top: var(--space-3);
}

.poker-faq-item {
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.poker-faq-item:last-child {
  border-bottom: none;
}

.poker-faq-item dt {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.poker-faq-item dd {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero__content {
  max-width: 720px;
}

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

.poker-reservation-layout,
.poker-tournament-layout,
.poker-private-layout {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .poker-figure {
    max-width: 100%;
  }

  .hero__content {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}
