.poker-hero {
  padding-top: var(--space-48);
}

.poker-hero__grid {
  align-items: center;
  gap: var(--space-32);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.1), transparent 60%),
              var(--color-surface);
  padding: var(--space-32);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.poker-hero__content {
  position: relative;
  z-index: 1;
}

.poker-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

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

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

.poker-experience__highlights {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-24);
}

.poker-experience__info {
  align-self: center;
}

.poker-experience__list,
.poker-cash__list,
.poker-private__list,
.poker-theme__list,
.poker-rules__list,
.poker-faq__list,
.poker-food__list,
.poker-food__pairings {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.poker-experience__list li,
.poker-cash__list li,
.poker-private__list li,
.poker-theme__list li,
.poker-rules__list li,
.poker-food__list li,
.poker-food__pairings li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-experience__list li::before,
.poker-cash__list li::before,
.poker-private__list li::before,
.poker-theme__list li::before,
.poker-rules__list li::before,
.poker-food__list li::before,
.poker-food__pairings li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.poker-experience__actions {
  margin-top: var(--space-16);
}

.poker-schedule__grid {
  gap: var(--space-24);
}

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

.poker-private__grid {
  align-items: stretch;
  gap: var(--space-32);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 60%),
              var(--color-surface-soft);
  padding: var(--space-32);
  border-radius: var(--radius-xl);
}

.poker-private__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.poker-private__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.poker-private__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.poker-atmosphere__grid {
  gap: var(--space-24);
}

.poker-atmosphere__image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.poker-atmosphere__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-24);
  background: linear-gradient(to top, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 0.1));
}

.poker-atmosphere__overlay h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-4);
}

.poker-atmosphere__overlay p {
  max-width: 420px;
}

.poker-atmosphere__overlay .btn {
  margin-top: var(--space-16);
}

.poker-rules__subtitle {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
}

.poker-faq__card {
  height: 100%;
}

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

.poker-faq__item dt {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

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

.poker-faq__link {
  margin-top: var(--space-16);
}

.poker-food__grid {
  gap: var(--space-24);
}

.poker-food__side {
  align-self: stretch;
}

.poker-cta {
  padding-top: var(--space-32);
  padding-bottom: var(--space-48);
}

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

.poker-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

@media (max-width: 992px) {
  .poker-hero__grid,
  .poker-private__grid {
    padding: var(--space-24);
  }
}

@media (max-width: 768px) {
  .poker-hero__grid,
  .poker-private__grid {
    padding: var(--space-16);
  }

  .poker-hero__ctas,
  .poker-private__actions,
  .poker-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

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