/* Clean Title Effect for LuvEarn */

.sophisticated-title {
  color: #ff007f; /* Solid pink color */
  text-shadow: 
    0 0 10px rgba(255, 0, 127, 0.7),
    0 0 20px rgba(255, 0, 127, 0.5);
  font-weight: bold;
  letter-spacing: 2px;
}

/* Simple glow animation */
@keyframes simpleGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.7), 0 0 20px rgba(255, 0, 127, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.9), 0 0 30px rgba(255, 0, 127, 0.7);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.7), 0 0 20px rgba(255, 0, 127, 0.5);
  }
}

.sophisticated-title {
  animation: simpleGlow 3s ease-in-out infinite;
}

/* Remove animate.css fadeInDown effect */
h1.hero-title {
  animation: simpleGlow 3s ease-in-out infinite !important;
}

/* Remove any background effects that might be causing rendering issues */
.hero-title {
  background: none;
  -webkit-text-fill-color: initial;
}
