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

.poker-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-hero__content {
  max-width: 640px;
}

.poker-hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

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

.poker-hero__figure figcaption {
  padding: var(--space-3);
  font-size: var(--font-size-sm);
  background: linear-gradient(135deg, rgba(7, 8, 21, 0.96), rgba(9, 10, 30, 0.96));
}

.poker-hero__chips {
  flex-wrap: wrap;
}

.poker-hero__actions {
  flex-wrap: wrap;
}

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

.poker-list {
  list-style: none;
}

.poker-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.poker-list li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c974, #b88b48);
}

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

.poker-list--inline li {
  padding-left: 0;
  margin-bottom: 0;
}

.poker-list--inline li::before {
  display: none;
}

.poker-private__figure,
.poker-atmosphere__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.poker-private__figure img,
.poker-atmosphere__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-private__figure figcaption,
.poker-atmosphere__figure figcaption {
  padding: var(--space-3);
  font-size: var(--font-size-sm);
  background: linear-gradient(135deg, rgba(7, 8, 21, 0.96), rgba(9, 10, 30, 0.96));
}

.poker-private__grid,
.poker-atmosphere__grid {
  align-items: center;
  gap: var(--space-8);
}

.poker-experience__grid,
.poker-testimonials__grid {
  gap: var(--space-6);
}

.poker-testimonial__text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
}

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

.poker-cta__actions {
  flex-wrap: wrap;
}

.poker-hero__hint {
  font-size: var(--font-size-sm);
}

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

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

  .poker-hero__content {
    order: 1;
  }

  .poker-hero__media {
    order: 0;
  }
}

@media (max-width: 480px) {
  .poker-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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