/* 打字效果樣式 */
.typing-effect-text {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 1px 1px 8px red, 0 0 15px rgba(255, 0, 0, 0.5);
    font-size: 1.6em;
    display: inline-block;
    min-height: 1.6em;
    line-height: 1.4;
}

.typing-cursor {
    animation: blink 0.7s infinite;
    font-weight: 900;
    color: #ffffff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}