   /* --- CSS כללי לעמוד --- */
    .forum-container-layout {
        max-width: 1400px; 
        margin: 30px auto; 
        padding: 0 20px;
        display: grid; 
        grid-template-columns: 1fr 300px; 
        gap: 30px;
    }

    /* --- Header --- */
    .forum-page-header {
        background: var(--bg-card, #14141a);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 25px 30px;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .forum-page-header::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, var(--primary), var(--secondary, #fff));
    }
    .header-content h1 { font-family: 'Rubik', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 5px; color: white; }
    .header-content p { color: #9494a0; font-size: 0.95rem; max-width: 700px; }

    /* --- Breadcrumb --- */
    .breadcrumb { font-size: 0.9rem; color: #9494a0; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; font-family: 'Heebo', sans-serif; }
    .breadcrumb a { color: #b0b0b9; text-decoration: none; transition: 0.2s; font-weight: 500; }
    .breadcrumb a:hover { color: var(--primary); }
    .breadcrumb .separator { font-size: 0.7rem; opacity: 0.5; color: #666; margin-top: 2px; }
    .breadcrumb .current { color: #fff; font-weight: 600; opacity: 0.9; }

    /* --- רשימת הפורומים --- */
    .topics-container { background: var(--bg-card, #14141a); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
    
    .topics-head {
        display: grid; grid-template-columns: 70px 1fr 100px 100px;
        padding: 15px 20px; background: rgba(255,255,255,0.02);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 0.85rem; color: #9494a0; font-weight: 600;
    }
    
    .topic-row {
        display: grid; grid-template-columns: 70px 1fr 100px 100px;
        padding: 25px 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
        align-items: center; transition: 0.2s; cursor: pointer; text-decoration: none;
    }
    .topic-row:last-child { border-bottom: none; }
    .topic-row:hover { background: rgba(255,255,255,0.05); }

    .topic-icon { font-size: 1.8rem; color: var(--primary); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); width: 50px; height: 50px; border-radius: 50%; }
    .topic-title { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 1.1rem; color: white; margin-bottom: 5px; display: block; }
    .topic-desc { font-size: 0.9rem; color: #9494a0; line-height: 1.4; }
    .topic-row:hover .topic-title { color: var(--primary); }
    
    .topic-stats { text-align: center; font-size: 0.9rem; }
    .stat-number { color: #fff; font-weight: 700; display: block; font-family: 'Rubik'; }
    .stat-label { font-size: 0.75rem; color: #9494a0; }

    /* --- סרגל צד ווידג'טים --- */
    .widget { background: var(--bg-card, #14141a); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 20px; margin-bottom: 20px; }
    .widget-title { font-family: 'Rubik'; font-weight: 700; margin-bottom: 15px; color: white; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
    .sidebar-btn { width: 100%; padding: 10px; border-radius: 6px; border: none; font-weight: bold; cursor: pointer; transition: 0.2s; }
    .discord-btn { background: #5865F2; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .discord-btn:hover { background: #4752c4; }

    /* --- וידג'ט פרומו מיוחד --- */
    .widget.promo-widget {
        background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
        border: none; position: relative; overflow: hidden; text-align: center; padding: 25px 20px; color: white;
        box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    }
    .promo-widget::before {
        content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
        animation: pulse 4s infinite;
    }
    .promo-icon { font-size: 2.5rem; margin-bottom: 15px; color: rgba(255,255,255,0.9); filter: drop-shadow(0 4px 5px rgba(0,0,0,0.3)); }
    .promo-title { font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; line-height: 1.2; }
    .promo-text { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 20px; line-height: 1.6; }
    
    .btn-promo {
        background: #fff; color: #FF005C; display: flex; align-items: center; justify-content: center; gap: 10px;
        width: 100%; padding: 12px; border-radius: 6px; font-weight: 800; text-decoration: none;
        transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.2); position: relative; z-index: 10;
        cursor: pointer; animation: nudge-left 2s infinite ease-in-out;
    }
    .btn-promo:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.4); background: #fff; }
    .btn-promo i { font-size: 1.1rem; transition: transform 0.3s; }
    .btn-promo:hover i { transform: translateX(-5px); }

    /* אנימציות */
    @keyframes nudge-left {
        0%, 10%, 15%, 100% { transform: translateX(0); }
        5% { transform: translateX(-6px); }
        12% { transform: translateX(-2px); }
    }
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 0.5; }
    }

    /* --- התאמה למובייל (נוסף כעת) --- */
    @media (max-width: 900px) {
        /* שינוי המבנה הראשי לטור אחד */
        .forum-container-layout { 
            grid-template-columns: 1fr; 
            margin-top: 20px; 
            padding: 0 10px;
            display: flex;
            flex-direction: column;
        }

        /* סרגל צד יורד למטה */
        .sidebar-col { order: 2; }

        /* Header הופך לטור */
        .forum-page-header { 
            flex-direction: column; 
            align-items: stretch;
            gap: 20px;
            text-align: center;
            padding: 20px;
        }
        
        /* הסתרת אייקון ענק ברקע של ההדר במובייל כדי לחסוך מקום */
        .forum-page-header > div:last-child { display: none; }
        
        .header-content p { margin: 0 auto; }

        /* הסתרת כותרות הטבלה */
        .topics-head { display: none; }

        /* עיצוב שורת פורום ככרטיס */
        .topic-row { 
            grid-template-columns: 50px 1fr; /* אייקון + תוכן */
            grid-template-rows: auto auto;
            gap: 5px 10px;
            padding: 15px;
        }

        /* הקטנת אייקון ומיקום */
        .topic-icon {
            grid-column: 1;
            grid-row: 1 / span 2;
            width: 40px; height: 40px;
            font-size: 1.4rem;
            margin-top: 5px;
        }

        /* תוכן ראשי */
        .topic-main {
            grid-column: 2;
            grid-row: 1;
        }

        /* הסתרת הסטטיסטיקה הישנה (עמודות נפרדות) */
        .topic-stats { display: none; }

        /* הצגת סטטיסטיקה למובייל */
        .mobile-stats-row {
            display: flex !important; /* דורס את ה-inline style */
            grid-column: 2;
            grid-row: 2;
            align-items: center;
            gap: 15px;
            font-size: 0.8rem;
            color: #9494a0;
            margin-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 8px;
        }
    }
   /* --- תוספת לנעילת שורות --- */
    .topic-row.is-locked {
        cursor: default;
        opacity: 0.6;
    }
    .topic-row.is-locked:hover {
        background: transparent;
    }

    /* עיצוב למנהלים הרואים פורום נעול */
    .topic-row.admin-locked-view {
        border-right: 3px solid #f39c12; /* פס כתום בצד */
        background: rgba(243, 156, 18, 0.05);
    }
    /* --- תוספת לפורומים מוסתרים (עבור מנהלים) --- */
    .topic-row.is-hidden-view {
        background: rgba(255, 69, 58, 0.05); /* רקע אדמדם עדין מאוד */
        border-right: 3px solid #ff453a;
        opacity: 0.8;
    }
    .topic-row.is-hidden-view:hover {
        background: rgba(255, 69, 58, 0.1);
    }
    .hidden-badge {
        font-size: 0.7rem;
        background: #ff453a;
        color: #fff;
        padding: 2px 6px;
        border-radius: 4px;
        margin-right: 5px;
        font-weight: bold;
        display: inline-block;
    }