/* Score Circle */
  .score-circle {
            position: relative;
            width: 150px;
            height: 150px;
        }
        .score-circle svg {
            transform: rotate(-90deg);
        }
        .score-circle .circle-bg {
            fill: none;
            stroke: #e6e6e6;
            stroke-width: 10;
        }
        .score-circle .circle-progress {
            fill: none;
            stroke: var(--color-primary-orange);
            stroke-width: 10;
            stroke-linecap: round;
            transition: stroke-dashoffset 1s ease-out;
        }
        .score-circle .score-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }