        /* استدعاء جميع متغيرات الـ CSS من الموقع الرئيسي */
        :root {
            --primary-dark: #1a365d;
            --primary-medium: #2d5aa0;
            --primary-light: #4f83cc;
            --accent-gold: #e6af2e;
            --accent-dark-gold: #b8860b;
            --neutral-light: #f8fafc;
            --neutral-medium: #e2e8f0;
            --neutral-dark: #2d3748;
            --text-dark: #2d3748;
            --text-light: #f7fafc;
            --success: #48bb78;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', 'Tajawal', sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background: var(--neutral-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* الهيدر - نفس التصميم */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-medium));
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--primary-medium);
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, var(--success), #2ecc71);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-dark);
        }
        
        /* تصميم صفحة المشاركة */
        .post-hero {
            height: 60vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 80px;
            overflow: hidden;
        }
        
        .post-hero-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .post-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .post-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .post-date, .post-category, .post-reading-time {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .post-date i, .post-category i, .post-reading-time i {
            color: var(--accent-gold);
        }
        
        /* محتوى المشاركة */
        .post-content {
            max-width: 900px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .post-container {
            background: white;
            border-radius: 30px;
            padding: 60px;
            box-shadow: var(--shadow);
        }
        
        .post-intro {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 40px;
            padding: 25px;
            background: var(--neutral-light);
            border-radius: 15px;
            border-right: 4px solid var(--accent-gold);
            line-height: 1.8;
        }
        
        .post-body {
            line-height: 1.8;
            font-size: 1.1rem;
            color: var(--neutral-dark);
        }
        
        .post-body h2 {
            color: var(--primary-dark);
            font-size: 1.8rem;
            margin: 40px 0 25px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--neutral-medium);
            position: relative;
        }
        
        .post-body h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 100px;
            height: 2px;
            background: var(--accent-gold);
        }
        
        .post-body h3 {
            color: var(--primary-medium);
            font-size: 1.5rem;
            margin: 30px 0 20px 0;
        }
        
        .post-body p {
            margin-bottom: 25px;
            line-height: 1.8;
        }
        
        .post-body ul, .post-body ol {
            margin: 25px 0;
            padding-right: 30px;
        }
        
        .post-body li {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .post-body blockquote {
            border-right: 4px solid var(--accent-gold);
            background: var(--neutral-light);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--primary-dark);
        }
        
        .post-body img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }
        
        .post-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .post-body table th,
        .post-body table td {
            padding: 15px 20px;
            border: 1px solid var(--neutral-medium);
            text-align: right;
        }
        
        .post-body table th {
            background: var(--primary-light);
            color: white;
            font-weight: 600;
        }
        
        .post-tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .tip-card {
            background: var(--neutral-light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-right: 4px solid var(--accent-gold);
        }
        
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .tip-card h4 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .post-image {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        
        .post-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .image-caption {
            text-align: center;
            color: var(--neutral-dark);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        .post-cta {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
            padding: 50px;
            border-radius: 20px;
            text-align: center;
            margin: 60px 0;
        }
        
        .post-cta h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .post-cta p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-button {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-dark-gold));
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 40px 0;
        }
        
        .post-tag {
            background: var(--neutral-light);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--neutral-medium);
        }
        
        .post-tag:hover {
            background: var(--primary-medium);
            color: white;
            border-color: var(--primary-medium);
        }
        
        /* مشاركات ذات صلة */
        .related-posts {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            padding-bottom: 20px;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-medium));
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            border-radius: 3px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .related-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .related-image {
            height: 200px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .related-card:hover .related-image img {
            transform: scale(1.1);
        }
        
        .related-content {
            padding: 30px;
        }
        
        .related-date {
            color: var(--primary-medium);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .related-title {
            color: var(--primary-dark);
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .related-excerpt {
            color: var(--neutral-dark);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--accent-dark-gold);
            transform: translateX(5px);
        }
        
        /* الفوتر - نفس التصميم */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2e4d 100%);
            color: white;
            padding: 80px 5% 30px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
        }
        
        .footer-logo h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, white, var(--neutral-medium));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-logo p {
            opacity: 0.8;
            line-height: 1.6;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .footer-links h3::after,
        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent-gold);
            bottom: 0;
            right: 0;
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 0.8;
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            width: 20px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 70px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* التجاوب مع الجوال */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 15px 20px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .post-hero h1 {
                font-size: 2.2rem;
            }
            
            .post-container {
                padding: 30px 20px;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 15px;
            }
            
            .post-tips-grid {
                grid-template-columns: 1fr;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
