#svga-container {
    position: absolute;
  }
  .love-meter-text {
    position: absolute;
    right: 30px;
    top: 30px;
    text-align: left;
    font-size: 24px;
    /* width: 300px; */
    display: none;
    border: 2px solid #F8B1FF;
    background-color: rgb(157 95 145 / 50%);
    border-radius: 20px;
    padding: 20px;
  }
  .love-meter-text .love-meter-goal {
    /* color: red; */
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .love-meter-text .warm-up-line {
    color: #fff;
    font-size: 20px;
    width: 350px;
  }
  .love-meter-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds space between the bar and text */
  }
  .love-meter-percentage {
    color: #fff;
    font-weight: bold;
    min-width: 45px;
    text-align: right;
  }
  .love-meter-progress-container {
    height: 12px;
    width: 100%;
    background-color: #555;
    border-radius: 6px;
    margin: 10px 0;
    overflow: hidden;
    border: 1px solid #777;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
  }

  .love-meter-progress {
    height: 100%;
    width: 0%;
    /* background: linear-gradient(90deg, #ff80ab, #ffc0cb); */
    background: green;
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
  }
  .love-rain {
    position: absolute;
    bottom: 22%;
    right: 7%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 3001;
  }
  .love-heart {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    will-change: transform, opacity;
    pointer-events: none;
    animation: love-fall 2.5s linear forwards;
    transform-origin: 50% 50%;
  }
  @keyframes love-fall {
    0% {
      transform: translateY(0) scale(0.3) rotate(0deg);
      opacity: 0.7;
    }
    10% {
      opacity: 1;
      transform: translateY(30px) scale(1) rotate(60deg);
    }
    50% {
      opacity: 1;
      transform: translateY(160px) scale(1) rotate(180deg);
    }
    80% {
      opacity: 0.7;
      transform: translateY(270px) scale(0.7) rotate(300deg);
    }
    100% {
      opacity: 0;
      transform: translateY(290px) scale(0.4) rotate(360deg);
    }
  }

  .lovemeter-gradient-text {
    /* background: linear-gradient(90deg,#ff79c6 0%, #ffb3ff 50%, #a77bff 100%); */
    background: linear-gradient(270deg, #E05FC5 0%, #F8B1FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .progress-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .progress-line .bar {
    position: relative;
    flex: 1;
    height: 22px;
    border-radius: 999px;
    background: #6C2666;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, .35);
    overflow: hidden;
    border: 1px solid #F8B1FF;
  }
  .progress-line .bar::after {
    content: "";
    position: absolute;
    inset: 1px 1px auto 1px;
    /* height: 40%; */
    border-radius: 999px;
    background: #6C2666;
    pointer-events: none;
  }
  .progress-line .percent {
    min-width: 44px;
    text-align: right;
    font-weight: 800;
    font-size: 18px;
  }
  .progress-line .fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg,#E96BC5 0%, #DD49AA 100%);
    box-shadow: 0 0 18px rgba(233, 115, 255, .5);
    transition: width .8s cubic-bezier(.2,.8,.2,1);
  }
