@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --neon-green: #10b981;
  --neon-green-glow: rgba(16, 185, 129, 0.45);
  --neon-red: #ef4444;
  --neon-red-glow: rgba(239, 68, 68, 0.35);
  --dark-bg: #070a0e;
  --card-bg: #0c1219;
  --card-border: #1a2736;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--dark-bg);
  color: #f3f4f6;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}

/* Bordes y Resplandores Neón */
.border-neon-green {
  border-color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25), inset 0 0 15px rgba(16, 185, 129, 0.05);
}

.border-neon-glow {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.glow-card-red {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(30, 15, 20, 0.8) 0%, rgba(18, 10, 14, 0.95) 100%);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.15);
}

.glow-card-green {
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: linear-gradient(180deg, rgba(10, 30, 22, 0.7) 0%, rgba(6, 20, 15, 0.95) 100%);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

/* Efectos de Pulso */
@keyframes pulse-subtle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

.animate-pulse-subtle {
  animation: pulse-subtle 3s infinite ease-in-out;
}

/* Estilo Toast */
#toast {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
