.glowing-text {
    color: #fff;
    text-shadow:
      0 0 5px #f4e1a1,
      0 0 10px #f4e1a1,
      0 0 20px #f4e1a1,
      0 0 30px #f4e1a1,
      0 0 40px #ffd700,
      0 0 50px #ffd700;
    animation: glowPulse 2.5s infinite ease-in-out;
  }

  @keyframes glowPulse {
    0%, 100% {
      text-shadow:
        0 0 5px #f4e1a1,
        0 0 10px #f4e1a1,
        0 0 20px #f4e1a1,
        0 0 30px #f4e1a1,
        0 0 40px #ffd700,
        0 0 50px #ffd700;
    }
    50% {
      text-shadow:
        0 0 10px #ffefba,
        0 0 20px #ffefba,
        0 0 30px #ffefba,
        0 0 40px #ffe066,
        0 0 50px #ffe066,
        0 0 60px #ffe066;
    }
  }