/**
 * Stack Tower — doar bara de progres a nivelului.
 *
 * Restul carcasei vine din core.css.
 */

.st-progress {
	height: 6px;
	border-radius: 999px;
	background: var(--gh-panel);
	overflow: hidden;
}

.st-progress-fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #48d39a, #3ac6e8);
	transition: width .22s cubic-bezier(.2, .9, .3, 1);
}
