/* Minimal custom CSS - Tailwind handles most styling */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Copy button animation */
.copy-btn.copied .copy-label {
    display: none;
}

/* Typewriter blinking cursor */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background-color: #6366f1;
    vertical-align: text-bottom;
    margin-left: 1px;
    animation: blink 0.7s step-end infinite;
}

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