/* استخدام خط Tajawal النظيف والعصري (أقرب شيء لتصميم Elyvate) */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #050505;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
}

/* تأثير الزجاج للنافبار */
.glass-nav {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* تأثير الزجاج للبطاقات */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

/* إعدادات الأنيميشن السلس */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

::selection {
    background: #4a4a4a;
    color: #ffffff;
}