/* Hero Typing Animation Styles */
.typing-text {
    display: inline-block;
    min-width: 10px;
}

.typing-text::first-letter {
    color: #E62020;
    /* Sadece ilk harf kırmızı */
}

/* "DAG" Modu */
.typing-text.dag-final {
    color: #E62020;
    text-shadow: 0 0 20px rgba(230, 32, 32, 0.4);
    animation: dagPulse 2s infinite;
}

.typing-text.dag-final::first-letter {
    color: #E62020;
    /* Rengi koru */
}

@keyframes dagPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.9;
        text-shadow: 0 0 30px rgba(230, 32, 32, 0.6);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* İmleç efekti */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #333;
    margin-left: 2px;
}

.typing-text.dag-final::after {
    display: none;
    /* DAG yazınca imleci gizle */
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}