:root { --main-color: #00ff88; --bg-dark: #0a0a0a; --panel-bg: #1a1a1a; }

body { background: var(--bg-dark); color: white; font-family: 'Ubuntu'; text-align: center; margin: 0; overflow-x: hidden; }

.stats-bar { 
    background: var(--panel-bg); padding: 15px; 
    border-bottom: 2px solid var(--main-color); 
    display: flex; justify-content: space-around; align-items: center; font-size: 0.85em;
}

.countdown-box { color: #888; font-family: monospace; font-size: 1.1em; }

.highlight { color: var(--main-color); font-weight: bold; }

#content { 
    padding: 40px 20px; 
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 70vh;
}

.box { 
    background: #151515; padding: 30px; border-radius: 12px; 
    border: 1px solid #333; width: 80%; max-width: 430px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.logo-header img { width: 50px; height: auto; }
.logo-header h2 { margin: 0; font-size: 1.5em; letter-spacing: 1px; }

input { 
    width: 100%; padding: 12px; margin: 10px 0; 
    background: #252525; border: 1px solid #444; 
    color: white; border-radius: 6px; box-sizing: border-box; font-size: 16px;
}

button { 
    width: 100%; padding: 14px; background: var(--main-color); 
    border: none; font-weight: bold; cursor: pointer; 
    border-radius: 6px; margin-top: 15px; color: #000;
    text-transform: uppercase; letter-spacing: 1px;
}

.toggle { margin-top: 25px; font-size: 0.85em; color: #888; cursor: pointer; text-decoration: underline; }

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

.mission-hud {
	background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
	padding: 10px 30px;
	border-bottom: 2px solid rgba(0, 255, 136, 0.3);
	box-shadow: 0 4px 15px rgba(0, 255, 136, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky; top: 0; z-index: 999;
}

/* Tipografía para números */
.data-led {
	font-family: 'Share Tech Mono', monospace;
	font-size: 1.3em;
	letter-spacing: -1px;
	text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.hud-block {
	display: flex;
	align-items: center;
	gap: 25px;
	flex: 1;
}

/* Ajustes de alineación */
.network-status { justify-content: flex-start; }
.chrono-center { justify-content: center; }
.tracer-assets { justify-content: flex-end; }

/* Ítems individuales */
.hud-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #888;
	transition: 0.3s;
}

.hud-icon {
	font-size: 1.3em;
}

/* Efecto hover para elementos interactivos personales */
.asset-redeemable, .asset-credits {
	cursor: pointer;
	border: 1px solid transparent;
	padding: 2px 8px;
	border-radius: 4px;
	color: white;
	background: rgba(0, 255, 136, 0.05);
	border-color: rgba(0, 255, 136, 0.3);
	box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.asset-redeemable:hover, .asset-credits:hover {
	color: white;
	background: green;
	border-color: white;
}

/* Estilo para el Chrono Central */
.chrono-box {
	text-align: center;
	position: relative;
	padding: 0 10px;
}

/* Pequeñas líneas angulares decorativas */
.chrono-box::before, .chrono-box::after {
	background: rgba(0, 255, 136, 0.05);
	padding: 5px 15px;
	border-radius: 4px;
	border: 1px solid rgba(0, 255, 136, 0.2);
	font-family: monospace;
	font-size: 1.1em;
	white-space: nowrap;
}

.hud-label {
	display: block;
	font-size: 0.6em;
	color: #555;
	letter-spacing: 2px;
	margin-bottom: -3px;
}

.chrono-value {
	font-size: 1.5em;
	color: var(--main-color);
}

.info-pago-login {
	background: rgba(26, 26, 26, 0.8); /* Fondo semi-transparente */
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(51, 51, 51, 0.5); /* Borde inicial sutil */
	margin-bottom: 30px; /* Separación de la caja de login */
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* Texto alineado a la izquierda */
	font-size: 0.9em;
	color: #bbb;
	position: relative;
	overflow: hidden;
	
	/* EFECTO NEÓN PARPADEANTE EN EL BORDE */
	animation: neon-scan 2s linear infinite;
}

/* Título de la sección */
.info-pago-login b {
	color: var(--main-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Texto destacado (Amazon 10€) */
.info-pago-login .highlight {
	color: white;
	font-weight: bold;
	text-shadow: 0 0 5px var(--main-color);
}

/* Línea de cierre (Access the Grid) */
.info-pago-login .access-line {
	display: block;
	margin-top: 15px;
	text-align: center;
	color: #666;
	font-family: monospace;
	font-size: 1em;
}

/* Animación del borde neón */
@keyframes neon-scan {
	0%, 100% {
		border-color: rgba(0, 255, 136, 0.2);
		box-shadow: 0 0 5px rgba(0, 255, 136, 0.1);
	}
	50% {
		border-color: rgba(0, 255, 136, 0.6);
		box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
	}
}

.payout-banner {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.85em;
    margin-bottom: 20px;
    color: #eee;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

/* Punto parpadeante "Live" */
.dot-live {
    height: 8px;
    width: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--main-color);
    animation: blink-live 1.5s infinite;
}

@keyframes blink-live {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Responsive para HUD */
@media (max-width: 850px) {
	.mission-hud { flex-direction: column; gap: 10px; }
	.hud-block { width: 100%; justify-content: center; gap: 15px; }
	.network-status { order: 1; }
	.tracer-assets { display:none; }
	.chrono-center { order: 3; position: fixed; bottom: 10px; background: rgba(0,0,0,0.8); padding: 10px; border-radius: 10px; width: auto; flex: none;}
}

@media (max-width: 600px) {
    .stats-bar { flex-direction: column; gap: 8px; padding: 10px; }
    .countdown-box { order: -1; margin-bottom: 5px; border-bottom: 1px solid #333; width: 100%; padding-bottom: 5px; }
}