.hero-poker {
  position: relative;
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  background-color: var(--gray-900);
  color: #ffffff;
}

.hero-poker__media {
  position: relative;
  overflow: hidden;
}

.hero-poker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poker__content-wrapper {
  display: flex;
  align-items: center;
}

.hero-poker__content {
  max-width: 32rem;
  margin-left: auto;
}

.hero-poker__lead {
  color: rgba(249, 250, 251, 0.9);
  margin-bottom: var(--space-4);
}

.hero-poker__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-poker__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-tag {
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(249, 250, 251, 0.14);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-poker__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.section--surface {
  background-color: var(--color-surface-alt);
}

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

.poker-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-wood), var(--gray-700));
}

.poker-list--simple li::before {
  background: var(--gray-400);
}

.poker-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.poker-list--inline li {
  margin-bottom: 0;
  padding: 0.3rem 0.9rem 0.3rem 1.4rem;
  border-radius: var(--radius-pill);
  background-color: var(--gray-100);
}

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

.poker-stats {
  align-items: stretch;
}

.poker-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

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

.poker-faq__item p {
  margin-bottom: 0;
}

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

.poker-cta__content {
  flex: 1 1 16rem;
}

.poker-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

@media (max-width: 960px) {
  .hero-poker {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poker__media {
    max-height: 320px;
  }

  .hero-poker__content {
    max-width: 100%;
    margin: 0;
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 640px) {
  .hero-poker__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .poker-cta__actions {
    width: 100%;
  }

  .poker-cta__actions .button,
  .poker-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
