.profile-player-container {
	position: absolute;
	top: 20px;
	left: 32px;
	width: 210px;
	height: 110px;
}

.profile-scene-portrait {
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translate(-50%);
	height: 80px;
	width: 80px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	filter: drop-shadow(2px 2px 0 #000); 
}

.profile-scene-name {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translate(-50%);
	width: 160px;
	background: transparent;
	border: none;
	border-bottom: 3px solid var(--red);
	color: var(--white);
	font-family: inherit;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px black;
	outline: none;
	transition: border-color 0.2s;
}

.profile-scene-name:focus {
	border-bottom-color: #ebbe35; /* Amarillo record cuando editas */
}

.profile-scene-avatar-arrow-prev, 
.profile-scene-avatar-arrow-next {
	position: absolute;
	top: 15px;
	width: 30px;
	height: 65px;
	color: var(--white);
	text-shadow: 2px 2px 0px black;
	font-size: 24px;
	font-weight: bold;
	line-height: 65px;
	text-align: center;
	cursor: pointer;
	transition: 0.1s;
	user-select: none;
}

.profile-scene-avatar-arrow-prev { left: 10px; }
.profile-scene-avatar-arrow-next { right: 10px; }

.profile-scene-avatar-arrow-prev:hover, 
.profile-scene-avatar-arrow-next:hover {
	color: var(--red);
	transform: scale(1.1);
}

.profile-scene-avatar-arrow-prev:active, 
.profile-scene-avatar-arrow-next:active {
	transform: scale(0.9);
	filter: brightness(0.8);
}


.profile-scene-achievements-container {
	position: absolute;
	top: 18px;
	width: 400px;

	right: 38px;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 10px;
	filter: drop-shadow(3px 3px #222);
	outline: 1px solid black;
	background-color: #444;
}

.profile-scene-achievement {
	position: relative;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
}

.profile-stats-container {
	position: absolute;
	bottom: 15px;
	left: 20px;
	right: 20px;
	top: 140px;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	background-color: #2a2a2b; 
	border: 1px solid #000;
	box-shadow: 2px 2px 0px #222;
	padding: 4px;
}

.profile-stat {
	position: relative;
	width: 100%;
	height: 20px; 
	display: flex;
	align-items: center;
	margin-bottom: 1px;
	background-color: #3d3d3f; 
	border-bottom: 1px solid rgba(0, 0, 0, 0.3); 
	image-rendering: pixelated;
}

.profile-stat:nth-child(even) {
	background-color: #333335;
}

.profile-stat-label {
	width: 60%;
	font-size: 10px;
	color: #bbb; 
	text-transform: uppercase;
	padding-top: 3px;
	text-indent: 12px;
	text-shadow: 1px 1px 0px #000;
}

.profile-stat-value {
	width: 40%;
	text-align: right;
	padding-right: 12px;
	font-size: 10px;
	padding-top: 3px;
	color: var(--white);
	text-shadow: 1px 1px 0px #000;
}

.profile-stat:nth-last-child(-n+2) .profile-stat-value {
	color: #c88d30;
	cursor: pointer;
}

