.blinking-new {
      font-size: 2.5rem;
      font-weight: bold;
      color: #FF3366;
      background: linear-gradient(90deg, #FF3366 40%, #FFB700 60%);
      padding: 0.3em 0.7em;
      border-radius: 1em;
      box-shadow: 0 4px 16px rgba(255,51,102,0.15);
      letter-spacing: 2px;
      animation: blink 1s steps(2, start) infinite, glow 2s infinite alternate;
      text-shadow: 0 0 10px #FFD1E6, 0 0 20px #FFB700;
      display: inline-block;
    }
    .gradient-text {
        /* font-size: 2.5rem; */
        font-weight: bold;
        letter-spacing: 2px;
        background: linear-gradient(90deg, #FF3CAC 0%, #784BA0 55%, #165e00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        text-shadow: 0 4px 16px rgba(44,190,255,0.15);
        border-radius: 0.6em;
        padding: 0.2em 0.6em;
        display: inline-block;
        animation: blink 1s steps(2, start) infinite, glow 2s infinite alternate;
    }

    @keyframes blink {
      0%, 49% {
        opacity: 1;
      }
      50%, 100% {
        opacity: 0;
      }
    }

    @keyframes glow {
      from {
        /* text-shadow: 0 0 10px #FFD1E6, 0 0 20px #FFB700; */
      }
      to {
        /* text-shadow: 0 0 30px #FF3366, 0 0 40px #FFB700; */
      }
    }