.hero-poker {
  background-image: url('/assets/images/poker-night-atmosphere.webp');
  background-size: cover;
  background-position: center;
}
.hero-poker-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}
.hero-poker-content {
  max-width: 640px;
}
.hero-poker-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.hero-poker-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.hero-poker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.hero-poker-meta-item::before {
  content: '\2022';
  margin-right: 0.35rem;
  color: var(--color-primary);
}
.hero-poker-media {
  justify-self: center;
}
.hero-poker-figure {
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.section-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
}
.section-intro {
  color: var(--color-text-muted);
}
.poker-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.poker-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.poker-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, #fed7aa, #f97316);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.7);
}
.poker-equipment {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.1), transparent 55%), var(--color-bg);
}
.poker-equipment-grid {
  align-items: center;
  gap: var(--space-8);
}
.poker-equipment-figure,
.poker-community-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.poker-tournaments-grid {
  gap: var(--space-6);
}
.poker-tier-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.poker-tier-cta {
  margin-top: var(--space-4);
  width: 100%;
}
.poker-sports-grid {
  align-items: center;
  gap: var(--space-8);
}
.poker-sports-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.poker-community-grid {
  align-items: center;
  gap: var(--space-8);
}
.poker-rules-grid,
.poker-staff-grid {
  gap: var(--space-6);
}
.poker-faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.poker-faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-bg-elevated);
  padding: var(--space-3) var(--space-4);
  margin-bottom: var(--space-3);
}
.poker-faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-gray-50);
}
.poker-faq-question::marker {
  display: none;
}
.poker-faq-answer {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.poker-final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.poker-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
@media (max-width: 960px) {
  .hero-poker-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-poker-media {
    order: -1;
  }
  .hero-poker-figure {
    max-width: 360px;
  }
}
@media (max-width: 768px) {
  .hero-poker {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
  .hero-poker-cta,
  .poker-sports-cta-group,
  .poker-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .poker-tier-cta {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .poker-faq-item {
    scroll-margin-top: var(--space-6);
  }
}
