  body {
            box-sizing: border-box;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');
        
        * {
             font-family: "IBM Plex Sans Arabic", sans-serif;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .text-shadow {
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .reading-progress {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.2);
            z-index: 1000;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        .article-content h2 {
            border-right: 4px solid #667eea;
            padding-right: 1rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        
        .article-content p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .article-content ul {
            margin-right: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .article-content li::before {
            content: "◀";
            color: #667eea;
            position: absolute;
            right: -1.5rem;
        }
        
        @media (max-width: 768px) {
            .article-content h2 {
                font-size: 1.5rem;
            }
            
            .article-content {
                padding: 1rem;
            }
        }
		.sadematn {
		font-size: 14px !important;
		}