.page-poker main {
  padding-top: var(--space-8);
}

.hero--poker {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

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

.hero-lead {
  font-size: var(--font-size-lg);
}

.hero-actions {
  flex-wrap: wrap;
}

.hero-media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-medium);
}

.hero-media-caption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hero-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-meta dt {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.hero-meta dd {
  font-size: var(--font-size-sm);
}

.poker-bullets {
  list-style: none;
}

.poker-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.poker-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.game-flow-steps {
  list-style: none;
  counter-reset: poker-step;
}

.game-flow-steps li {
  counter-increment: poker-step;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border-subtle);
}

.game-flow-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.game-flow-steps h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.game-flow-steps p {
  font-size: var(--font-size-sm);
}

.comfort-grid article h3 {
  margin-bottom: var(--space-2);
}

.final-cta {
  background: radial-gradient(circle at top left, rgba(31, 122, 255, 0.18), transparent 60%), var(--color-surface-alt);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.final-cta-inner {
  align-items: center;
  gap: var(--space-6);
}

.final-cta-actions {
  align-items: flex-end;
}

@media (max-width: 991px) {
  .hero-meta-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta-actions {
    align-items: stretch;
    width: 100%;
  }

  .final-cta-actions .button {
    width: 100%;
    justify-content: center;
  }
}

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

  .card {
    padding: var(--space-4);
  }
}
