.poker-hero {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  overflow: hidden;
}

.poker-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.poker-hero__content {
  position: relative;
  max-width: 720px;
}

.poker-hero__title {
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.poker-hero__subtitle {
  font-size: var(--font-size-lg);
  max-width: 42rem;
}

.poker-hero__actions {
  margin-top: var(--space-6);
}

.poker-hero__note {
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}

.poker-section-header p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

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

.poker-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-accent-gold), var(--color-primary));
}

.poker-list--compact li {
  margin-bottom: var(--space-1);
}

.poker-list--ordered {
  counter-reset: poker-counter;
}

.poker-list--ordered li {
  padding-left: 2rem;
}

.poker-list--ordered li::before {
  counter-increment: poker-counter;
  content: counter(poker-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(15, 157, 88, 0.18);
  color: var(--color-accent-gold);
  font-size: var(--font-size-xs);
}

.poker-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.poker-link:hover {
  text-decoration: underline;
}

.poker-themes-grid {
  gap: var(--space-8);
}

.poker-theme-card {
  height: 100%;
}

.poker-tables-layout,
.poker-social-layout,
.poker-gastro-layout,
.poker-entry-layout,
.poker-rules-layout,
.poker-rewards-layout {
  gap: var(--space-12);
  align-items: center;
}

.poker-tables-media img,
.poker-social-wine img,
.poker-dealer img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.poker-wine-overlay {
  margin-top: -4rem;
  max-width: 32rem;
}

.poker-tables-badges .badge {
  border: 1px solid var(--color-border-subtle);
}

.poker-testimonials-grid {
  gap: var(--space-8);
}

.poker-testimonial-text {
  font-style: italic;
}

.poker-testimonial-name {
  margin-bottom: 0;
  font-weight: 600;
}

.poker-testimonial-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-rules-extra {
  align-self: stretch;
}

.poker-dealer {
  display: grid;
  gap: var(--space-4);
}

.poker-dealer-content {
  margin-top: var(--space-2);
}

.poker-club {
  padding: var(--space-8);
}

.poker-club-grid {
  margin-top: var(--space-6);
  gap: var(--space-6);
}

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

.poker-final-cta p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .poker-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

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

  .poker-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .poker-wine-overlay {
    margin-top: var(--space-4);
  }

  .poker-club {
    padding: var(--space-6);
  }
}

@media (max-width: 600px) {
  .poker-hero__title {
    font-size: var(--font-size-3xl);
  }

  .poker-hero__subtitle {
    font-size: var(--font-size-base);
  }

  .poker-entry-layout,
  .poker-gastro-layout,
  .poker-rewards-layout,
  .poker-rules-layout,
  .poker-tables-layout,
  .poker-social-layout {
    gap: var(--space-8);
  }
}
