.poker-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.poker-figure img {
  width: 100%;
  display: block;
}

.poker-figure figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  background: rgba(15, 23, 42, 0.9);
}

.poker-benefits-grid .card--soft,
.poker-other-games-grid .card--soft,
.poker-events-grid .card--soft {
  height: 100%;
}

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

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

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
}

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

.poker-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--space-4);
}

.poker-steps li::before {
  counter-increment: poker-step;
  content: counter(poker-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #e5e7eb;
  background: radial-gradient(circle at 30% 0, #38bdf8, #1d4ed8);
  box-shadow: var(--shadow-sm);
}

.poker-steps h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}

.poker-session-grid,
.poker-social-grid,
.poker-events-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-cta {
  display: flex;
  align-items: stretch;
}

.poker-cta__content {
  width: 100%;
}

.poker-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}

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

.poker-links-grid .card--soft {
  display: flex;
  flex-direction: column;
}

.poker-links-grid .card__footer {
  margin-top: auto;
}

@media (max-width: 960px) {
  .poker-cta__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .poker-session-grid,
  .poker-social-grid,
  .poker-events-grid {
    gap: var(--space-6);
  }
}
