/* ============================================
   Typewriter Effect — Vanilla CSS Port
   Blinking cursor and typed-text styling
   ============================================ */

.typewriter-text {
  display: inline;
  white-space: pre-wrap;
}

.typewriter-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor {
    animation: none;
    opacity: 1;
  }
}
