/* ====== 打字机光标效果 ====== */
#typing-title::after {
    content: '|';
    animation: cursorBlink 0.8s step-end infinite;
    color: #06b6d4;
    font-weight: 100;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* 暗色模式下光标颜色适配 */
[data-theme="dark"] #typing-title::after {
    color: #22d3ee;
}
