.player-card {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	background-color: rgb(40, 46, 62);
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: bold;
	padding: 6px 18px;

	backdrop-filter: blur(27px);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background-color: rgba(30, 33, 36, 0.65);
	box-shadow:
					0 0 0 1px rgba(0, 0, 0, 0.40),
					0 0 4px 0 rgba(0, 0, 0, 0.30);
}

.money, .level, .prestige {
	align-items: center;
	font-size: 38px;
	font-family: 'Baloo 2';
	color: white;
	padding: 0 10px;
	display: flex;
	gap: 5px;
	
	.value {
		padding: 0;
		margin: 0;
	}

	.icon {
		color: darkseagreen;
		margin-right: -12px; // space offset
	}
}

.xp-bar {
	width: 100%;
	height: 8px;
	background-color: #2a2f40;
	border-radius: 4px;
	position: absolute;
	bottom: -15px; /* ou adapte selon ton layout */
	left: 0;
	right: 0;

	backdrop-filter: blur(27px);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	background-color: rgba(30, 33, 36, 0.65);
	box-shadow:
					0 0 0 1px rgba(0, 0, 0, 0.40),
					0 0 4px 0 rgba(0, 0, 0, 0.30);
}

.xp-bar .fill {
	border-radius: 8px;
	height: 100%;
	background: linear-gradient(to right, #00c6ff, #0072ff);
	transition: width 0.3s ease-in-out;
}