/* إعدادات عامة */
html, body { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    transition: background-color 0.3s, color 0.3s; 
    
    /* إخفاء شريط التمرير لفايرفوكس وايدج */
    scrollbar-width: none !important; 
    -ms-overflow-style: none !important; 
    
    /* مهم جداً للآيفون عشان السكرول يفضل شغال وناعم */
    -webkit-overflow-scrolling: touch !important; 
}

/* الضربة القاضية لسفاري وكروم في الآيفون وكل التليفونات */
::-webkit-scrollbar, 
*::-webkit-scrollbar, 
html::-webkit-scrollbar, 
body::-webkit-scrollbar { 
    display: none !important; 
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
    -webkit-appearance: none !important;
}

/* النصوص المتدرجة */
.text-gradient { 
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* تأثير التوهج الخلفي */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s ease;
}

.dark .glow-bg { background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, rgba(6,9,19,0) 70%); }
.light .glow-bg { background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(255,255,255,0) 70%); }