.shiny-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.375rem; /* 22px - same as original h2 */
  color: #b5b5b5a4; /* Adjust this color to change intensity/style */
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  animation: shine 5s linear infinite;
  margin-bottom: 0.3rem; /* same as original h2 */
}

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

.shiny-text.disabled {
  animation: none;
}

/* Special styling for playbook phases */
.playbook-phases .shiny-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.5rem; /* Same as playbook-phases span */
  color: var(--text-primary);
  margin-bottom: 0; /* Remove default margin for playbook phases */
}
