:root {
	--juice-level: 0%;
}

.game > svg {
	display: block;
	width: 100%;
	height: auto;
	min-height: 6rem;
}
.game-category {
	color: #81afb5;
	text-align: center;
}
.game-title-container{
	display: flex;
	justify-content: center; align-items: center;
	min-height: 3.2rem; max-height: 3.2rem;
}
.game-title {
	font-size: 1.3rem;
	line-height: 115%;
	font-weight: 500;
	color: #e3f5f1;
	text-align: center;
	text-wrap: balance;
}
.game-progress {
	width: 100%; 
	height: 0.6rem;
	min-height: 0.6rem;
    margin: 0 auto; /* center horizontally */
	margin-bottom: 0.5rem;
	border-radius: 9000px;
	background-color: #285454;
}
#progress {
	width: 0%; /* (!) changed in js */
	height: 100%;
	border-radius: 9000px;
	background-color: #b7d974;
}
.game-lines {
    margin-top: -0.5rem;
	font-size: 3rem;
	font-weight: 700;
	color: #e3f5f1;
	text-align: center;
}

.game-juicer {
	display: block; width: fit-content; 
    margin: 1rem auto 0 auto; /* center horizontally + add space above */
	padding: 0.5rem 1.5rem;
	border: 3px solid;
	border-color: #1f394d;
	border-radius: 9000px; /* pill-shaped ends */
	font-family: inherit;
	font-size: 1.3rem;
	font-weight: 600;
	white-space: nowrap;
	background: linear-gradient(to right, #39755c var(--juice-level), #1f394d 0); /* (!) changed in js */
	color: #070c1d;
}
.game-juicer[data-active="true"] {
	border-color: #b7d974;
	color: #e3f5f1;
	animation: pulse 2s infinite alternate;
}
.game-juicer[data-active="true"]:hover {
	border-color: #e3f5f1;
	background: #285454 !important;
	text-shadow: 2px 2px 0 #1f394d;
	color: #e3f5f1;
	animation: none;
	cursor: pointer;
}

.game-start {
	display: block; width: fit-content; 
    margin: 1rem auto 0 auto; /* center horizontally + add space above */
	padding: 0.5rem 1.5rem;
	border: 3px solid;
	border-color: #b7d974;
	border-radius: 9000px; /* pill-shaped ends */
	font-family: inherit;
	font-size: 1.3rem;
	font-weight: 600;
	white-space: nowrap;
	background: #1f394d;
	color: #e3f5f1;
	animation: pulse 2s infinite alternate;
}
.game-start:hover {
    border-color: #e3f5f1;
	background: #285454;
	text-shadow: 2px 2px 0 #1f394d;
	animation: none;
	cursor: pointer;
}

@keyframes pulse {
    0% { border-color: #1f394d; }
    100% { border-color: #b7d974; }
}
