body {
    font-family: 'Inter', sans-serif;
}

.hindi-text {
    font-family: 'Hind', sans-serif;
}

.typing-cursor {
    border-left: 2px solid #3b82f6;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.correct {
    color: #10b981;
}

.incorrect {
    color: #ef4444;
    text-decoration: underline;
}

.current {
    background-color: #dbeafe;
}

.typed {
    color: #6b7280;
}