#body-bg {
	background: #00000020 url("../assets/wallpapers/city.png") no-repeat center;
	background-blend-mode: darken;
	position: fixed;
	z-index: -999;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
}

/* MASCOT SETTINGS */
#mascot {
	position: absolute;
	right: 5vw;
	top: -223px;
	visibility: visible;
}

@media screen and (max-width: 820px) {
	#mascot {
		visibility: hidden;
	}
}

#category-nav {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 15px;
}

.category-button {
	position: relative;

	max-width: 200px;
	margin-bottom: 10px;
	padding: 0px 17px 0px 17px;
	
	border: solid 2px var(--secondary-color-lighter);
	border-radius: 25px 25px 25px 25px;
	background-color: var(--secondary-color-mid);

	font-family: 'Mouse Memoirs', sans-serif;
	font-size: 3rem;
	color: white;

	cursor: pointer;

	text-align: center;
}

.category-button:hover {
	border: solid 2px var(--primary-color);
	background-color: var(--secondary-color);
}

#review-container {
	border: solid 2px var(--secondary-color-lighter);
	border-radius: 25px 25px 25px 25px;
	background-color: var(--secondary-color-mid);
	width: 100%;

	padding: 2vw;
}

.review-list {
	display: none;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	position: relative;
}

.review-slot {
	display: flex;
	flex-direction: column;
	color: white;

	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 0.93;

	width: 240px;
	padding: 15px;

	border-radius: 10px;
	border: var(--secondary-color-light) double 4px;

	position: relative;
}

.review-slot a {
	text-decoration: none;
	color: inherit;
}

.sobad-star {
	position: absolute;
	right: -15px;
	top: -15px;
	width: 60px;
}

.Platinum {
	background-color: #B9F2FF;
	color: black;
}

.Gold {
	background-color: #FFD900;
	color: black;
}

.Silver {
	background-color: #C0C0C0;
	color: black;
}

.Bronze {
	background-color: #CE8946;
	color: black;
}

.Coal {
	background-color: black;
	color: white;
}

#review-box {
	border: solid 4px var(--secondary-color);
	border-radius: 25px 25px 25px 25px;
	background-color: var(--secondary-color-lighter);
	width: 100%;
	color: black;

	display: block;
	height: auto;
	overflow-y: scroll;

	padding: 2vw;
	font-size: 1.1rem;
}

#review-info {
	display: flex;
	flex-direction: column;
	width: 325px;
	align-items: center;

	border-radius: 10px;
	background-color: var(--secondary-color);
	border: double 4px var(--primary-color);
	color: white;
	overflow: hidden;

	float: right;
	margin-left: 15px;
}

@media screen and (max-width: 640px) {
	#review-info {
		width: 100%;
		margin-bottom: 20px;
	}
}

#review-info > div {
	border-top: 4px var(--secondary-color-lighter) double;
	width: 100%;
	text-align: center;
	padding: 5px;
}

#final-rank {
	display: flex;
	justify-content: space-evenly;
	align-items: center;

	margin-top: 15px;

	font-size: 3rem;
	font-weight: 700;
	font-family: "Inter", Arial, serif;

	border: double 4px var(--primary-color);
	border-radius: 10px;

	background-color: var(--secondary-color);
	color: white;

	padding: 3px;
	position: relative;
}

@media screen and (max-width: 350px) {
	#final-rank {
		font-size: 2rem;
	}
}