      .typing {
          position: relative;
          font-size: 14px;
          line-height: 1.5;
          color: rgba(255, 255, 255, 0.9);
          min-height: 20px;
      }

      /* cursor */
      .typing::after {
          content: "|";
          margin-left: 2px;
          animation: blink 0.8s infinite;
          color: oklch(0.85 0.18 200);
      }

      @keyframes blink {
          50% {
              opacity: 0;
          }
      }