body {
  background-color: var(--color-bg);
}

.themed-hero {
  text-align: left;
}

.themed-hero__content {
  max-width: 44rem;
}

.themed-hero__subtitle {
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.themed-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

.themed-intro__text p:last-of-type {
  margin-bottom: 0;
}

.themed-intro__visual {
  align-self: stretch;
}

.themed-intro__list li + li,
.themed-chips__list li + li,
.themed-hosts__highlights li + li,
.themed-booking__steps li + li,
.themed-booking__faq ul li + li {
  margin-top: var(--space-2);
}

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

.themed-games__grid {
  align-items: center;
}

.themed-games__image-wrap {
  padding: var(--space-2);
}

.themed-games__image {
  border-radius: var(--radius-lg);
}

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

.themed-atmosphere__grid {
  align-items: stretch;
}

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

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

.themed-green-night__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.themed-green-night__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-green-night__content .tag {
  margin-bottom: var(--space-3);
}

.themed-chips__grid {
  align-items: stretch;
  gap: var(--space-8);
}

.themed-chips__card {
  align-self: stretch;
}

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

.themed-hosts__grid {
  align-items: stretch;
  gap: var(--space-8);
}

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

.themed-gallery__header {
  max-width: 40rem;
  margin-bottom: var(--space-6);
}

.themed-gallery__image-wrap {
  padding: var(--space-2);
}

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

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

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

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

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

.themed-crosslinks__grid {
  align-items: stretch;
}

.themed-crosslinks__item {
  display: block;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.themed-crosslinks__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-green);
}

.themed-crosslinks__item h3 {
  margin-bottom: var(--space-2);
}

.themed-crosslinks__item p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .themed-hero__content {
    max-width: 100%;
  }

  .themed-hero__subtitle {
    font-size: var(--font-size-base);
  }

  .themed-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .themed-games__links {
    flex-direction: column;
  }

  .themed-gallery__cta-row {
    flex-direction: column;
  }
}
