/* --- AKADEMİK İSLAM PLATFORMU: SÖZLÜK BÖLÜMÜ --- */

        /* --- SÖZLÜK ÖZEL TASARIMI --- */
        :root { --ana: #1a237e; --altin: #b8860b; --arka: #fdfdfd; }
        
        .sozluk-main { padding: 40px 20px; max-width: 1200px; margin: 0 auto; font-family: 'Montserrat', sans-serif; }
        
        .arama-paneli {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            margin-bottom: 40px;
            border-top: 4px double var(--altin);
        }

        #sozlukAra {
            width: 100%;
            max-width: 600px;
            padding: 18px 30px;
            border: 2px solid #eee;
            border-radius: 50px;
            font-size: 18px;
            outline: none;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        #sozlukAra:focus { border-color: var(--ana); box-shadow: 0 8px 25px rgba(26,35,126,0.1); }

        .fihrist-kapsayici {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 30px;
        }

        .harf-btn {
            padding: 10px 18px;
            border: 1px solid #ddd;
            background: white;
            color: var(--ana);
            font-weight: 700;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s;
        }

        .harf-btn:hover, .harf-btn.aktif { background: var(--ana); color: white; border-color: var(--ana); transform: translateY(-3px); }

        /* Kart Yapısı */
        #listeAlani {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }

        .terim-karti {
            background: white;
            border: 1px solid #eee;
            border-radius: 15px;
            padding: 25px;
            position: relative;
            transition: 0.4s;
            box-shadow: 5px 5px 0px #f0f0f0;
        }

        .terim-karti:hover { border-color: var(--altin); transform: translateY(-8px); box-shadow: 10px 10px 0px #f9f4e8; }
        .kart-ust { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; border-bottom: 1px solid #f5f5f5; padding-bottom: 10px; }
        .kategori-label { font-size: 10px; padding: 4px 10px; border-radius: 5px; color: white; font-weight: 800; text-transform: uppercase; }
        .arapca { font-family: 'Amiri', serif; font-size: 28px; color: var(--ana); font-weight: bold; }
        .baslik { font-size: 22px; color: #333; margin: 10px 0; font-weight: 800; }
        .icerik-kutu { background: #fcfcfc; padding: 12px; border-radius: 8px; margin-top: 10px; border-left: 3px solid #eee; }
        .etiket { font-size: 11px; font-weight: 800; color: var(--altin); text-transform: uppercase; display: block; margin-bottom: 3px; }

        .kopya-btn {
            width: 100%;
            margin-top: 20px;
            padding: 12px;
            background: var(--ana);
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 700;
            transition: 0.3s;
        }

        .kopya-btn:hover { background: #0d1b60; box-shadow: 0 5px 15px rgba(26,35,126,0.3); }
        #bulunamadi { text-align: center; padding: 50px; grid-column: 1/-1; display: none; font-weight: bold; color: #bbb; }
