.poker-hero {
  position: relative;
}

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

.poker-hero-text {
  max-width: 40rem;
}

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

.poker-hero-disclaimer {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  max-width: 34rem;
}

.poker-hero-media {
  justify-self: flex-end;
}

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

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

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

.poker-intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.poker-pill {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.poker-card-legal {
  height: 100%;
}

.poker-card-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.poker-legal-note {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.poker-card-link {
  margin-top: var(--space-3);
}

.poker-ambience-grid {
  align-items: center;
  gap: var(--space-12);
}

.poker-ambience-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.poker-ambience-text {
  max-width: 40rem;
  margin-left: auto;
}

.poker-ambience-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

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

.poker-ambience-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.poker-section-header {
  max-width: 44rem;
  margin: 0 auto var(--space-8);
}

.poker-steps-grid {
  gap: var(--space-6);
}

.poker-levels-grid {
  gap: var(--space-12);
  align-items: center;
}

.poker-levels-text {
  max-width: 40rem;
}

.poker-bullets {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
}

.poker-bullets li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--font-size-md);
  margin-bottom: var(--space-2);
}

.poker-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--color-accent), var(--color-primary));
}

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

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

.poker-reservations-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.poker-reservations-grid {
  gap: var(--space-6);
}

.poker-legal-banner {
  margin-top: var(--space-10);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 206, 195, 0.9);
  background: linear-gradient(135deg, #faf7f2 0%, #f2ece6 40%, #fff 100%);
  font-size: var(--font-size-sm);
  color: var(--gray-700);
}

.poker-cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-7) var(--space-8);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #ffffff 0%, #f5efe4 40%, #e7ddcf 100%);
  box-shadow: var(--shadow-subtle-elevated);
}

.poker-cta-final-text {
  max-width: 40rem;
}

.poker-cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

  .poker-hero-media {
    order: -1;
    justify-self: stretch;
  }

  .poker-hero-text {
    max-width: 100%;
  }

  .poker-ambience-text {
    margin-left: 0;
  }

  .poker-cta-final-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-6);
  }

  .poker-cta-final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

  .poker-cta-final-actions {
    flex-direction: column;
    width: 100%;
  }

  .poker-cta-final-inner {
    padding: var(--space-5) var(--space-4);
  }
}
