html, body { 
  height: 100dvh; 
  margin: 0; 
  background-color: #05070a; 
  color: #f3f4f6; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  text-align: justify; 
  text-justify: inter-word; 
}

.font-mono { font-family: 'JetBrains Mono', monospace; }
p, label, button, div { text-align: justify; }

.glass-panel { 
  background: rgba(10, 16, 26, 0.85); 
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px); 
  border: 1px solid rgba(0, 240, 118, 0.15); 
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05); 
}

.glow-emerald { box-shadow: 0 0 25px -5px rgba(0, 240, 118, 0.3); }
input { caret-color: #00f076; caret-shape: block; text-align: left; }

#alerta-rotacion { display: none; }
@media screen and (orientation: landscape) { 
  body.es-celular #app-content { display: none !important; } 
  body.es-celular #alerta-rotacion { display: flex !important; } 
}

@keyframes shake { 
  0%, 100% { transform: translateX(0); } 
  20%, 60% { transform: translateX(-8px); } 
  40%, 80% { transform: translateX(8px); } 
}
.anim-shake { animation: shake 0.3s ease-in-out; }

@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
.marquee-track { display: flex; width: max-content; animation: marquee 14s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }