html {
  height: 100%;
  width: 100%;
}

  /* Other styles */
  .star {
    color: #000;
    transition: color 0.2s;
  }

  .star.gold {
    color: gold;
  }

  .textPath {
    fill: black;
  }

  .star {
    fill: black;
  }

  .spaced-text {
    letter-spacing: 2px;
  }

  .card {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
  }

  .star-rating {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .star {
    font-size: 24px;
    color: #ddd;
    transition: color 0.2s;
  }

  .star.gold {
    color: gold;
  }

  .rating-count {
    font-size: 18px;
    font-weight: bold;
  }

  #loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
  }

  .loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
    /* Other styles */
    .star {
      color: #000;
      transition: color 0.2s;
    }

    .star.gold {
      color: gold;
    }