/* Styles for the “Select Your Experience” header section */
.character-selection-header {
  text-align: center;
  margin-bottom: 3rem;
}

.character-selection-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  animation: shimmerText 6s ease-in-out infinite;
  display: inline-block;
  background-size: 200% auto;
}

@keyframes shimmerText {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.character-selection-subtitle {
  font-size: 1.125rem;
  color: var(--color-text);
  opacity: 0.85;
  max-width: 60ch;
  margin: 0.75rem auto 0;
}
