
/* Diller Kategorileri - Şık Kart Tasarımı */
.diller-kart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.diller-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diller-kart:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}

.diller-kart::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.diller-kart:hover::after {
    opacity: 1;
}

.diller-icon {
    font-size: 2.4em;
    margin-bottom: 6px;
}

.diller-isim {
    font-weight: 600;
    font-size: 1em;
    text-align: center;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.diller-sayi {
    font-size: 0.85em;
    opacity: 0.9;
    margin-top: 4px;
}

/* Mobil uyum */
@media (max-width: 480px) {
    .diller-kart {
        width: 110px;
        height: 110px;
    }
    .diller-icon { font-size: 2em; }
    .diller-isim { font-size: 0.9em; }
}
        