 
.single-post-page {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.cyber-single-article {
    background: var(--card-bg);
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
 
.cyber-single-article::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.article-header {
    margin-bottom: 40px;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 87, 34, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.15);
}

.article-title {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 25px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    color: #a0aec0;
    font-size: 0.95rem;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    color: var(--accent-orange);
    margin-left: 8px;  
    font-size: 1.1rem;
}

.article-featured-image {
    margin-bottom: 40px;
}

.article-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
 
.wp-content-area {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 2;
}

.wp-content-area h2, 
.wp-content-area h3 {
    color: var(--pure-white);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 10px;
}

.wp-content-area a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: 0.3s;
}

.wp-content-area a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 87, 34, 0.4);
}
 
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.article-navigation div {
    margin-bottom: 15px;
}

.article-navigation a {
    display: inline-flex;
    align-items: center;
    color: var(--pure-white);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.article-navigation a i {
    color: var(--accent-orange);
    margin: 0 10px;
}

.article-navigation a:hover {
    background: rgba(255, 87, 34, 0.1);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

/* تجاوب صفحة المقال مع الموبايل */
@media (max-width: 768px) {
    .cyber-single-article {
        padding: 30px 20px;
    }
    .article-title {
        font-size: 1.8rem;
    }
    .article-meta {
        gap: 15px;
    }
    .article-navigation {
        flex-direction: column;
        text-align: center;
    }
    .article-navigation a {
        width: 100%;
        justify-content: center;
    }
}