.stat_row {
    margin-bottom: 12px;
}

.stat_label {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.stat_track {
    overflow: hidden;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.25);
}

.stat_bar {
    width: var(--stat-width, 0%);
    height: 18px;
    border-radius: 12px;
    background-color: var(--stat-color, var(--color-light));
    transition: width 0.4s ease-out;
}

@media (max-width: 480px) {
    .stat_row {
        margin-bottom: 8px;
    }

    .stat_bar {
        height: 14px;
    }
}
