    .hubs-header {
        text-align: center;
        padding: 80px 20px 60px;
        background: radial-gradient(circle at top, rgba(13, 110, 253, 0.15), transparent 60%);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        margin-bottom: 50px;
    }

    .hubs-header h1 {
        font-size: 3.5rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #fff;
        letter-spacing: 2px;
    }

    .hubs-header h1 span { color: var(--primary, #0d6efd); }
    .hubs-header p { color: #aaa; font-size: 1.2rem; max-width: 700px; margin: 0 auto; line-height: 1.6; }

    .hubs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        max-width: 1400px;
        margin: 0 auto 80px;
        padding: 0 20px;
    }

    .hub-card {
        background: rgba(16, 16, 20, 0.8);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .hub-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary, #0d6efd);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
    }

    .hub-card-img {
        height: 180px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .hub-card-img::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(16, 16, 20, 1), transparent);
    }

    .hub-status {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: bold;
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        backdrop-filter: blur(5px);
    }

    .status-active { background: rgba(0, 255, 136, 0.2); color: #00ff88; border: 1px solid #00ff88; }
    .status-recruiting { background: rgba(255, 193, 7, 0.2); color: #ffc107; border: 1px solid #ffc107; }
    .status-maintenance { background: rgba(255, 0, 92, 0.2); color: #ff005c; border: 1px solid #ff005c; }

    .hub-card-content {
        padding: 0 25px 25px;
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .hub-card-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        margin: -10px 0 10px 0;
    }

    .hub-card-desc {
        color: #999;
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0 0 20px 0;
        flex: 1;
    }

    .hub-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .hub-action {
        color: var(--primary, #0d6efd);
        font-weight: bold;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hub-card:hover .hub-action i {
        transform: translateX(-5px);
        transition: 0.3s;
    }
        /* === סגנונות חדשים לכפתורים ולחסימה בעמוד כל המתחמים === */
    .hub-card {
        position: relative; /* חובה כדי שהכפתורים הצפים יישארו בתוך הכרטיס */
    }
    
    .locked-card {
        cursor: not-allowed !important;
    }

    /* מחיל אפור והחשכה אך ורק על אזור התמונה */
    .locked-img {
        filter: grayscale(1) brightness(0.5);
        -webkit-filter: grayscale(1) brightness(0.5);
    }

    /* גלגל שיניים למנהלים */
    .admin-quick-edit-dir {
        position: absolute;
        top: 10px;
        left: 10px; /* בצד שמאל למעלה */
        z-index: 20;
        background: rgba(0, 0, 0, 0.8);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--primary);
        color: #fff;
        cursor: pointer;
        pointer-events: auto;
        transition: 0.2s;
    }
    .admin-quick-edit-dir:hover {
        background: var(--primary);
        color: #000;
        transform: rotate(45deg) scale(1.1);
    }

    /* כפתור דרוש מנהל */
    .manager-btn-dir {
        position: absolute;
        top: 15px; 
        right: 15px; /* בצד ימין למעלה */
        z-index: 20;
        background-color: var(--primary);
        color: #000 !important;
        font-size: 0.75rem;
        font-weight: 900;
        padding: 4px 12px;
        border-radius: 6px;
        text-transform: uppercase;
        cursor: pointer;
        pointer-events: auto;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        animation: pulseDir 2s infinite;
    }

    @keyframes pulseDir {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0.5); }
        50% { transform: scale(1.05); box-shadow: 0 0 15px var(--primary); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0.5); }
    }