/* ============================================================
   İçerik koruma (caydırıcı) — metin seçimi, görsel sürükleme kapalı.
   NOT: Bu istemci tarafı bir caydırıcıdır; teknik bilgisi olan biri
   aşabilir. Form alanları (input/textarea) hariç tutulur ki iletişim
   formu sorunsuz çalışsın.
   ============================================================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Form alanlarında seçim/yapıştırma serbest kalsın */
input, textarea, select, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Görsellerin sürüklenip kaydedilmesini zorlaştır */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
}
