/* Letter generator specific styles */
.letter-display {
    font-size: 5rem;
    font-weight: bold;
    color: #4f46e5;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 20px;
    margin: 1rem 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.alphabet-display {
    margin: 2rem 0;
}

.alphabet-section {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #4f46e5;
}

.alphabet-letters {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin: 0.5rem 0;
}

.alphabet-letters.special {
    color: #dc2626;
    font-weight: bold;
}

@media (max-width: 768px) {
    .letter-display {
        font-size: 4rem;
    }
}