body { 
    font-family: 'Vazirmatn', sans-serif; 
    background-color: #fdfbf7; 
    overflow-x: hidden; 
}

/* افکت لینک‌های نوبار */
.nav-link { 
    transition: all 0.3s; 
    position: relative; 
}
.nav-link.active::after {
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    right: 0;
    width: 100%; 
    height: 2px; 
    background: #10b981;
}

/* استایل کارت مقاله */
.article-card { 
    /* border-radius توسط Tailwind هندل می‌شود اما اینجا برای اطمینان می‌ماند */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.article-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.08); 
}