body {
	color: #fff;
}

#highScores {
	width: min(100%, 72rem);
	gap: 2rem;
	padding: 3rem 0;
}

#highScoresList {
	list-style: none;
	width: 100%;
	padding: 0;
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

ul#highScoresList li {
	font-size: 2rem;
}

.high-score-item,
.high-score-empty {
	width: 100%;
	padding: 1.4rem 1.8rem;
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(4px);
}

.high-score-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	border-left: 0.5rem solid rgb(255, 214, 10);
}

.high-score-empty {
	text-align: center;
	color: rgb(233, 227, 227);
}

.hs-rank,
.hs-score,
.hs-date,
.high-score-item strong {
	font-size: 2rem;
}

.hs-rank {
	color: rgb(255, 214, 10);
	min-width: 3.2rem;
}

.hs-score {
	color: rgb(167, 225, 255);
}

.hs-date {
	color: rgba(255, 255, 255, 0.75);
}

.highlight {
	background: rgba(255, 214, 10, 0.18);
	border-left-color: rgb(114, 255, 114);
}

@media screen and (max-width: 768px) {
	#highScores {
		padding: 2rem 0;
	}

	#highScoresList {
		gap: 0.8rem;
	}

	.high-score-item,
	.high-score-empty {
		padding: 1.2rem 1.4rem;
	}

	.hs-rank,
	.hs-score,
	.hs-date,
	.high-score-item strong {
		font-size: 1.7rem;
	}
}
   