/* Typewriter effect styling */
.cursor-blink {
  animation: blink 0.8s infinite;
  font-weight: bold;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
} 