@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.font-mono {
  font-family: 'Fira Code', monospace;
}

/* Typewriter cursor blink */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: #5E81AC; /* Nord blue cursor */
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

/* Subtle shadow for the floating nav and editor */
.soft-shadow {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
}

.dark .soft-shadow {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.4);
}
