.hero--themed {
  position: relative;
}

.hero-background--themed::before {
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 235, 255, 0.9) 0, transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255, 228, 240, 0.9) 0, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 244, 215, 0.95) 0, transparent 60%);
}

.hero--themed .hero-inner {
  padding: 1.5rem 1rem 0;
}

.hero--themed .hero-title {
  background: linear-gradient(120deg, #4b7fff, #4bc38a, #ff9ac4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--themed .hero-subtitle {
  max-width: 38rem;
}

.themed-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: var(--space-8);
  align-items: center;
}

.themed-layout-flip {
  grid-template-columns: minmax(0, 2.7fr) minmax(0, 3fr);
}

@media (max-width: 900px) {
  .themed-layout-grid,
  .themed-layout-flip {
    grid-template-columns: minmax(0, 1fr);
  }
}

.themed-intro {
  padding: 2rem;
}

.themed-image {
  position: relative;
}

.themed-image::before {
  content: "";
  position: absolute;
  inset: 6% 8%;
  border-radius: 32px;
  background: radial-gradient(circle at 0% 0%, rgba(75, 127, 255, 0.28), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(255, 204, 75, 0.25), transparent 55%);
  z-index: -1;
}

.themed-image img {
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.themed-section-alt .card {
  height: 100%;
}

.themed-bullets {
  margin-top: 0.5rem;
}

.themed-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-bullets li::before {
  content: "✶";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-primary-strong);
}

.themed-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.themed-taglist--chips .badge-chip {
  font-size: var(--font-size-xs);
}

.themed-highlight-card {
  padding: 1.75rem 1.5rem;
}

.themed-section-characters {
  align-items: center;
}

.themed-chip-card {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, rgba(76, 195, 138, 0.1), rgba(255, 154, 196, 0.15));
}

.themed-section-play {
  align-items: flex-start;
}

.themed-ideas-card {
  padding: 1.75rem 1.5rem;
}

.themed-bullets--icons li {
  padding-left: 2rem;
}

.themed-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fffef8 0, #ffcc4b 45%, #ff9ac4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #432302;
  box-shadow: var(--shadow-sm);
}

.themed-rules {
  max-width: 980px;
  margin-inline: auto;
}

.themed-rules-grid {
  margin-top: 1.25rem;
}

.themed-rule-item {
  padding: 1rem 1rem 0.75rem;
  border-radius: 18px;
  background: rgba(247, 244, 255, 0.9);
}

.themed-rule-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.3rem;
}

.themed-rule-item p {
  font-size: var(--font-size-sm);
}

.themed-cta-final {
  max-width: 880px;
  margin-inline: auto;
}

.themed-cta-card {
  text-align: center;
  padding: 2.25rem 1.75rem 2rem;
}

.themed-cta-row {
  justify-content: center;
}

@media (max-width: 640px) {
  .themed-cta-card {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}
