.themed-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.themed-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.themed-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.6), transparent 55%),
              linear-gradient(to bottom, rgba(5, 5, 9, 0.9), rgba(5, 5, 9, 1));
  z-index: -1;
}

.themed-hero__inner {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.themed-hero__content {
  max-width: 40rem;
  padding: var(--space-8);
}

.themed-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.themed-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themed-hero__meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-intro {
  gap: var(--space-8);
}

.themed-intro__pills {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.themed-intro__card {
  height: 100%;
}

.themed-intro__cta {
  margin-top: var(--space-4);
}

.themed-poker-vegas {
  background: radial-gradient(circle at 0 0, rgba(138, 91, 255, 0.18), transparent 60%),
              radial-gradient(circle at 100% 100%, rgba(246, 196, 83, 0.16), transparent 55%);
}

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

.themed-poker-vegas__image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated);
}

.themed-poker-vegas__list {
  margin-top: var(--space-4);
}

.themed-poker-vegas__links {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.themed-casino-events__grid {
  align-items: stretch;
}

.themed-film-section__grid {
  gap: var(--space-8);
  align-items: center;
}

.themed-film-section__figure img {
  border-radius: var(--radius-xl);
}

.themed-film-section__figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-film-section__list {
  margin-top: var(--space-4);
}

.themed-film-section__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-cinematic__grid {
  gap: var(--space-8);
  align-items: center;
}

.themed-cinematic__figure img {
  border-radius: var(--radius-xl);
}

.themed-cinematic__figure figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-gallery__content {
  gap: var(--space-8);
  align-items: center;
}

.themed-gallery__image img {
  border-radius: var(--radius-xl);
}

.themed-gallery__cta {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-integration__grid {
  gap: var(--space-8);
  align-items: flex-start;
}

.themed-how-to-book {
  background-color: var(--color-bg-soft);
}

.themed-how-to-book__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--space-8);
}

.themed-how-to-book__steps {
  margin-top: var(--space-4);
  padding-left: 1.5rem;
}

.themed-how-to-book__steps li + li {
  margin-top: 0.4rem;
}

.themed-how-to-book__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-how-to-book__aside h3 {
  margin-bottom: var(--space-3);
}

.themed-how-to-book__aside ul {
  list-style: none;
  padding-left: 0;
}

.themed-how-to-book__aside li + li {
  margin-top: 0.4rem;
}

.themed-how-to-book__aside a {
  font-size: var(--font-size-sm);
}

@media (max-width: 900px) {
  .themed-hero {
    min-height: 0;
  }

  .themed-hero__content {
    padding: var(--space-6);
  }

  .themed-how-to-book__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .themed-hero__cta,
  .themed-hero__meta,
  .themed-film-section__cta,
  .themed-poker-vegas__links,
  .themed-gallery__cta,
  .themed-how-to-book__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
