.hero--themed {
  min-height: 80vh;
}

.hero__content-shell--center {
  text-align: left;
}

.themed-intro__grid {
  align-items: center;
  gap: var(--space-10);
}

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

.themed-intro__pill {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: radial-gradient(circle at 0 0, rgba(240, 180, 75, 0.4), transparent 55%),
    rgba(7, 12, 32, 0.96);
  border: 1px solid rgba(240, 180, 75, 0.55);
  color: var(--color-text-soft);
}

.themed-intro__card-wrapper {
  align-self: stretch;
}

.themed-intro__card {
  height: 100%;
}

.themed-list {
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.themed-list span {
  font-weight: 600;
  color: var(--color-text);
}

.themed-atmosphere__grid {
  align-items: center;
  gap: var(--space-10);
}

.themed-atmosphere__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.themed-atmosphere__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.85), transparent 40%);
}

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

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

.themed-music-gastro__grid {
  gap: var(--space-10);
}

.themed-bullets {
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.themed-bullets li {
  position: relative;
  padding-left: 1.25rem;
}

.themed-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-accent));
  box-shadow: 0 0 12px rgba(240, 180, 75, 0.65);
}

.themed-poker {
  background: radial-gradient(circle at top, rgba(59, 108, 255, 0.16), transparent 55%),
    var(--color-bg-soft);
}

.themed-poker__grid {
  gap: var(--space-10);
  align-items: center;
}

.themed-poker__disclaimer {
  font-size: var(--font-size-sm);
}

.themed-poker__cta {
  display: flex;
  justify-content: flex-start;
}

.themed-private__grid {
  gap: var(--space-10);
  align-items: center;
}

.themed-private__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.themed-cta-final {
  padding-top: var(--space-10);
  padding-bottom: var(--space-16);
}

.themed-cta-final__panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(59, 108, 255, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(5, 9, 24, 0.96), rgba(8, 12, 32, 0.96));
  border: 1px solid rgba(240, 180, 75, 0.55);
  box-shadow: var(--shadow-md), var(--shadow-glow-amber);
}

.themed-cta-final__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: radial-gradient(circle at 0 0, rgba(240, 180, 75, 0.55), transparent 60%),
    rgba(9, 13, 34, 0.96);
  color: var(--color-text-soft);
}

.themed-cta-final__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .themed-intro__grid,
  .themed-atmosphere__grid,
  .themed-music-gastro__grid,
  .themed-poker__grid,
  .themed-private__grid {
    gap: var(--space-6);
  }

  .themed-atmosphere__image-wrap::after {
    background: linear-gradient(to top, rgba(5, 8, 22, 0.9), transparent 30%);
  }
}

@media (max-width: 640px) {
  .themed-cta-final__panel {
    padding: var(--space-6) var(--space-4);
  }
}
