/* ═══════════════════════════════════════════════════════════════
   login.css — Variables CSS mínimas para la pantalla de login.
   SOLO contiene las custom properties que login.html necesita.
   El styles.css completo se carga DESPUÉS del login con sesión.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --neon-green: #00ff88;
  --neon-blue: #00d4ff;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #606070;
  --border-color: #2a2a3a;
  --success: #00ff88;
  --danger: #ff3355;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* Reset mínimo para login */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════
   GEO-BLOCKED MODAL — Restricción de ubicación
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes geoCardIn { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes geoPulse { 0%,100% { box-shadow: 0 0 30px rgba(239,68,68,0.2); } 50% { box-shadow: 0 0 50px rgba(239,68,68,0.4); } }

.geo-blocked-card {
  position: relative;
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 20px;
  padding: 36px 28px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: geoCardIn 0.4s ease, geoPulse 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.geo-blocked-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(239,68,68,0.08), transparent 60%);
  pointer-events: none;
}

.geo-blocked-icon {
  margin-bottom: 16px;
}

.geo-blocked-title {
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  text-shadow: 0 0 20px rgba(239,68,68,0.3);
}

.geo-blocked-text {
  color: #a0a0b0;
  font-size: 0.9rem;
  margin: 0 0 20px;
  line-height: 1.5;
}

.geo-blocked-info {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
}

.geo-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.geo-info-row + .geo-info-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.geo-info-label {
  color: #a0a0b0;
  font-size: 0.82rem;
}

.geo-info-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.geo-info-danger {
  color: #ef4444;
  text-shadow: 0 0 8px rgba(239,68,68,0.4);
}

.geo-blocked-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(239,68,68,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.geo-blocked-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239,68,68,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.geo-blocked-btn:active {
  transform: translateY(0);
}
