.hero--poker {
  position: relative;
}

.hero--poker::before {
  filter: blur(4px);
}

.hero__content--poker {
  max-width: 760px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.hero__meta {
  margin-top: var(--space-16);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.poker-intro {
  align-items: center;
  gap: var(--space-32);
}

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

.poker-intro__media {
  display: flex;
  justify-content: center;
}

.poker-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(255, 122, 26, 0.18), transparent 60%);
  box-shadow: var(--shadow-soft-lg);
}

.poker-figure img {
  width: 100%;
  height: auto;
}

.poker-figure figcaption {
  padding: var(--space-16);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  background: rgba(5, 6, 8, 0.9);
}

.poker-figure--glow {
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 122, 26, 0.35);
}

.poker-figure--props,
.poker-figure--scenario {
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85), 0 0 32px rgba(255, 122, 26, 0.25);
}

.section--poker-atmosphere {
  background: radial-gradient(circle at top, rgba(255, 122, 26, 0.06), transparent 65%);
}

.section--poker-format {
  background: linear-gradient(145deg, rgba(12, 15, 20, 0.98), rgba(5, 6, 8, 1));
}

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

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

.poker-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a1a, #ffb347);
  box-shadow: 0 0 10px rgba(255, 122, 26, 0.7);
}

.poker-groups__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
}

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

.poker-steps {
  counter-reset: pokerstep;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.poker-steps li {
  position: relative;
  padding-left: 42px;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-steps li::before {
  counter-increment: pokerstep;
  content: counter(pokerstep);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffd280, #ff7a1a);
  color: #050608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  font-weight: 700;
  box-shadow: var(--shadow-glow-primary);
}

.section--poker-visuals {
  background: radial-gradient(circle at 15% 0, rgba(255, 122, 26, 0.12), transparent 70%);
}

.section--poker-program {
  background: linear-gradient(160deg, rgba(5, 6, 8, 1), rgba(12, 15, 20, 0.96));
}

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

.section--info {
  background: rgba(5, 6, 8, 0.98);
}

.info-grid {
  gap: var(--space-32);
}

.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.section--cta-final {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: var(--space-24);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.2), rgba(5, 6, 8, 0.95));
  box-shadow: var(--shadow-soft-lg);
}

.cta-final__text h2 {
  margin-bottom: var(--space-8);
}

.cta-final__text p {
  margin-bottom: 0;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .cta-final {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-final__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hero__content--poker {
    text-align: left;
  }

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

@media (max-width: 480px) {
  .poker-steps li {
    padding-left: 36px;
  }
}
