/* Explain: Base reset and typography defaults. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
}

body {
    overflow-x: hidden;
    -webkit-user-select: none; /* منع تحديد النصوص */
    user-select: none;
    -webkit-touch-callout: none; /* منع ظهور قائمة الحفظ عند الضغط المطول في الجوال */
}

img {
    -webkit-user-drag: none; /* منع سحب الصور */
    pointer-events: none; /* منع التفاعل المباشر مع الصور (النقر المطول) */
}
