.poker-page {
  padding-block: var(--space-20);
}

.poker-hero {
  padding-block: var(--space-32) var(--space-24);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.24), transparent 55%), radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.12), transparent 60%);
}

.poker-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
}

@media (max-width: 768px) {
  .poker-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.poker-hero-lead {
  font-size: var(--font-size-lg);
  color: var(--gray-100);
  max-width: 40rem;
}

.poker-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-block: var(--space-6) var(--space-8);
}

.poker-badge {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-strong);
  background: rgba(8, 9, 13, 0.7);
}

.poker-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.poker-hero-note {
  font-size: var(--font-size-sm);
  max-width: 32rem;
}

.poker-hero-media {
  justify-self: center;
}

.poker-hero-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}

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

.poker-hero-figure figcaption {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-intro,
.poker-tables,
.poker-experience,
.poker-ambience,
.poker-levels,
.poker-social,
.poker-rules,
.poker-schedule,
.poker-faq,
.poker-cta {
  padding-block: var(--space-24);
}

.poker-section-header {
  max-width: 48rem;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.poker-section-header p {
  margin-bottom: 0;
}

.poker-intro-grid {
  align-items: flex-start;
  gap: var(--space-16);
}

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

.poker-pillar-card h3 {
  margin-bottom: var(--space-4);
}

.poker-intro-highlight {
  align-self: stretch;
}

.poker-list {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-left: 0;
}

.poker-list li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
}

.poker-tables-grid,
.poker-ambience-grid,
.poker-levels-grid,
.poker-rules-grid,
.poker-schedule-grid {
  gap: var(--space-16);
  align-items: center;
}

.poker-feature-grid {
  gap: var(--space-10);
}

.poker-feature-grid .card h3 {
  margin-bottom: var(--space-4);
}

.poker-ambience-ctas,
.poker-schedule-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.poker-levels-card {
  align-self: stretch;
}

.poker-steps {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-6);
  counter-reset: poker-step;
}

.poker-steps li {
  position: relative;
  padding-left: var(--space-10);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-steps li::before {
  counter-increment: poker-step;
  content: counter(poker-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: var(--color-primary-strong);
}

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

.poker-faq-grid .card h3 {
  margin-bottom: var(--space-4);
}

.poker-faq-cta {
  margin-top: var(--space-16);
  text-align: center;
}

.poker-faq-cta p {
  margin-bottom: var(--space-4);
}

.poker-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.poker-cta-inner p {
  margin-bottom: 0;
}

.poker-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

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