.menu-scene-container {
	position: absolute;
	top: 20px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	overflow-y: auto;
	overflow-x: hidden;
	
	gap: 15px;
	padding: 12px;
}

.menu-scene-container::-webkit-scrollbar { 
	width: 14px; 
}

.menu-scene-container::-webkit-scrollbar-track { 
	outline: 1px solid black;
	background: #222; 
}

.menu-scene-container::-webkit-scrollbar-thumb { 
    background: #a33635; 
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2);
}

.menu-scene-container::-webkit-scrollbar-thumb:hover {
    background: var(--red); 
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.menu-scene-section {
	position: relative;
	width: 100%;
	background: #3d3d3f; 
	border: 1px solid #000;
	box-shadow: inset 0 2px 0 0 #5a5a5c, 
	            inset 0 -2px 0 0 #2a2a2b,
	            2px 2px 0 rgba(0,0,0,0.3);
	margin-bottom: 10px;
	box-sizing: border-box;
}

.menu-scene-section:nth-child(1) { height: 136px; }
.menu-scene-section:nth-child(2) { height: 252px; }
.menu-scene-section:nth-child(3) { height: 254px; }
.menu-scene-section:nth-child(4) { height: 422px; }
.menu-scene-section:nth-child(5) { height: 220px; }
.menu-scene-section:nth-child(6) { height: 7820px; }

.menu-scene-section-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 30px;

	background: #a33635;
	image-rendering: pixelated;

	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;

	line-height: 30px; 
	text-indent: 10px;

	text-shadow: 2px 2px 0 black;
	outline: 1px solid black;

	box-shadow: 
		inset 1px 1px 0 rgba(255, 255, 255, 0.3), 
		inset -1px -2px 0 rgba(0, 0, 0, 0.4);

	box-sizing: border-box;
}


.menu-scene-version {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 10px;
	color: var(--white);
	text-shadow: 1px 1px black;
}

.menu-scene-section-content {
	position: absolute;
	top: 40px;
	left: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.menu-scene-row {
	position: relative;
	width: 100%;
	height: 20px;
	font-size: 12px;
	line-height: 25px;
	display: flex;
	flex-wrap: wrap;
	filter: drop-shadow(1px 1px black);
}

.menu-scene-credit-row {
	position: relative;
	width: 100%;
	font-size: 12px;
	line-height: 25px;
	display: flex;
	flex-wrap: wrap;
	filter: drop-shadow(1px 1px black);
}

.menu-scene-label {
	position: relative;
	width: 55%;
	color: var(--white);
}

.menu-scene-arrow {
	position: relative;
	width: 5%;
	color: var(--white);
	cursor: pointer;
	transition: .1s;
	text-align: center;
}

.menu-scene-arrow:hover {
	color: var(--red);
}

.menu-scene-value {
	position: relative;
	width: 35%;
	text-align: center;
	color: #c88d30;
}

.menu-scene-value-credits {
	position: relative;
	width: 45%;
	text-align: right;
	color: #c88d30;
	text-transform: uppercase;
}

.menu-scene-credits-container {
	position: relative;
	width: 100%;
	padding-top: 10px;
}

.menu-scene-credits-title {
	color: #bf3e3e;
	padding-bottom: 12px;
	padding-top: 14px;
	font-size: 14px;
	font-weight: bold;
	filter: drop-shadow(1px 1px black);
	border-top: 2px dashed #bf3e3e;
	text-align: center;
}

.menu-credits-disclaimer {
	padding-top: 10px;
	text-align: justify;
	color: #888;
	font-size: 10px;
	line-height: 14px;
	text-shadow: 1px 1px black;
}

.menu-scene-import-data, .menu-scene-export-data, .menu-scene-delete-data, .menu-scene-copy-player-code {
	position: absolute;
	width: 45%;
	height: 30px;
	color: var(--white);
	text-shadow: 1px 1px 0px black;
	line-height: 30px; 
	text-align: center;
	cursor: pointer;
	transition: .2s;
	border-radius: 4px;
	outline: 1px solid black;
	font-size: 11px; 
	font-weight: bold;
	text-transform: uppercase;
	
	box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.2), 
	            inset -2px -2px 0 rgba(0, 0, 0, 0.2);
	
	background-image: url("../assets/images/textures/texture3.png");
}

.menu-scene-import-data {
	top: 64px;
	left: 20px;
	background-color: #2d70e3; 
} 

.menu-scene-export-data {
	top: 64px;
	right: 20px;
	background-color: #70ac4c; 
}

.menu-scene-export-data.disabled {
	filter: grayscale(1) opacity(0.5);
	cursor: not-allowed;
	pointer-events: none;
}

.menu-scene-delete-data {
	top: 106px;
	left: 20px;
	background-color: #c33e3e; 
}

.menu-scene-copy-player-code {
	top: 106px;
	right: 20px;
	background-color: #cd902f;
}

.menu-scene-import-data:hover, .menu-scene-export-data:hover, .menu-scene-delete-data:hover, .menu-scene-copy-player-code:hover {
	filter: brightness(1.1);
}

.menu-scene-import-data:active, .menu-scene-export-data:active, .menu-scene-delete-data:active, .menu-scene-copy-player-code:active {
	box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.4);
	transform: translateY(1px);
}

.menu-scene-redeem-row-data {
	position: absolute;
	top: 15px;
	left: 20px;
	right: 20px;
	height: 30px;
}

.menu-scene-redeem-input-data {
	position: absolute;
	left: 0;
	width: 70%;
	height: 30px;
	padding: 0 8px;
	font-size: 12px;
	line-height: 32px;
	text-align: left;
	text-transform: uppercase;
	color: var(--white);
	text-shadow: 1px 1px black;
	background: url("../assets/images/textures/texture3.png"), linear-gradient(30deg, rgba(67, 67, 69, 1) 0%, rgba(48, 48, 51, 1) 100%);
	border-radius: 4px 0 0 4px;
	border: none;
	outline: 1px solid black;
}

.menu-scene-redeem-submit-data {
	position: absolute;
	right: 0;
	top: 0;
	width: 30%;
	min-width: 30%;
	height: 30px;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 30px;
	color: var(--white);
	text-shadow: 1px 1px 0px black;
	
	/* Color lila basado en tu ui-wave-selector (púrpura técnico) */
	background: url("../assets/images/textures/texture3.png"), 
	            linear-gradient(39deg, rgba(142, 68, 173, 1) 0%, rgba(108, 52, 131, 1) 100%);
	
	/* Relieve consistente con tu sistema de botones */
	box-shadow: inset 2px 2px 0 rgba(187, 143, 206, 0.4), 
	            inset -2px -2px 0 rgba(0, 0, 0, 0.3);
	
	border-radius: 0 4px 4px 0;
	border: none;
	outline: 1px solid black;
	margin-left: -1px;
	cursor: pointer;
	transition: .2s;
}

.menu-scene-redeem-submit-data:hover {
	filter: brightness(1.2); /* Un poco más de brillo para el lila */
}

.menu-scene-redeem-submit-data:active {
	box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.5);
	padding-top: 2px;
}

.menu-scene-redeem-feedback {
	position: absolute;
	top: 49px;
	left: 20px;
	right: 20px;
	height: 12px;
	text-align: center;
	font-size: 9px;
	line-height: 12px;
	filter: drop-shadow(1px 1px black);
}


.delete-scene-yes-button, .delete-scene-no-button {	
	position: absolute;
	bottom: 15px;
	width: 170px;
	height: 24px;
	text-align: center;
	line-height: 26px;
	background: url("../assets/images/textures/texture3.png"), linear-gradient(39deg,rgba(163, 54, 53, 1) 0%, rgba(133, 60, 58, 1) 100%);
	color: var(--white);
	text-shadow: 1px 1px 1px black;
	border-radius: 4px;
	border: 1px solid black;
	font-size: 12px;
	cursor: pointer;
	transition: .2s;
}

.delete-scene-yes-button {
	left: 20px;
}

.delete-scene-no-button {
	right: 20px;
}

.delete-scene-yes-button:hover, .delete-scene-no-button:hover, .import-scene-button:hover, .export-scene-button:hover {
	filter: brightness(1.2);
}

.import-scene-button {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translate(-50%);
	width: 320px;
	height: 24px;
	text-align: center;
	line-height: 26px;
	background: url("../assets/images/textures/texture3.png"), linear-gradient(39deg,rgba(163, 54, 53, 1) 0%, rgba(133, 60, 58, 1) 100%);
	color: var(--white);
	text-shadow: 1px 1px 1px black;
	border-radius: 4px;
	border: 1px solid black;
	font-size: 12px;
	cursor: pointer;
	transition: .2s;
}

.export-scene-button {
	position: absolute;
	bottom: 15px;

	width: 180px;
	height: 24px;
	text-align: center;
	line-height: 26px;
	background: url("../assets/images/textures/texture3.png"), linear-gradient(39deg,rgba(163, 54, 53, 1) 0%, rgba(133, 60, 58, 1) 100%);
	color: var(--white);
	text-shadow: 1px 1px 1px black;
	border-radius: 4px;
	border: 1px solid black;
	font-size: 12px;
	cursor: pointer;
	transition: .2s;
}

.export-scene-button:nth-child(odd) {
	left: 40px;
}

.export-scene-button:nth-child(even) {
	right: 40px;
}

.import-export-code {
	position: absolute;
	bottom: 60px;
	width: 400px;
	left: 50%;
	transform: translate(-50%);
	padding: 10px;
	font-size: 10px;
	color: var(--white);
	text-align: center;
	text-transform: uppercase;
	padding-bottom: 2px;
	border-bottom: 3px solid var(--red);
}

.import-scene-message, .export-scene-message {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 90px;
	font-size: 10px;
}

.export-scene-message {
	color: var(--red);
}

.import-scene-message {
	color: var(--green);
}
