  /* CSS ספציפי לעמוד מדריך */
    /* Hero Section */
    .guide-hero {
        position: relative;
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: flex-end;
        padding-bottom: 60px;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: var(--backimg-color);
        background-size: cover;
        background-position: top;
        filter: brightness(0.6);
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 1) -20%, rgba(255, 255, 255, 0) 100%, #0303ceff 100%);
        z-index: 1;
    }

    .hero-content-inner {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .guide-meta-badges {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    .badge {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(5px);
        padding: 5px 12px;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid rgba(255,255,255,0.1);
        color: white;
    }

    .badge-diff {
        border-color: var(--diff-color);
        color: var(--diff-color);
        background: rgba(0,0,0,0.6);
    }

    .guide-title-main {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: white;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

    .guide-info-bar {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 0.95rem;
        color: #ccc;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 20px;
        margin-top: 20px;
    }

    .author-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: black;
        overflow: hidden;
    }

    /* Layout */
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        position: relative;
        z-index: 5;
    }

    .guide-article {
        background: #16161d;
        padding: 40px;
        border-right: 2px solid var(--primary);
        position: relative;
    }
    
    .guide-article::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, transparent 50%, #0b0b0e 50%);
    }

    .guide-body-content {
        font-size: 1.1rem;
        line-height: 1.5;
        color: #e0e0e0;
    }
    .guide-body-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        color: #e0e0e0;
        margin: 0;
    }
    .guide-body-content ul {

        margin: 0;
    }
    .guide-body-content a {

       color: var(--primary);
    text-decoration: underline solid;
    }
    
    .guide-body-content img { max-width: 100%; height: auto; margin: 20px 0; border: 1px solid rgba(255,255,255,0.1); }
    .guide-body-content h2 { color: white; margin-top: 30px; border-bottom: 1px solid #333; padding-bottom: 10px; }

    /* ⭐ עיצוב קופסת העדכון החדשה ⭐ */
    .update-notice-box {
        background: rgba(var(--primary-rgb), 0.08); /* רקע שקוף עם גוון הראשי */
        border: 1px solid var(--primary);
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        position: relative;
    }

    .update-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
    }

    .update-title {
        color: var(--primary);
        font-weight: 800;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .update-date {
        font-size: 0.85rem;
        color: #aaa;
        background: rgba(0,0,0,0.3);
        padding: 2px 8px;
        border-radius: 4px;
    }

    .update-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .update-list li {
        position: relative;
        padding-right: 20px;
        margin-bottom: 8px;
        color: #fff;
    }

    .update-list li::before {
        content: "•";
        color: var(--primary);
        font-weight: bold;
        position: absolute;
        right: 0;
        font-size: 1.2rem;
        line-height: 1;
    }

    /* Sidebar */
    .sidebar-box {
        background: #16161d;
        padding: 25px;
        margin-bottom: 25px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .sidebar-title { color: white; font-weight: bold; margin-bottom: 15px; display: flex; gap: 10px; }
    .sidebar-title i { color: var(--primary); }
    
    .share-btn {
        display: block; width: 100%; padding: 10px; text-align: center;
        background: rgba(255,255,255,0.05); color: white; text-decoration: none;
        border: 1px solid rgba(255,255,255,0.1); transition: 0.2s; margin-bottom: 10px;
    }
    .share-btn:hover { background: var(--primary); color: black; border-color: var(--primary); }

    .tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-item { background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 20px; font-size: 0.85rem; color: #aaa; text-decoration: none; }
    .tag-item:hover { background: var(--primary); color: black; }

    /* Back Button */
    .back-to-hub-btn {
        position: absolute;
        top: 120px;
        right: 5%;
        z-index: 10;
        display: inline-flex; align-items: center; gap: 10px;
        padding: 10px 25px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }
    .back-to-hub-btn:hover {
        background: var(--primary); color: #000; border-color: var(--primary);
        transform: translateX(-5px);
    }
    
    @media (max-width: 768px) {
        .content-wrapper { grid-template-columns: 1fr; }
        .back-to-hub-btn { top: 80px; right: 20px; padding: 8px 15px; font-size: 0.8rem; }
    }
    .inline-credit {
    color: #888 !important; /* דורס את האפור של שאר הטקסט */
    font-size: 0.85rem !important; /* מקטין את הכתב */
    margin-top: -20px !important; /* 🌟 שואב את הטקסט למעלה אל התמונה! (מבטל את ה-25px של התמונה) */
    margin-bottom: 30px !important;
    font-style: italic !important;
    text-align: right !important; /* או left, תלוי איפה תרצה את זה */
}