.stats-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
}

.stats-widget__bar-wrapper {
    width: 100%;
    align-self: stretch;
}

.stats-widget__bar-track {
    width: 100%;
    height: var(--stats-bar-height, 22px);
    background-color: var(--stats-track-color, #FF7A0033);
    border-radius: var(--stats-bar-radius, 0px);
    overflow: hidden;
}

.stats-widget__bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--stats-progress-color, #ff7a00);
    border-radius: var(--stats-bar-radius, 0px);
    transition: width 2.5s ease;
}

.stats-widget__value {
    color: var(--stats-progress-color, #ff7a00);
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-top: 16px;
}

.stats-widget__value span {
    font-size: 0.55em;
}

.stats-widget__description {
    margin-top: 24px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    max-width: 320px;
}