.poker-hero {
  position: relative;
}
.poker-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(229, 57, 53, 0.32), transparent 60%), radial-gradient(circle at 90% 100%, rgba(0, 200, 83, 0.26), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.poker-hero .container {
  position: relative;
  z-index: 1;
}
.poker-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--grid-gap-xl);
  align-items: center;
}
.poker-hero-content {
  max-width: 40rem;
}
.poker-hero-meta {
  max-width: 32rem;
}
.poker-hero-note {
  max-width: 32rem;
}
.poker-hero-media {
  display: flex;
  justify-content: flex-end;
}
.poker-hero-poster {
  max-width: 420px;
}
.poker-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-format-card {
  height: 100%;
}
.poker-format-grid {
  align-items: center;
}
.poker-format-media {
  max-width: 520px;
}
.poker-format-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-subheading {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-xs);
}
.poker-bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}
.poker-bullet-list li {
  margin-bottom: 0.3rem;
}
.poker-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--grid-gap-xl);
  align-items: flex-start;
}
.poker-flow-media {
  max-width: 480px;
}
.poker-flow-figure {
  margin-left: auto;
  margin-right: auto;
}
.poker-flow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-flow-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}
.poker-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.poker-step-item {
  position: relative;
  padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) + 2.4rem);
  border-radius: var(--radius-card);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base), background var(--transition-base);
}
.poker-step-item::before {
  content: attr(data-step);
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-invert);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: var(--shadow-glow-red);
}
.poker-step-item-active,
.poker-step-item:hover {
  border-color: var(--color-border-strong);
  background: radial-gradient(circle at 0 0, var(--color-primary-soft), transparent 60%), radial-gradient(circle at 100% 100%, var(--color-accent-soft), transparent 60%), var(--color-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft), var(--shadow-glow-emerald);
}
.poker-step-title {
  font-size: var(--fs-lg);
  margin: 0 0 var(--space-xs);
}
.poker-step-text {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}
.poker-flow-cta {
  max-width: 32rem;
}
.poker-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-lg);
}
.poker-gallery-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-md);
}
.poker-gallery-media {
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.poker-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poker-gallery-caption {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.poker-gallery-title {
  font-size: var(--fs-lg);
  margin: 0;
}
.poker-why-card {
  box-shadow: var(--shadow-soft), var(--shadow-glow-red);
}
.poker-why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: var(--grid-gap-xl);
  align-items: flex-start;
}
.poker-why-main {
  min-width: 0;
}
.poker-why-copy {
  max-width: 34rem;
}
.poker-why-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}
.poker-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap-md);
}
.poker-why-item {
  padding: var(--space-md);
  border-radius: var(--radius-card);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-subtle);
}
.poker-why-title {
  font-size: var(--fs-md);
  margin: 0 0 var(--space-xs);
}
.poker-why-text {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}
.poker-why-cta {
  padding: var(--space-md);
  border-radius: var(--radius-card);
  border: 1px dashed var(--color-border-strong);
  background: var(--color-bg-soft);
}
.poker-why-cta .btn-group .btn {
  max-width: 100%;
}
.poker-hero .btn,
.poker-flow-cta .btn,
.poker-why-cta .btn {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .poker-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
  .poker-hero-poster {
    max-width: 360px;
  }
  .poker-flow-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .poker-flow-media {
    max-width: 520px;
    order: -1;
  }
  .poker-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .poker-why-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .poker-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .poker-hero-media {
    justify-content: center;
  }
  .poker-hero-poster {
    max-width: 320px;
  }
  .poker-format-grid {
    flex-direction: column-reverse;
  }
  .poker-format-media {
    max-width: 100%;
  }
  .poker-step-item {
    padding: var(--space-md) var(--space-sm) var(--space-md) calc(var(--space-md) + 2.2rem);
  }
  .poker-why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 480px) {
  .poker-hero-note {
    font-size: var(--fs-xs);
  }
  .poker-step-title {
    font-size: var(--fs-md);
  }
  .poker-gallery-item {
    padding: var(--space-sm);
  }
}
