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

.poker-hero__inner {
  align-items: center;
  gap: var(--space-8);
}

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

.poker-hero__lead {
  font-size: var(--font-size-lg);
}

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

.poker-hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.poker-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-layout {
  align-items: flex-start;
  gap: var(--space-8);
}

.poker-layout--reverse {
  direction: rtl;
}

.poker-layout--reverse > * {
  direction: ltr;
}

.poker-section-header__cta {
  flex-shrink: 0;
}

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

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

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

.poker-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-subheading {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.poker-cash-grid {
  gap: var(--space-6);
}

.poker-vip-grid {
  gap: var(--space-6);
}

.poker-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-6);
}

.poker-gallery__item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.poker-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-gallery__caption {
  padding: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-faq {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(5, 7, 13, 0.75);
  padding: var(--space-4);
}

.poker-faq__item {
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-3);
}

.poker-faq__item + .poker-faq__item {
  margin-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.poker-faq__question {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--font-size-sm);
}

.poker-faq__question::-webkit-details-marker {
  display: none;
}

.poker-faq__question::after {
  content: "+";
  float: right;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-faq__item[open] .poker-faq__question::after {
  content: "−";
}

.poker-faq__answer {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
}

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

.poker-steps li {
  counter-increment: poker-step;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-steps li::before {
  content: counter(poker-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background-color: var(--color-primary-soft);
  color: var(--color-primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.poker-cta__actions {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .poker-hero {
    padding-block: var(--space-12);
  }

  .poker-hero__inner {
    text-align: left;
  }

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

  .poker-layout--reverse {
    direction: ltr;
  }

  .poker-gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
