.hero--poker {
  position: relative;
}

.hero__inner--single {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}

@media (max-width: 959px) {
  .hero__inner--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-floats--poker {
  position: relative;
}

.hero-floats__grid--poker {
  position: relative;
  z-index: 2;
}

.hero-floats__bg {
  position: absolute;
  inset: -40px;
  z-index: 1;
  opacity: 0.22;
}

.hero-floats__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.2) brightness(0.8);
}

.hero-float-card--wide {
  grid-column: span 2;
}

@media (min-width: 960px) {
  .hero-floats__grid--poker {
    position: absolute;
    inset: -30px -10px 0 auto;
    max-width: 480px;
  }

  .hero-float-card--wide {
    transform: translate(5%, 10%) rotate(-1deg);
  }

  .hero-float-card--tall {
    transform: translate(-12%, 28%) rotate(3deg);
  }
}

.section-poker-intro__grid {
  align-items: center;
}

.poker-image-panel {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at top, rgba(255, 15, 123, 0.28), transparent 55%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
}

.poker-image-panel img {
  width: 100%;
  height: auto;
  display: block;
}

.poker-image-panel figcaption {
  padding: 12px 16px 16px;
  font-size: var(--font-size-xs);
  color: var(--color-text-soft);
  background: linear-gradient(135deg, rgba(5, 5, 14, 0.96), rgba(10, 10, 22, 0.96));
}

.poker-image-panel--neon {
  background: radial-gradient(circle at 0 0, rgba(255, 231, 74, 0.22), transparent 60%);
}

.section-poker-how__bottom {
  align-items: flex-start;
}

.section-poker-table {
  margin-top: var(--space-4);
}

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

.section-poker-visual__grid {
  align-items: center;
}

.section-poker-experience {
  background: radial-gradient(circle at 10% 0, rgba(255, 15, 123, 0.18), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(255, 231, 74, 0.16), transparent 60%);
}

.section-poker-safety__grid {
  align-items: stretch;
}

.section-poker-safety__card {
  height: 100%;
}

.section-poker-booking__grid {
  align-items: flex-start;
}

.section-poker-booking__steps {
  counter-reset: poker-step-counter;
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-left: 0;
}

.section-poker-booking__steps li {
  position: relative;
  padding-left: 52px;
}

.section-poker-booking__steps li::before {
  counter-increment: poker-step-counter;
  content: counter(poker-step-counter);
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-image: var(--gradient-neon);
  color: #050308;
  box-shadow: var(--shadow-neon-pink);
}

.section-poker-booking__steps h3 {
  font-size: var(--font-size-md);
  margin-bottom: 4px;
}

.section-poker-booking__steps p {
  font-size: var(--font-size-sm);
}

.section-poker-booking__cta {
  height: 100%;
}

.section-poker-booking__buttons {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 480px) {
  .section-poker-booking__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}
